aboutsummaryrefslogtreecommitdiffstats
path: root/linux/linux-omap-2.6_2.6.9-omap1.oe
diff options
context:
space:
mode:
Diffstat (limited to 'linux/linux-omap-2.6_2.6.9-omap1.oe')
-rw-r--r--linux/linux-omap-2.6_2.6.9-omap1.oe34
1 files changed, 0 insertions, 34 deletions
diff --git a/linux/linux-omap-2.6_2.6.9-omap1.oe b/linux/linux-omap-2.6_2.6.9-omap1.oe
deleted file mode 100644
index 663551fb08..0000000000
--- a/linux/linux-omap-2.6_2.6.9-omap1.oe
+++ /dev/null
@@ -1,34 +0,0 @@
-SECTION = "kernel"
-DESCRIPTION = "Linux kernel for OMAP processors"
-LICENSE = "GPL"
-
-SRC_URI = "ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.9.tar.bz2 \
- http://www.muru.com/linux/omap/patches/patch-2.6.9-omap1.bz2;patch=1 \
- file://schedstats-arm.patch;patch=1 \
- file://defconfig"
-S = "${WORKDIR}/linux-2.6.9"
-
-inherit kernel
-
-python __anonymous () {
- import re
- host = oe.data.getVar('HOST_SYS', d, 1)
- if not re.match('arm.*-linux', host):
- raise oe.parse.SkipPackage("incompatible with host %s" % host)
-}
-
-KERNEL_IMAGETYPE = "uImage"
-
-do_configure_prepend() {
- install -m 0644 ${WORKDIR}/defconfig ${S}/.config
- oe_runmake oldconfig
-}
-
-do_deploy() {
- install -d ${DEPLOY_DIR}/images
- install -m 0644 arch/${ARCH}/boot/${KERNEL_IMAGETYPE} ${DEPLOY_DIR}/images/${KERNEL_IMAGETYPE}-${MACHINE}-${DATETIME}.bin
-}
-
-do_deploy[dirs] = "${S}"
-
-addtask deploy before do_build after do_compile