install kernel into staging so that do_flashimg can find it
authorPhil Blundell <philb@gnu.org>
Sun, 20 Jun 2004 19:51:38 +0000 (19:51 +0000)
committerPhil Blundell <philb@gnu.org>
Sun, 20 Jun 2004 19:51:38 +0000 (19:51 +0000)
BKrev: 40d5eacaUPA67rGh_f7UFjVIiYiXLA

linux/opensimpad_2.4.25-vrs2-pxa1-jpm1.oe

index 88f0e20..708318f 100644 (file)
@@ -5,7 +5,7 @@ KV = "${@oe.data.getVar('PV',d,True).split('-')[0]}"
 VRSV = "${@oe.data.getVar('PV',d,True).split('-')[1]}"
 PXAV = "${@oe.data.getVar('PV',d,True).split('-')[2]}"
 JPMV = "${@oe.data.getVar('PV',d,True).split('-')[3]}"
-PR = "r1"
+PR = "r2"
 
 SRC_URI = "ftp://ftp.kernel.org/pub/linux/kernel/v2.4/linux-${KV}.tar.bz2 \
            file://${KV}-${VRSV}.patch;patch=1 \
@@ -54,3 +54,9 @@ do_configure() {
        echo "CONFIG_CMDLINE=\"$CMDLINE mem=${mem}M\"" >> ${S}/.config
         oe_runmake oldconfig
 }
+
+do_stage() {
+       install -d ${STAGING_LIBDIR}/kernel
+       install arch/arm/boot/zImage ${STAGING_LIBDIR}/kernel/
+}
+