linux 2.6.20, 2.6.21, 2.6.21+2.6.22-rc1: fix install for uImage
authorKoen Kooi <koen@openembedded.org>
Wed, 13 Jun 2007 09:40:53 +0000 (09:40 +0000)
committerKoen Kooi <koen@openembedded.org>
Wed, 13 Jun 2007 09:40:53 +0000 (09:40 +0000)
packages/linux/linux_2.6.20.bb
packages/linux/linux_2.6.21+2.6.22-rc1.bb
packages/linux/linux_2.6.21.bb

index 91388a2..76a9000 100644 (file)
@@ -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}
index 2773280..b127d33 100644 (file)
@@ -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
+}
index d823b4d..34dd535 100644 (file)
@@ -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
+}
+