summaryrefslogtreecommitdiff
path: root/linux/linux-omap-2.6_2.6.5-omap1.oe
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2004-10-14 22:23:33 +0000
committerChris Larson <clarson@kergoth.com>2004-10-14 22:23:33 +0000
commit94635d3eb436f61757288e9f5e815174f3d1cd19 (patch)
tree51ecf24136b75b2f59645540ec4d143a230cfecb /linux/linux-omap-2.6_2.6.5-omap1.oe
parent6fc03c78b1508ff621be4894ae8ed4237d7e1ab3 (diff)
Merge openembedded@openembedded.bkbits.net:packages
into handhelds.org:/home/kergoth/code/packages 2004/10/14 17:16:13-05:00 handhelds.org!kergoth Update the omap kernel build to 2.6.9-rc4-omap1, apply a minor patch to add SCHEDSTATS config item to its Kconfig, and enable SCHEDSTATS by default for omap1610h2. 2004/10/14 11:59:07-05:00 handhelds.org!kergoth Merge http://nslu2-linux.bkbits.net/packages into handhelds.org:/home/kergoth/code/packages 2004/10/14 08:41:25+09:30 (none)!rwhitby Made the openslug image basename handling compatible with unslung 2004/10/13 18:40:16-04:00 rant-central.com!CodeWhacker Merge bk://nslu2-linux@nslu2-linux.bkbits.net/packages into rant-central.com:/home/roy/workspace/NSLU2/oe/packages 2004/10/13 18:38:38-04:00 rant-central.com!CodeWhacker Adjusting the staged kernel image filename and adding an "openslug-image" target. (openslug-image is currently a clone of bootstrap-image, but this gives us some room to adjust further without frobbing other OE projects) This clears up the filename conflict that was preventing builds from completing. BKrev: 416efc655jry-rBphLv6yhPqGPRRkw
Diffstat (limited to 'linux/linux-omap-2.6_2.6.5-omap1.oe')
-rw-r--r--linux/linux-omap-2.6_2.6.5-omap1.oe24
1 files changed, 0 insertions, 24 deletions
diff --git a/linux/linux-omap-2.6_2.6.5-omap1.oe b/linux/linux-omap-2.6_2.6.5-omap1.oe
deleted file mode 100644
index 40471ec935..0000000000
--- a/linux/linux-omap-2.6_2.6.5-omap1.oe
+++ /dev/null
@@ -1,24 +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.5.tar.bz2 \
- http://www.muru.com/linux/omap/patches/patch-2.6.5-omap1.bz2;patch=1 \
- file://defconfig"
-S = "${WORKDIR}/linux-2.6.5"
-
-inherit kernel
-
-KERNEL_IMAGETYPE = "zImage"
-
-do_configure_prepend() {
- install -m 0644 ${WORKDIR}/defconfig ${S}/.config || die "no default configuration for ${MACHINE} available."
- oe_runmake oldconfig
-}
-
-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)
-}