Quote:
Originally Posted by [ACL]
Cant boot. Moving the imgfs to tinboot put a size restriction on us. Vogue had the same issue so they had to implement lzma compression on the kernel (which we dont have). I can port it over tonight, for now i just need to know if we can shrink down the initrd.gz to around 1.1mb. Harder than i thought. I erased the sbin , modem stuff and logo and still to big. May need to wipe a few symlinks too?
This line is the one causing issues when trying to make the xip with the gz file.
.org XIP_END-0x20000,0xff
The only good news here is that i didnt brick myself with the partition table.
|
About the symlinks did you see my post above? Not sure we are packing the lmza file correctly... Look at the Vogue's structure. But I'm not sure what we could be doing different?? If you get a min, try to just add the Vogue's lmza and see if that boots, we should have that already.
Quote:
Originally Posted by [ACL]
This is what im using
Code:
cp $DIRECTORY/tools/rhod_payload os.nb.payload
echo Inserting tinboot into payload
cat xip/$1 >> os.nb.payload
echo Creating os.nb portion of nbh
tools/nbmerge < os.nb.payload > OS-new.nb
echo Creating NBH
wine tools/yang.exe -F ruu_signed.NBH -f OS-new.nb -t 0x400 -s 64 -d RHOD****0 -c 11111111 -v Tinboot -l WWE >> $DIRECTORY/tools/log
rm os.nb.payload
rm OS-new.nb
in tinboot change these lines
-.equ XIP_END, 0x0100000
+.equ XIP_END, 0x2ff000
and add to the bottom (i think you alreayd had that)
+ .org XIP_END-0x20000,0xff
+ .incbin "tools/emptyimgfs"
|
Thanks I will give it a try in a bit... Need to get to work for a bit.