blob: b707a2649bd765021ac7f0ce2b8dfe54f244ca71 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
DESCRIPTION = "2.6 Linux Development Kernel for the DNARD/Shark, SIMpad."
SECTION = "kernel"
LICENSE = "GPL"
inherit kernel
S = "${WORKDIR}/git"
SRC_URI = "git://www.openembedded.org/~zecke/git/linux/linux-2.6/.git;protocol=http \
file://defconfig"
RPROVIDES_kernel-image += "hostap-modules"
COMPATIBLE_HOST = "(arm).*-linux"
COMPATIBLE_MACHINE = '(shark)'
KERNEL_IMAGETYPE = "zImage"
do_configure_prepend() {
install -m 0644 ${WORKDIR}/defconfig ${S}/.config
}
|