|
||||
Re: How To Compile Your Own Kernels, Modules, Tinboot (NAND boot), and More for Begin
Quote:
Edit: OK, pretty sure I found the issue with the XIP part. Once you get wine installed, I think you'll be all set Last edited by natemcnutty; 10-29-2010 at 02:26 AM. |
This post has been thanked 1 times. |
|
||||
Re: How To Compile Your Own Kernels, Modules, Tinboot (NAND boot), and More for Begin
Quote:
one thing not in the instructions that is needed is a: mkdir /home/edouble/android/output/sdcard also as natemcnutty said, you still need to install wine =D |
|
||||
Re: How To Compile Your Own Kernels, Modules, Tinboot (NAND boot), and More for Begin
Quote:
Then the code will work great! Thanks again! Code:
if [ ! -d "$TINBOOT/xip" ] ; then mkdir $TINBOOT/xip fi if [ ! -d "$OUTPUT_PATH" ] ; then mkdir $OUTPUT_PATH mkdir $OUTPUT_PATH/sdcard fi
__________________
|
|
||||
Re: How To Compile Your Own Kernels, Modules, Tinboot (NAND boot), and More for Begin
OK, installed wine and added the extra folders. I did start over to make sure everything was done correctly. I get to the end as before but this time I get:
Outputting files to /home/edouble/android/output/sdcard Start compiling tinboot/xip for rhod210..... mv: cannot move `tinbootxip' to `xip/rhod210': No such file or directory Inserting tinboot into payload mv: cannot stat `os.nb.payload.NEW': No such file or directory Inserting blank imgfs into payload Creating os.nb portion of nbh Creating NBH updating: output/ (stored 0%) updating: output/sdcard/ (stored 0%) updating: output/sdcard/modules-2.6.27.46-01204-ga0bebc2.tar.gz (deflated 1%) updating: output/ruu_signed.NBH (deflated 11%) The compiler stops there and then gives me the command prompt. I really feel like a noob but I really want to try this out. What am I missing? |
|
||||
Re: How To Compile Your Own Kernels, Modules, Tinboot (NAND boot), and More for Begin
Quote:
Edit: Try finding this part of the code in the script: Code:
$TOOLCHAIN_PATH-objcopy tinboot.o -O binary tinbootxip mv tinbootxip xip/$1 Code:
$TOOLCHAIN_PATH-objcopy tinboot.o -O binary tinbootxip mkdir xip/$1 mv tinbootxip xip/$1 Code:
mv: cannot move `tinbootxip' to `xip/rhod210': No such file or directory Code:
mv: cannot stat `os.nb.payload.NEW': No such file or directory Last edited by pts69666; 10-29-2010 at 01:05 PM. |
|
||||
Re: How To Compile Your Own Kernels, Modules, Tinboot (NAND boot), and More for Begin
ahh man .. hope you dont brick yourself . i corrupted my phone already once and wozzer ended up needing a new phone. Just gotta be careful.
__________________
|
|
||||
Re: How To Compile Your Own Kernels, Modules, Tinboot (NAND boot), and More for Begin
Quote:
|
|
||||
Re: How To Compile Your Own Kernels, Modules, Tinboot (NAND boot), and More for Begin
Quote:
if [ ! -d "$TINBOOT/xip" ] ; then mkdir xip fi instead of if [ ! -d "$TINBOOT/xip" ] ; then mkdir $TINBOOT/xip fi That should be fixed now. Also, I missed the fact that the buildxip.sh script in tinboot actually has if -a instead of if -d which will fail the build as well Last edited by natemcnutty; 10-29-2010 at 04:32 PM. |
This post has been thanked 1 times. |
|
||||
Re: How To Compile Your Own Kernels, Modules, Tinboot (NAND boot), and More for Begin
OK, if you could, please try creating a new fullbuild.sh based on the updates I just made. I made sure that all pathing is correct regardless of where you launch the script from, and as long as you specify the locations of your sources in the beginning, it will work perfectly.
I tested moving my sources around, tested the new script, and compiling was still successful |
This post has been thanked 1 times. |
|
|
|