blob: a8008080a504feb3603446498780ec98bda7e5b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
DESCRIPTION = "Linux kernel for the Linksys NSLU2 device"
LICENSE = "GPL"
MAINTAINER = "Chris Larson <kergoth@handhelds.org>"
PR = "r1"
SRC_URI = "ftp://ftp.kernel.org/pub/linux/kernel/v2.4/linux-2.4.22.tar.bz2 \
ftp://oss.sgi.com/projects/xfs/patches/2.4.22/xfs-2.4.22-all-i386.bz2;patch=1 \
http://openembedded.org/dl/2.4.22-xfs-nslu2.patch.bz2;patch=1 \
file://linksys_can_bite_me.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://defconfig"
S = "${WORKDIR}/linux-2.4.22"
COMPATIBLE_HOST = 'arm.*-linux'
inherit kernel
ARCH = "arm"
KERNEL_IMAGETYPE = "zImage"
do_configure_prepend() {
install -m 0644 ${WORKDIR}/defconfig ${S}/.config
rm -rf ${S}/include/asm-arm/arch ${S}/include/asm-arm/proc \
${S}/include/asm-arm/.proc ${S}/include/asm-arm/.arch
}
|