From: Denis 'GNUtoo' Carikli Date: Wed, 9 Jun 2010 14:38:42 +0000 (+0200) Subject: linux-leviathan: permit booting directly with fastboot X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3e7f28bd305aeccc1022ecfb63d3f9bb25680067;p=openembedded.git linux-leviathan: permit booting directly with fastboot if we don't gzip the empty ramdisk,the bootloader will refuse to boot our kenrnel when in fastboot mode and will display this message: booting... FAILED (remote: reproduce boot image with on-flash ramdisk error) --- diff --git a/recipes/linux/linux-leviathan_git.bb b/recipes/linux/linux-leviathan_git.bb index 7ee49a6b56..bc8a477410 100644 --- a/recipes/linux/linux-leviathan_git.bb +++ b/recipes/linux/linux-leviathan_git.bb @@ -2,7 +2,7 @@ require linux.inc DEPENDS += "android-image-utils-native" PV = "2.6.32+${PR}+gitr${SRCREV}" -PR = "r17" +PR = "r18" COMPATIBLE_MACHINE = "htcdream" CMDLINE = "console=tty1 root=/dev/mmcblk0p1 rootdelay=8 fbcon=rotate:1 panic=30 mem=110M" @@ -18,8 +18,9 @@ S = "${WORKDIR}/git" do_deploy_append() { touch -f empty + gzip empty mkbootimg --kernel ${DEPLOY_DIR_IMAGE}/${KERNEL_IMAGE_BASE_NAME}.bin \ - --ramdisk empty \ + --ramdisk empty.gz \ --cmdline "${CMDLINE}" \ --output ${DEPLOY_DIR_IMAGE}/${KERNEL_IMAGE_BASE_NAME}.fastboot }