From: Koen Kooi Date: Wed, 13 Jun 2007 09:40:53 +0000 (+0000) Subject: linux 2.6.20, 2.6.21, 2.6.21+2.6.22-rc1: fix install for uImage X-Git-Tag: Release-2010-05/1~8868^2~393^2~3^2~2 X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=23c20b0182b031338d5e89b226ebb1ae869f432a;p=openembedded.git linux 2.6.20, 2.6.21, 2.6.21+2.6.22-rc1: fix install for uImage --- diff --git a/packages/linux/linux_2.6.20.bb b/packages/linux/linux_2.6.20.bb index 91388a2f95..76a90006d0 100644 --- a/packages/linux/linux_2.6.20.bb +++ b/packages/linux/linux_2.6.20.bb @@ -43,6 +43,12 @@ do_configure_prepend() { yes '' | oe_runmake oldconfig } +do_install_prepend() { + if test -e arch/${ARCH}/boot/Image ; then + ln -f arch/arm/boot/Image arch/arm/boot/uImage + fi +} + do_install_append_n2100() { install -d ${DEPLOY_DIR_IMAGE} install -m 0644 ${S}/arch/${ARCH}/boot/${KERNEL_IMAGETYPE} ${DEPLOY_DIR_IMAGE}/${KERNEL_IMAGETYPE}-${PV}-${MACHINE}-${DATETIME} diff --git a/packages/linux/linux_2.6.21+2.6.22-rc1.bb b/packages/linux/linux_2.6.21+2.6.22-rc1.bb index 2773280da2..b127d33f24 100644 --- a/packages/linux/linux_2.6.21+2.6.22-rc1.bb +++ b/packages/linux/linux_2.6.21+2.6.22-rc1.bb @@ -59,3 +59,8 @@ do_configure_prepend() { yes '' | oe_runmake oldconfig } +do_install_prepend() { + if test -e arch/${ARCH}/boot/Image ; then + ln -f arch/arm/boot/Image arch/arm/boot/uImage + fi +} diff --git a/packages/linux/linux_2.6.21.bb b/packages/linux/linux_2.6.21.bb index d823b4d625..34dd5355e0 100644 --- a/packages/linux/linux_2.6.21.bb +++ b/packages/linux/linux_2.6.21.bb @@ -51,3 +51,9 @@ do_configure_prepend() { yes '' | oe_runmake oldconfig } +do_install_prepend() { + if test -e arch/${ARCH}/boot/Image ; then + ln -f arch/arm/boot/Image arch/arm/boot/uImage + fi +} +