blob: f8ec93f8cff865526c9991d7a77dc9ef4deed91b (
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
|
DESCRIPTION = "Linux Kernel for smdk2440 compatible machines"
SECTION = "kernel"
LICENSE = "GPLv2"
PR = "r1"
GGSRC = "http://www.xora.org.uk/oe/patches/"
SRC_URI = "git://opensource.wolfsonmicro.com/linux-2.6-asoc-ggdev;protocol=git;tag=asoc-merge-0002 \
file://0001-Enable-cs8900A-network-device-for-smdk2440-board.patch \
file://defconfig-smdk2440"
S = "${WORKDIR}/git"
inherit kernel
COMPATIBLE_HOST = "arm.*-linux"
COMPATIBLE_MACHINE = "smdk2440"
do_configure() {
install ${WORKDIR}/defconfig-smdk2440 ${S}/.config
#oe_runmake s3c2410_defconfig
oe_runmake oldconfig
}
KERNEL_RELEASE = "2.6.21"
|