blob: 2b6c75b7c9422e8d32ed69e1386b4386d7214980 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
DESCRIPTION = "handhelds.org Linux kernel for StrongArm processor based devices."
MAINTAINER = "Rene Wagner <reenoo@gmx.de>"
LICENSE = "GPL"
TARGET_ARCH = "ipaqsa"
FILESDIR = "${@os.path.dirname(oe.data.getVar('FILE',d,1))}/handhelds-sa-${PV}"
SRC_URI = "cvs://anoncvs:anoncvs@192.58.209.91/cvs;module=linux/kernel;tag=${@'K' + oe.data.getVar('PV',d,1).replace('.', '-')} \
\
file://${FILESDIR}/mkdep.patch;patch=1"
S = "${WORKDIR}/kernel"
inherit kernel
KERNEL_ARCH = "arm"
do_configure_prepend() {
oe_runmake ipaqsa_config
(echo N; echo m; echo N) | oe_runmake oldconfig
}
|