Skip to content

Commit

Permalink
Update the ramdisk address because the -O3 kernels are too big
Browse files Browse the repository at this point in the history
  • Loading branch information
crpalmer committed Sep 8, 2013
1 parent d317553 commit 1e60f88
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions updater-script
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ ifelse(
set_perm(0, 0, 0777, "/tmp/abootimg");
ui_print("Extracting existing boot.img...");
run_program("/tmp/dd", "if=/dev/block/mmcblk0p19", "of=/tmp/boot.img");;
ui_print("Replacing kernel in boot.img...");
run_program("/tmp/abootimg", "-u", "/tmp/boot.img", "-k", "/tmp/zImage");
ui_print("Replacing kernel in boot.img and setting ramdisk addr...");
run_program("/tmp/abootimg", "-u", "/tmp/boot.img", "-c", "ramdiskaddr=0x82000000", "-k", "/tmp/zImage");
));

ui_print("Flashing boot.img");
Expand Down

0 comments on commit 1e60f88

Please sign in to comment.