diff options
author | Chris Larson <clarson@kergoth.com> | 2004-05-22 16:47:36 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-05-22 16:47:36 +0000 |
commit | 2b8f679ffe5929b5a11eb71e514aa4997c36f13e (patch) | |
tree | cab0f25aca03f6162bd268a401945fbfbb63bff9 /linux/openzaurus-tosa_2.4.18-rmk7-pxa3-embedix20040311.oe | |
parent | 5df179157f90b18f437c6978efb451f515e3d1c9 (diff) |
Merges.
2004/05/22 12:46:48-04:00 local!kergoth
Bugfixes per the recent FILESDIR cleanup.
2004/05/22 01:03:38-04:00 local!kergoth
Run a perl script against the repo to kill off direct FILESDIR usage
in favor of relative file:// paths in SRC_URI, and WORKDIR references
in functions.
2004/05/21 23:07:58-04:00 local!kergoth
Switch file:// FILESDIR uris in SRC_URI to the new relative path format.
BKrev: 40af8428aNyDLBX0MRtyso3VCpMv1w
Diffstat (limited to 'linux/openzaurus-tosa_2.4.18-rmk7-pxa3-embedix20040311.oe')
-rw-r--r-- | linux/openzaurus-tosa_2.4.18-rmk7-pxa3-embedix20040311.oe | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/linux/openzaurus-tosa_2.4.18-rmk7-pxa3-embedix20040311.oe b/linux/openzaurus-tosa_2.4.18-rmk7-pxa3-embedix20040311.oe index e69de29bb2..30ccbff071 100644 --- a/linux/openzaurus-tosa_2.4.18-rmk7-pxa3-embedix20040311.oe +++ b/linux/openzaurus-tosa_2.4.18-rmk7-pxa3-embedix20040311.oe @@ -0,0 +1,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." +} |