From: Phil Blundell Date: Sun, 20 Jun 2004 19:51:38 +0000 (+0000) Subject: install kernel into staging so that do_flashimg can find it X-Git-Tag: Release-2010-05/1~18607 X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b0e1874be6569ab1d894a0b7ebfae3cea75c15db;p=openembedded.git install kernel into staging so that do_flashimg can find it BKrev: 40d5eacaUPA67rGh_f7UFjVIiYiXLA --- diff --git a/linux/opensimpad_2.4.25-vrs2-pxa1-jpm1.oe b/linux/opensimpad_2.4.25-vrs2-pxa1-jpm1.oe index 88f0e20be4..708318f154 100644 --- a/linux/opensimpad_2.4.25-vrs2-pxa1-jpm1.oe +++ b/linux/opensimpad_2.4.25-vrs2-pxa1-jpm1.oe @@ -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/ +} +