diff options
Diffstat (limited to 'recipes/linux/linux-leviathan_git.bb')
-rw-r--r-- | recipes/linux/linux-leviathan_git.bb | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/recipes/linux/linux-leviathan_git.bb b/recipes/linux/linux-leviathan_git.bb index 8ea4bfbb7b..a14fb21092 100644 --- a/recipes/linux/linux-leviathan_git.bb +++ b/recipes/linux/linux-leviathan_git.bb @@ -1,10 +1,10 @@ require linux.inc +DEPENDS = "android-image-utils-native" PV = "2.6.32+${PR}+gitr${SRCREV}" -PR = "r0" +PR = "r1" COMPATIBLE_MACHINE = "htcdream" -# CMDLINE is irrelevant on this hardware as we need a special userland tool to cook the image CMDLINE = "console=tty0 no_console_suspend=1 root=/dev/mmcblk0p1 rootdelay=8 fbcon=rotate:1 panic=30 mem=110M" SRCREV_LAST_GOOD = "deabc32225429b3c0db44f7e62d95d0d2525290b" @@ -15,3 +15,11 @@ SRC_URI = "\ file://defconfig \ " S = "${WORKDIR}/git" + +do_deploy_append() { + touch -f empty + mkbootimg --kernel ${DEPLOY_DIR_IMAGE}/${KERNEL_IMAGE_BASE_NAME}.bin \ + --ramdisk empty \ + --cmdline '"${CMDLINE}"' \ + --output ${DEPLOY_DIR_IMAGE}/${KERNEL_IMAGE_BASE_NAME}.fastboot +} |