diff options
author | Michael Lauer <mickey@vanille-media.de> | 2004-07-17 16:54:51 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2004-07-17 16:54:51 +0000 |
commit | fd832a9ef47459247e612a89cbb96ef517c3869a (patch) | |
tree | 765c23e6aa70306c683c899011af01001f0a93aa /linux/montavista-sa_2.4.17-mvl21.oe | |
parent | e597f2e7ce7e07169167331432ac50a05ab4f23d (diff) |
Merge bk://openembedded@openembedded.bkbits.net/packages
into allanon.vanille.de:/usr/local/projects/packages
2004/07/17 18:53:57+02:00 vanille.de!mickeyl
correct jffs2 for beagle
BKrev: 40f959dbv_QEJsiOdQL8QQmgUfTfPg
Diffstat (limited to 'linux/montavista-sa_2.4.17-mvl21.oe')
-rw-r--r-- | linux/montavista-sa_2.4.17-mvl21.oe | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/linux/montavista-sa_2.4.17-mvl21.oe b/linux/montavista-sa_2.4.17-mvl21.oe index e69de29bb2..fe006e2813 100644 --- a/linux/montavista-sa_2.4.17-mvl21.oe +++ b/linux/montavista-sa_2.4.17-mvl21.oe @@ -0,0 +1,33 @@ +DESCRIPTION = "Linux kernel for the MASTERIA PA-100 device." +MAINTAINER = "Michael 'Mickey' Lauer <mickey@Vanille.de>" +LICENSE = "GPL" +KV = "${@oe.data.getVar('PV',d,True).split('-')[0]}" +MVLV = "${@oe.data.getVar('PV',d,True).split('-')[1]}" +PR = "r2" + +FILESDIR = "${@os.path.dirname(oe.data.getVar('FILE',d,1))}/montavista-sa-${PV}" + +SRC_URI = "http://www.vanille.de/mirror/linux-${KV}_${MVLV}.tar.gz \ + file://iw_handlers.w13-5.diff;patch=1 \ + file://iw_handlers.w14-5.diff;patch=1 \ + file://iw240_we15-6.diff;patch=1 \ + \ + file://flash-for-beagle-iii.patch;patch=1 \ + \ + file://mkdep.patch;patch=1 \ + file://defconfig-${MACHINE}" + +S = "${WORKDIR}/linux-${KV}_${MVLV}" + +inherit kernel + +KERNEL_CCSUFFIX = "-2.95" +KERNEL_LDSUFFIX = "-2.11.2" +COMPATIBLE_HOST = "arm.*-linux" + +EXTRA_OEMAKE = "" + +do_configure_prepend() { + install -m 0644 ${WORKDIR}/defconfig-${MACHINE} ${S}/.config || die "No default configuration for ${MACHINE} available." +} + |