blob: b86d970e50c1284a3f25caaaf2d0ac824b4984da (
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 = "GPL"
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;patch=1 \
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"
|