blob: 576cfb891cd649ca84cf309e036ae3728b07d641 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
DESCRIPTION = "Linux kernel x86 for IBM Netvista"
LICENSE = "GPL"
PR = "r2"
SRC_URI = "ftp://ftp.kernel.org/pub/linux/kernel/v2.4/linux-${PV}.tar.bz2 \
file://netvista_defconfig"
S = "${WORKDIR}/linux-${PV}"
COMPATIBLE_HOST = 'i.86.*-linux'
inherit kernel
KERNEL_CCSUFFIX="-3.3.4"
ARCH = "i386"
KERNEL_IMAGETYPE = "bzImage"
do_configure_prepend() {
install -m 0644 ${WORKDIR}/netvista_defconfig ${S}/.config
}
|