[Developers] Can not create working Boot.img

the|gamer

Senior Member
Sep 27, 2009
264
261
0
Rhineland-Palatinate
Hello,

As I am new to Android Developing I hope you can help me :)

I dont know what I am doing wrong...


When I flash the attached Boot.img to my Device via fastboot I stuck at Splash...

extracted everything with split_bootimage.pl and "gzip -dc ../boot.img-ramdisk.gz | cpio -i"

And everything looks just fine!...

Only diffrence between mine boot.img and the one from Trip is default.prop and sbin folder is missing following files

"acp_recvy" and "miniunz"

I guess that is my error but why is the compiler not including them?

edit:

did a repack with including them... did not work!

http://www.mediafire.com/?c08d4yrb7ic32p2

Regards,
theGamer
 
Last edited:

TripNRaVeR

Senior Member
Jun 25, 2010
2,913
12,625
0
Maasbracht
  • Like
Reactions: the|gamer

krarvind

Senior Member
Jun 15, 2011
5,916
13,161
0
Saint John, NB
Hi,
that seems legit :cool: But why does the compiler does not do that?

When I make an otapackage he should do that right?

So I have to create the boot.img my self? :(
it should. Meld with tbalden device tree. Mine compiles fine ever since. Something in the init.end.comm.rc it was i think

Sent from my Galaxy Nexus using Tapatalk 2
 

tombriden

Inactive Recognized Developer
Mar 4, 2010
237
332
93
Leighton Buzzard
So the issue with the boot.img when using Trips device tree is because the device/htc/endeavoru/BoardConfig.mk file needs the following changing from

Code:
BOARD_KERNEL_CMDLINE := tegraid=30.1.3.0.0 [email protected] vmalloc=668M video=tegrafb
BOARD_KERNEL_BASE := 0x10000000
BOARD_KERNEL_PAGESIZE := 4096
to

Code:
#BOARD_KERNEL_CMDLINE := tegraid=30.1.3.0.0 [email protected] vmalloc=668M video=tegrafb
BOARD_KERNEL_BASE := 0x10000000
BOARD_KERNEL_PAGESIZE := 2048
Just built with these and all works fine :)