summaryrefslogtreecommitdiff
path: root/packages/linux/ep93xx-kernel_2.6.16.bb
blob: 1806290a67e3e0ecb2c5563933eccee36e932710 (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
DESCRIPTION = "Linux Kernel for Cirrus Logic ep39xx compatible machines"
SECTION = "kernel"
MAINTAINER = "Koen Kooi <koen@dominion.kabel.utwente.nl>"
LICENSE = "GPL"
PR = "r0"

SRC_URI = "ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.16.tar.bz2 \
	   http://www.wantstofly.org/~buytenh/ep93xx/derevo17.diff;patch=1 \
	   http://cowebs.contec.at/ep93xx/EP93XX_Framebuffer1.patch;patch=1 \
	   http://cowebs.contec.at/ep93xx/EP93XX_Framebuffer1_registers.patch;patch=1 \
	   http://cowebs.contec.at/ep93xx/EP93XX_Framebuffer1_registers_raster.patch;patch=1 \ 
           file://defconfig \
		   "

S = "${WORKDIR}/linux-2.6.16"

inherit kernel

KERNEL_IMAGETYPE = "zImage"

do_configure() {
		install -m 644 ${WORKDIR}/defconfig ${S}/.config
		make ARCH=arm oldconfig
}

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

do_deploy[dirs] = "${S}"

addtask deploy before do_build after do_compile