Merge openembedded@openembedded.bkbits.net:packages
authorChris Larson <clarson@kergoth.com>
Thu, 14 Oct 2004 22:23:33 +0000 (22:23 +0000)
committerChris Larson <clarson@kergoth.com>
Thu, 14 Oct 2004 22:23:33 +0000 (22:23 +0000)
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

linux/linux-omap-2.6-2.6.5-omap1/omap1510/defconfig [deleted file]
linux/linux-omap-2.6-2.6.5-omap1/omap1610/defconfig [deleted file]
linux/linux-omap-2.6-2.6.5-omap1/perseus2/defconfig [deleted file]
linux/linux-omap-2.6-2.6.9-rc4-omap1/omap1610h2/defconfig [moved from linux/linux-omap-2.6-2.6.5-omap1/defconfig with 100% similarity]
linux/linux-omap-2.6-2.6.9-rc4-omap1/schedstats-arm.patch [moved from linux/linux-omap-2.6-2.6.5-omap1/helen2/defconfig with 100% similarity]
linux/linux-omap-2.6_2.6.5-omap1.oe [deleted file]
linux/linux-omap-2.6_2.6.9-rc4-omap1.oe [moved from linux/linux-omap-2.6-2.6.5-omap1/innovator1510/defconfig with 100% similarity]
linux/nslu2-openslug_2.6.7.oe
meta/openslug-image.oe [moved from linux/linux-omap-2.6-2.6.5-omap1/innovator1610/defconfig with 100% similarity]

diff --git a/linux/linux-omap-2.6-2.6.5-omap1/omap1510/defconfig b/linux/linux-omap-2.6-2.6.5-omap1/omap1510/defconfig
deleted file mode 100644 (file)
index e69de29..0000000
diff --git a/linux/linux-omap-2.6-2.6.5-omap1/omap1610/defconfig b/linux/linux-omap-2.6-2.6.5-omap1/omap1610/defconfig
deleted file mode 100644 (file)
index e69de29..0000000
diff --git a/linux/linux-omap-2.6-2.6.5-omap1/perseus2/defconfig b/linux/linux-omap-2.6-2.6.5-omap1/perseus2/defconfig
deleted file mode 100644 (file)
index e69de29..0000000
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 (file)
index 40471ec..0000000
+++ /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)
-}
index 9da953f..8d6c797 100644 (file)
@@ -4,6 +4,8 @@ LICENSE = "GPL"
 MAINTAINER = "Chris Larson <kergoth@handhelds.org>"
 PR = "r1"
 
+KERNEL_SUFFIX = "openslug"
+
 SRC_URI = "ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.7.tar.bz2 \
           file://arm-Makefile.patch;patch=1 \
           file://ipx4xx-pci.patch;patch=1 \
@@ -30,7 +32,7 @@ do_configure_prepend() {
 
 do_deploy() {
         install -d ${DEPLOY_DIR}/images
-        install -m 0644 arch/${ARCH}/boot/${KERNEL_IMAGETYPE} ${DEPLOY_DIR}/images/${KERNEL_IMAGETYPE}.bin-${DATETIME}
+        install -m 0644 arch/${ARCH}/boot/${KERNEL_IMAGETYPE} ${DEPLOY_DIR}/images/${KERNEL_IMAGETYPE}-${KERNEL_SUFFIX}
 }
 
 do_deploy[dirs] = "${S}"