diff options
author | Oyvind Repvik <nail@nslu2-linux.org> | 2007-03-14 11:19:10 +0000 |
---|---|---|
committer | Oyvind Repvik <nail@nslu2-linux.org> | 2007-03-14 11:19:10 +0000 |
commit | 31a1c02ee47e6e1d0d49170ac55209e20f751c4e (patch) | |
tree | c951519f7edcf4f865d554e7fbaa8162980d3f1e | |
parent | f11b1c7af6851cd2b3d95e1631971237fc0e265a (diff) |
linux: Add do_deploy for n2100
-rw-r--r-- | packages/linux/linux_2.6.20.bb | 7 |
1 files changed, 6 insertions, 1 deletions
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} +} |