diff options
author | Chris Larson <clarson@kergoth.com> | 2005-02-17 18:42:39 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2005-02-17 18:42:39 +0000 |
commit | e6679fbc2cad92aca4b73bde2cdb9a82405fd516 (patch) | |
tree | bda7cc920b7bd9aa833da445fd59bb67d18e1f77 /packages/linux/linux-colinux_2.6.10.bb | |
parent | a56fadce467226e803b94b805838a090dcb66caa (diff) |
Merge oe-devel@oe-devel.bkbits.net:openembedded
into odin.sc.ti.com:/home/kergoth/code/user/oe/openembedded
2005/02/17 12:41:30-06:00 ti.com!kergoth
Set the kernel version string correctly in the colinux kernel build.
2005/02/17 12:40:42-06:00 ti.com!kergoth
Add hotplug-ng, rename hotplug to linux-hotplug, and move the decision about which /sbin/hotplug binary you use into the hands of the distributions.
BKrev: 4214e59fRUBz9NJWKrkQdsqK0Ps__A
Diffstat (limited to 'packages/linux/linux-colinux_2.6.10.bb')
-rw-r--r-- | packages/linux/linux-colinux_2.6.10.bb | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/packages/linux/linux-colinux_2.6.10.bb b/packages/linux/linux-colinux_2.6.10.bb index e69de29bb2..ecd0f64a0d 100644 --- a/packages/linux/linux-colinux_2.6.10.bb +++ b/packages/linux/linux-colinux_2.6.10.bb @@ -0,0 +1,23 @@ +SECTION = "kernel" +DESCRIPTION = "User Mode Linux Kernel" +LICENSE = "GPL" +COLV = "0.6.2" + +#http://internap.dl.sourceforge.net/sourceforge/colinux/coLinux-${COLV}.tar.gz +SRC_URI = "ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-${PV}.tar.bz2 \ + file://colinux-${COLV}.patch;patch=1 \ + file://defconfig" + +S = "${WORKDIR}/linux-${PV}" + +inherit kernel + +COMPATIBLE_HOST = "i.86.*-linux" +KERNEL_IMAGETYPE = "vmlinux" +KERNEL_OUTPUT = "./${KERNEL_IMAGETYPE}" + +do_configure() { + echo '-co-${COLV}' > localversion-cooperative + install -m 0644 ${WORKDIR}/defconfig .config + kernel_do_configure +} |