diff options
author | Denys Dmytriyenko <denis@denix.org> | 2009-03-17 14:32:59 -0400 |
---|---|---|
committer | Denys Dmytriyenko <denis@denix.org> | 2009-03-17 14:32:59 -0400 |
commit | 709c4d66e0b107ca606941b988bad717c0b45d9b (patch) | |
tree | 37ee08b1eb308f3b2b6426d5793545c38396b838 /recipes/linux/unslung-kernel_2.4.22.l2.3r63.bb | |
parent | fa6cd5a3b993f16c27de4ff82b42684516d433ba (diff) |
rename packages/ to recipes/ per earlier agreement
See links below for more details:
http://thread.gmane.org/gmane.comp.handhelds.openembedded/21326
http://thread.gmane.org/gmane.comp.handhelds.openembedded/21816
Signed-off-by: Denys Dmytriyenko <denis@denix.org>
Acked-by: Mike Westerhof <mwester@dls.net>
Acked-by: Philip Balister <philip@balister.org>
Acked-by: Khem Raj <raj.khem@gmail.com>
Acked-by: Marcin Juszkiewicz <hrw@openembedded.org>
Acked-by: Koen Kooi <koen@openembedded.org>
Acked-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
Diffstat (limited to 'recipes/linux/unslung-kernel_2.4.22.l2.3r63.bb')
-rw-r--r-- | recipes/linux/unslung-kernel_2.4.22.l2.3r63.bb | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/recipes/linux/unslung-kernel_2.4.22.l2.3r63.bb b/recipes/linux/unslung-kernel_2.4.22.l2.3r63.bb new file mode 100644 index 0000000000..cf9ef31c95 --- /dev/null +++ b/recipes/linux/unslung-kernel_2.4.22.l2.3r63.bb @@ -0,0 +1,53 @@ +SECTION = "kernel" +DESCRIPTION = "Vendor-compatible Linux kernel for the Linksys NSLU2 device" +LICENSE = "GPL" +PR = "r22" + +COMPATIBLE_HOST = 'arm.*-linux' +COMPATIBLE_MACHINE = "nslu2" + +UNSLUNG_KERNEL_EXTRA_SRC_URI ?= "" + +SRC_URI = "${KERNELORG_MIRROR}/pub/linux/kernel/v2.4/linux-2.4.22.tar.bz2 \ + http://nslu.sf.net/downloads/xfs-2.4.22-all-i386.bz2;patch=1 \ + http://nslu.sf.net/downloads/2.4.22-xfs-nslu2.patch.bz2;patch=1 \ + file://config-fixes.patch;patch=1 \ + file://nofpu.patch;patch=1 \ + file://short_loadbytes.patch;patch=1 \ + file://gcc3-userfuncs.patch;patch=1 \ + file://gcc-registerparanoia.patch;patch=1 \ + file://linux-2.4.24-attribute-used.patch;patch=1 \ + file://double_cpdo.patch;patch=1 \ + file://linux-kernel-R25_to_R29.patch;patch=1 \ + file://linux-kernel-R29_to_R63.patch;patch=1 \ + file://flash-is-now-hdd.patch;patch=1 \ + file://gl811e.patch;patch=1 \ + file://usbnet.patch;patch=1 \ + file://missing-usb-ioctls.patch;patch=1 \ + file://anonymiser.patch;patch=1 \ + file://ppp_mppe.patch;patch=1 \ + file://nfs-blocksize.patch;patch=1 \ + file://pl2303.patch;patch=1 \ + file://pl2303_mdmctl.patch;patch=1 \ + file://netconsole.patch;patch=1 \ + file://ppp_mppe_no_fp_in_kernel.patch;patch=1 \ + file://defconfig \ + ${UNSLUNG_KERNEL_EXTRA_SRC_URI}" +S = "${WORKDIR}/linux-2.4.22" + +inherit kernel + +ARCH = "arm" +KERNEL_SUFFIX = "nslu2be" +CMDLINE_CONSOLE ?= "ttyS0,115200" +CMDLINE_ROOT = "root=/dev/mtdblock4 rootfstype=jffs2 rw init=/linuxrc mem=32M@0x00000000" +CMDLINE = "${CMDLINE_CONSOLE} ${CMDLINE_ROOT}" + +do_configure_prepend() { + install -m 0644 ${WORKDIR}/defconfig ${S}/.config + echo "CONFIG_CMDLINE=\"${CMDLINE}\"" >> ${S}/.config + rm -rf ${S}/include/asm-arm/arch ${S}/include/asm-arm/proc \ + ${S}/include/asm-arm/.proc ${S}/include/asm-arm/.arch +} +KERNEL_IMAGE_BASE_NAME = "${KERNEL_IMAGETYPE}-${KERNEL_SUFFIX}-${DATETIME}" +KERNEL_IMAGE_SYMLINK_NAME = "${KERNEL_IMAGETYPE}-${KERNEL_SUFFIX}" |