diff options
author | Chris Larson <clarson@kergoth.com> | 2004-03-13 05:42:36 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-03-13 05:42:36 +0000 |
commit | 06f7d17e81de21a95e35b03453242bc62b05a6aa (patch) | |
tree | bc9c53bce2c6a2fdce3caf5bb45bc3f8634b56be /orinoco | |
parent | 4b022a36ced4930af6bcdeb7d75a5ed10c4ac9cd (diff) |
First pass of .oe cleanups.
BKrev: 40529f4crFtRY5_1DubNmWhDeHSmPw
Diffstat (limited to 'orinoco')
-rw-r--r-- | orinoco/orinoco-modules_0.13e.oe | 25 | ||||
-rw-r--r-- | orinoco/orinoco-modules_20040301.oe | 21 |
2 files changed, 46 insertions, 0 deletions
diff --git a/orinoco/orinoco-modules_0.13e.oe b/orinoco/orinoco-modules_0.13e.oe index e69de29bb2..b44ce348e1 100644 --- a/orinoco/orinoco-modules_0.13e.oe +++ b/orinoco/orinoco-modules_0.13e.oe @@ -0,0 +1,25 @@ +DESCRIPTION = "A driver for wireless LAN cards based on Hermes(Orinoco) cards. \ +Also contains support for cards using downloadable firmware, i.e. the Symbol/Socket family." +SECTION = "base" +PRIORITY = "optional" +MAINTAINER = "Michael Lauer <mickey@Vanille.de>" +LICENSE = "GPL" + +SRC_URI = http://ozlabs.org/people/dgibson/dldwd/orinoco-${PV}.tar.gz; \ + file://${FILESDIR}/crosscompile.patch;patch=1 \ + file://${FILESDIR}/monitor-${PV}.patch;patch=1 +S = "${WORKDIR}/orinoco-${PV}" + +inherit module + +do_compile_prepend() { + cp -f ${FILESDIR}/spectrum* ${S}/ +} + +do_install() { + install -d ${D}/lib/modules/${KERNEL_VERSION}/kernel/drivers/net/wireless + install -d ${D}/etc/pcmcia + install -m 0755 *.o ${D}/lib/modules/${KERNEL_VERSION}/kernel/drivers/net/wireless/ + install -m 0644 spectrum.conf ${D}/etc/pcmcia/ + install -m 0644 hermes.conf ${D}/etc/pcmcia/ +} diff --git a/orinoco/orinoco-modules_20040301.oe b/orinoco/orinoco-modules_20040301.oe index e69de29bb2..1cedf32e58 100644 --- a/orinoco/orinoco-modules_20040301.oe +++ b/orinoco/orinoco-modules_20040301.oe @@ -0,0 +1,21 @@ +DESCRIPTION = "A driver for wireless LAN cards based on Hermes(Orinoco) cards. \ +Also contains support for cards using downloadable firmware, i.e. the Symbol/Socket family." +SECTION = "base" +PRIORITY = "optional" +MAINTAINER = "Michael Lauer <mickey@Vanille.de>" +LICENSE = "GPL" + +export CVS_RSH = ssh +SRC_URI = cvs://anoncvs@savannah.nongnu.org/cvsroot/orinoco;module=orinoco;date=${PV};method=ext \ + file://${FILESDIR}/compile.patch;patch=1 +S = "${WORKDIR}/orinoco" + +inherit module + +do_install() { + install -d ${D}/lib/modules/${KERNEL_VERSION}/kernel/drivers/net/wireless + install -d ${D}/etc/pcmcia + install -m 0755 *.o ${D}/lib/modules/${KERNEL_VERSION}/kernel/drivers/net/wireless/ + install -m 0644 ${FILESDIR}/spectrum.conf ${D}/etc/pcmcia/ + install -m 0644 hermes.conf ${D}/etc/pcmcia/ +} |