aboutsummaryrefslogtreecommitdiffstats
path: root/packages/linux/linux-amsdelta-2.6_2.6.16-omap2.bb
blob: 6906fdd14eadc5d7de73d5f8df5c49102f13bd0c (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
31
32
33
34
35
36
37
38
39
40
41
42
43
SECTION = "kernel"
DESCRIPTION = "2.6 Linux kernel for the Amstrad Delta (E3)"
LICENSE = "GPL"

COMPATIBLE_MACHINE = "amsdelta"

SRC_URI = "ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.16.tar.bz2 \
	http://www.muru.com/linux/omap/patches/patch-2.6.16-omap2.bz2;patch=1 \
	http://the.earth.li/pub/e3/2.6.16/00-ams-delta-backlight.diff;patch=1 \
	http://the.earth.li/pub/e3/2.6.16/01-ams-delta-lcd.diff;patch=1 \
	http://the.earth.li/pub/e3/2.6.16/02-ams-delta-keypad.diff;patch=1 \
	http://the.earth.li/pub/e3/2.6.16/03-ams-delta-modem.diff;patch=1 \
	http://the.earth.li/pub/e3/2.6.16/04-omapfb-12bpp-support.diff;patch=1 \
	http://the.earth.li/pub/e3/2.6.16/05-ams-delta-nand.diff;patch=1 \
	http://the.earth.li/pub/e3/2.6.16/06-ams-delta-keyboard.diff;patch=1 \
	http://the.earth.li/pub/e3/2.6.16/08-ams-delta-sound.diff;patch=1 \
	file://defconfig"
S = "${WORKDIR}/linux-2.6.16"

inherit kernel

python __anonymous () {
    import re
    host = bb.data.getVar('HOST_SYS', d, 1)
    if not re.match('arm.*-linux', host):
        raise bb.parse.SkipPackage("incompatible with host %s" % host)
}

KERNEL_IMAGETYPE = "uImage"

do_configure_prepend() {
	install -m 0644 ${WORKDIR}/defconfig ${S}/.config
        oe_runmake oldconfig
}

do_deploy() {
        install -d ${DEPLOY_DIR_IMAGE}
        install -m 0644 arch/${ARCH}/boot/${KERNEL_IMAGETYPE} ${DEPLOY_DIR_IMAGE}/${KERNEL_IMAGETYPE}-${MACHINE}-${DATETIME}.bin
}

do_deploy[dirs] = "${S}"

addtask deploy before do_build after do_compile