cLK/readme_boot.img.txt
Arif Ali cb8df35955 1.3.1: updated
* sharp display fix
* added patches
2011-11-07 00:01:51 +00:00

10 lines
483 B
Plaintext

#compile kernel and make boot.img/recovery.img
#make ARCH=arm CROSS_COMPILE=arm-none-eabi-
mkbootimg --kernel zImage --ramdisk initrd.gz --cmdline "" --base 0x11800000 -o android_boot.img
mkbootimg --base 0x11800000 --cmdline "no_console_suspend=0" --kernel zImage --ramdisk initrd.gz -o android_boot.img
#create initrd.gz
find . | cpio -o -H newc | gzip > ../initrd.gz
#flash boot img from zImage and initrd.gz
fastboot -c "" -b 0x11800000 flash:raw boot zImage initrd.gz