blob: 021cf3555d9c293bce73e937971fc2eff071ec37 (
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
|
SECTION = "kernel"
DESCRIPTION = "Linux kernel for PC-Engines WRAP which are \
Geode SC1100 (i486) based wirless router appliance boards"
LICENSE = "GPLv2"
PR = "r0"
SRC_URI = "${KERNELORG_MIRROR}/pub/linux/kernel/v2.6/linux-${PV}.tar.bz2 \
file://defconfig"
S = "${WORKDIR}/linux-${PV}"
COMPATIBLE_HOST = 'i486.*-linux'
COMPATIBLE_MACHINE = "wrap"
inherit kernel
ARCH = "i386"
KERNEL_OUTPUT = "arch/${ARCH}/boot/${KERNEL_IMAGETYPE}"
do_configure_prepend() {
install -m 0644 ${WORKDIR}/defconfig ${S}/.config
yes '' | oe_runmake oldconfig
}
SRC_URI[md5sum] = "37ddefe96625502161f075b9d907f21e"
SRC_URI[sha256sum] = "ab0f647d52f124958439517df9e1ae0efda90cdb851f59f522fa1749f1d87d58"
|