Quote:
Originally Posted by Lmiller1708
Didn't get mine to flash correctly...
Here was how I made it.
Code:
cat xip/$1 >> os.nb.payload
echo "Inserting blank imgfs into payload"
OS-new.nb.payload >> tools/log
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 >> tools/log
Ideas?
|
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"