blob: 30ccbff0710d02a55fae10247394406c5cc0797f (
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
44
45
46
47
48
49
50
51
52
53
54
55
56
|
PV = "2.4.18-rmk7-pxa3-embedix"
LICENSE = "GPL"
KV = "2.4.18"
RMKV = "7"
PXAV = "3"
SHARPV = "20040311"
DESCRIPTION = "Linux kernel for OpenZaurus PXA processor based devices."
FILESDIR = "${@os.path.dirname(oe.data.getVar('FILE',d,1))}/openzaurus-pxa-${KV}-rmk${RMKV}-pxa${PXAV}-embedix${SHARPV}"
SRC_URI = "ftp://ftp.kernel.org/pub/linux/kernel/v2.4/linux-${KV}.tar.bz2 \
ftp://ftp.arm.linux.org.uk/pub/armlinux/source/kernel-patches/v2.4/patch-${KV}-rmk${RMKV}.gz;patch=1 \
ftp://source.mvista.com/pub/xscale/pxa/diff-${KV}-rmk${RMKV}-pxa${PXAV}.gz;patch=1 \
http://developer.ezaurus.com/sl_j/source/6000/${SHARPV}/linux-${PV}-sl6000-${SHARPV}-rom1_11.bz2;patch=1 \
file://piro.patch;patch=1 \
file://swap-performance.patch;patch=1 \
file://bluetooth-2.4.18-mh11.patch;patch=1 \
file://iw_handlers.w13-5.diff;patch=1 \
file://iw_handlers.w14-5.diff;patch=1 \
file://iw240_we15-6.diff;patch=1 \
file://bt950_cs.patch;patch=1 \
file://bluecard_cs.patch;patch=1 \
file://sharpsl_battery.patch;patch=1 \
file://irda-qos.patch;patch=1 \
file://buffered-fbmem.patch;patch=1 \
file://enable-sysrq.patch;patch=1 \
file://compile.patch;patch=1 \
file://idecs.patch;patch=1 \
file://logo.patch;patch=1 \
file://initsh.patch;patch=1 \
file://keyboard-ctrl+alt.patch;patch=1 \
file://keymap-more-sane.patch;patch=1 \
file://mkdep.patch;patch=1 \
file://logo-lang-link-fix.patch;patch=1 \
file://defconfig-${MACHINE}"
# apply this when we have a kernel that builds with gcc 3.x:
# SRC_URI_append = file://machtune-args.patch;patch=1
S = "${WORKDIR}/linux"
inherit kernel
#
# Compensate for sucky bootloader on all Sharp Zaurus models
#
FILES_kernel = ""
ALLOW_EMPTY = 1
EXTRA_OEMAKE = ""
KERNEL_CCSUFFIX = "-2.95"
KERNEL_LDSUFFIX = "-2.11.2"
COMPATIBLE_HOST = "arm.*-linux"
do_configure_prepend() {
install -m 0644 ${WORKDIR}/defconfig-${MACHINE} ${S}/.config || die "No default configuration for ${MACHINE} available."
}
|