Open GoogleCodeExporter opened 8 years ago
uimage-extract not only unpacks the sections within a uImage multi-image, it
then unpacks those uImages, so I hadn't realized that they were packed as such.
To create a moboot:
mkimage -A arm -T kernel -C none -d kernel.img uImage
mkimage -A arm -T ramdisk -C none -d ramdisk.img ramdisk
mkimage -A arm -T multi -C none -n test-multi-image -d uImage:ramdisk
uImage.rebuilt
I am now able to boot with a kernel built from source.
It would be nice to have this information in the README and the google code
page wiki.
Original comment by k...@bijna.net
on 3 Nov 2011 at 7:42
Hi,
I have problem with boot custom kernel. How to fix it? I've followed
instruction to using mkimage.
Original comment by G.Veniamin
on 9 Nov 2011 at 10:03
Attachments:
I have the same issue. I create an uImage using the exact same CM7 files that
were extracted, and no luck, it doesn't boot.
So this is the same kernel and the same ramdisk.
I get past this screen, but i get a blank screen...
Original comment by jeanfran...@gmail.com
on 9 Nov 2011 at 11:37
I got Cyanogenmod's kernel + ramdisk to boot using the following :
# mkimage -A arm -O linux -T kernel -C none -a 0x40208000 -e 0x40208000 -n
"Kernel" -d kernel.img uImage
# mkimage -A arm -O linux -T ramdisk -C none -a 0x60000000 -e 0x60000000 -n
"Image" -d ramdisk.img uRamdisk
#mkimage -A arm -O linux -T multi -a 0x40208000 -e 0x40208000 -C none -n
"multi image" -d uImage:uRamdisk uImage.CyanogenMod.new
Parts of the information was taken on
http://forum.xda-developers.com/showthread.php?p=19080005
Original comment by jeanfran...@gmail.com
on 11 Nov 2011 at 3:13
To build the non-CM kernel I had to enable everything under Drivers -> Staging
-> Android and then also disable V4L under Drivers -> Multimedia. Otherwise,
the procedure was the same. I'm using the non-CM kernel because ar6000.ko was
causing kernel panics when using WPA with the CM kernel.
Original comment by crimsonr...@gmail.com
on 28 Nov 2011 at 10:16
Original issue reported on code.google.com by
k...@bijna.net
on 3 Nov 2011 at 3:50