blob: 8e9346c4738b2c593d44a8629202d151244f73b2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
DESCRIPTION = "Linux Kernel"
SECTION = "kernel"
LICENSE = "GPL"
SRC_URI = "${KERNELORG_MIRROR}/pub/linux/kernel/v2.6/linux-2.6.19.tar.bz2 \
file://defconfig"
SRC_URI_append_progear = " \
file://progear_bl-r5.patch;patch=1 \
"
S = "${WORKDIR}/linux-2.6.19"
inherit kernel
KERNEL_IMAGETYPE = "bzImage"
do_configure_prepend() {
install -m 0644 ${WORKDIR}/defconfig ${S}/.config
}
|