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.19.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.19.bb')
-rw-r--r-- | packages/linux/linux-ixp4xx_2.6.19.bb | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/packages/linux/linux-ixp4xx_2.6.19.bb b/packages/linux/linux-ixp4xx_2.6.19.bb new file mode 100644 index 0000000000..550313ca94 --- /dev/null +++ b/packages/linux/linux-ixp4xx_2.6.19.bb @@ -0,0 +1,22 @@ +require linux.inc +require linux-ixp4xx.inc + +KERNEL_RELEASE = "2.6.19" + +PV = "${KERNEL_RELEASE}+svnr${SRCREV}" +PR = "r0" + +SRC_URI = "${KERNELORG_MIRROR}/pub/linux/kernel/v2.6/linux-${KERNEL_RELEASE}.tar.bz2 \ + svn://svn.nslu2-linux.org/svnroot/kernel/trunk/patches;module=${KERNEL_RELEASE};proto=http \ + file://defconfig-${KERNEL_RELEASE}" + +S = "${WORKDIR}/linux-${KERNEL_RELEASE}" + +do_prepatch() { + mv ${WORKDIR}/${KERNEL_RELEASE} ${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 |