summaryrefslogtreecommitdiffstats
path: root/meta/packages/linux/linux-igep_2.6.33.5.bb
blob: 6e961b7efd59ec2f56ee3b0c140005cdf645a110 (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
26
27
28
29
30
DESCRIPTION = "2.6 Linux Kernel for IGEP based platforms"
SECTION = "kernel"
LICENSE = "GPL"

DEFAULT_PREFERENCE = "-1"
DEFAULT_PREFERENCE_igep0020 = "1"
DEFAULT_PREFERENCE_igep0030 = "1"

COMPATIBLE_MACHINE = "(igep0020|igep0030)"

inherit kernel

KV = "${PV}-0"

SRC_URI = "http://downloads.igep.es/sources/linux-omap-${KV}.tar.gz \
           file://0001-omap3-init-MUX-for-OMAP3-IGEP-module.patch;patch=1 \
           file://defconfig-igep0020 \
           file://defconfig-igep0030"

do_configure() {

	rm -f ${S}/.config || true

   	cp ${WORKDIR}/defconfig-${MACHINE} ${S}/.config

        yes '' | oe_runmake oldconfig

}
           
S = "${WORKDIR}/linux-omap-${KV}"