From: Oyvind Repvik Date: Wed, 14 Mar 2007 11:19:10 +0000 (+0000) Subject: linux: Add do_deploy for n2100 X-Git-Tag: Release-2010-05/1~8868^2~1092^2~1^2~7^2~16 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=31a1c02ee47e6e1d0d49170ac55209e20f751c4e;p=openembedded.git linux: Add do_deploy for n2100 --- diff --git a/packages/linux/linux_2.6.20.bb b/packages/linux/linux_2.6.20.bb index 9fb8909dfd..9ea1a77803 100644 --- a/packages/linux/linux_2.6.20.bb +++ b/packages/linux/linux_2.6.20.bb @@ -1,7 +1,7 @@ DESCRIPTION = "Linux Kernel" SECTION = "kernel" LICENSE = "GPL" -PR = "r3" +PR = "r4" SRC_URI = "${KERNELORG_MIRROR}/pub/linux/kernel/v2.6/linux-${PV}.tar.bz2 \ file://defconfig" @@ -27,3 +27,8 @@ KERNEL_IMAGETYPE_n2100 = "zImage" do_configure_prepend() { install -m 0644 ${WORKDIR}/defconfig ${S}/.config } + +do_deploy_n2100() { + install -d ${DEPLOY_DIR_IMAGE} + install -m 0644 arch/${ARCH}/boot/images/${KERNEL_IMAGETYPE} ${DEPLOY_DIR_IMAGE}/${KERNEL_IMAGETYPE}-${PV}-${MACHINE}-${DATETIME} +}