diff options
author | Rod Whitby <rod@whitby.id.au> | 2007-11-28 05:35:28 +0000 |
---|---|---|
committer | Rod Whitby <rod@whitby.id.au> | 2007-11-28 05:35:28 +0000 |
commit | f19c873a409ab4628ab5db2ddf12827063c0cfe8 (patch) | |
tree | 15aa61719bf93176bc3d50d5b1d7a2190a6e4c0c /packages/linux/linux-ixp4xx_2.6.23.8.bb | |
parent | ebc5a6179a680eadd5e7fc7ca985e2ce63fb90dc (diff) |
linux-ixp4xx: Migration from ixp4xx-kernel. Intended to follow recent OE kernel recipe conventions. Default kernel for slugos distro and ixp4xx machines. ixp4xx-kernel will be removed later once this is well tested.
Diffstat (limited to 'packages/linux/linux-ixp4xx_2.6.23.8.bb')
-rw-r--r-- | packages/linux/linux-ixp4xx_2.6.23.8.bb | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/packages/linux/linux-ixp4xx_2.6.23.8.bb b/packages/linux/linux-ixp4xx_2.6.23.8.bb new file mode 100644 index 0000000000..a6dcca41b5 --- /dev/null +++ b/packages/linux/linux-ixp4xx_2.6.23.8.bb @@ -0,0 +1,27 @@ +require linux.inc +require linux-ixp4xx.inc + +VANILLA_VERSION = "2.6.23" +KERNEL_RELEASE = "2.6.23.8" + +# If you use a rc, you will need to use this: +#PV = "${VANILLA_VERSION}+${KERNEL_RELEASE}+svnr${SRCREV}" + +PV = "${KERNEL_RELEASE}+svnr${SRCREV}" +PR = "r0" + +SRC_URI = "${KERNELORG_MIRROR}/pub/linux/kernel/v2.6/linux-${VANILLA_VERSION}.tar.bz2 \ + ${KERNELORG_MIRROR}/pub/linux/kernel/v2.6/patch-${KERNEL_RELEASE}.bz2;patch=1 \ + svn://svn.nslu2-linux.org/svnroot/kernel/trunk/patches;module=${VANILLA_VERSION};proto=http \ + file://defconfig-${KERNEL_RELEASE}" + +S = "${WORKDIR}/linux-${VANILLA_VERSION}" + +do_prepatch() { + mv ${WORKDIR}/${VANILLA_VERSION} ${S}/patches && cd ${S} && quilt push -av + mv patches patches.ixp4xx + mv .pc .pc.old + mv ${WORKDIR}/defconfig-${KERNEL_RELEASE} ${WORKDIR}/defconfig +} + +addtask prepatch after do_unpack before do_patch |