Upgrade to Android jb4.3_1.1.0 GA bootloader

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Upgrade to Android jb4.3_1.1.0 GA bootloader

Jump to solution
791 Views
freewaymad
Contributor IV

Does anyone know how to upgrade the from the ICS bootloader to the JB bootloader? The documentation with the release is unclear on this. JB 4.3 will not run without upgrading the bootloader. Would I, for instance, be able to copy the u-boot.bin to the sdcard and run the following commands in an ADB shell?

su
[now the prompt will change from "$" to "#"]
cat
/sdcard/u-boot.bin > /dev/block/mmcblk0p0
sync
; sync; sync


Please help.

Thanks :smileyconfused:

Labels (3)
1 Solution
579 Views
freewaymad
Contributor IV

HI,

Thanks for the help. You're right. I found for the 1k padding to use:

# sudo dd if=u-boot.bin of=/dev/sdx bs=1K skip=1 seek=1; sync

Or if you're using no padding u-boot image:

# sudo dd if=u-boot-no-padding.bin of=/dev/sdx bs=1K seek=1; sync

Thanks again :smileyhappy:

View solution in original post

0 Kudos
2 Replies
579 Views
justin_jiang
NXP Employee
NXP Employee

I think you can't do that. The u-boot.bin is not store in the P0 parition.

U-boot is in the header of SD card of 1K size offset without partition.

You can try dd command to download the u-boot to your sd card. Make sure your SD card reserved some space at the header.

sudo dd if=u-boot.bin of=/dev/sdx bs=512 skip=2 seek=2 && sync && sync

580 Views
freewaymad
Contributor IV

HI,

Thanks for the help. You're right. I found for the 1k padding to use:

# sudo dd if=u-boot.bin of=/dev/sdx bs=1K skip=1 seek=1; sync

Or if you're using no padding u-boot image:

# sudo dd if=u-boot-no-padding.bin of=/dev/sdx bs=1K seek=1; sync

Thanks again :smileyhappy:

0 Kudos