aboutsummaryrefslogtreecommitdiffstats
path: root/packages/linux/linux-ks8695_2.6.16.bb
blob: a357443fdbcd02d43da4e097f91097df69264e00 (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 Micrel KS8695(P) based devices"
SECTION = "kernel"
LICENSE = "GPL"
PR = "r0"

SRC_URI = "${KERNELORG_MIRROR}/pub/linux/kernel/v2.6/linux-${PV}.tar.bz2 \
           file://ks8695-headers-r0.patch;patch=1 \
           file://ks8695-base-r0.patch;patch=1 \
           file://defconfig-ks8695"

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

COMPATIBLE_HOST = 'arm.*-linux'
COMPATIBLE_MACHINE = "ks8695"

inherit kernel
inherit package

ARCH = "arm"
CMDLINE = "ttyS0,115200n8 root=/dev/mtdblock2 init=/linuxrc"

do_configure_prepend() {
	install -m 0644 ${WORKDIR}/defconfig-${MACHINE} ${S}/.config
	echo "CONFIG_CMDLINE=\"${CMDLINE}\"" >> ${S}/.config
}