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 /hostap | |
parent | 4b022a36ced4930af6bcdeb7d75a5ed10c4ac9cd (diff) |
First pass of .oe cleanups.
BKrev: 40529f4crFtRY5_1DubNmWhDeHSmPw
Diffstat (limited to 'hostap')
-rw-r--r-- | hostap/hostap-modules_0.1.3.oe | 22 | ||||
-rw-r--r-- | hostap/hostap-modules_0.2.0.oe | 22 |
2 files changed, 44 insertions, 0 deletions
diff --git a/hostap/hostap-modules_0.1.3.oe b/hostap/hostap-modules_0.1.3.oe index e69de29bb2..4f9061707b 100644 --- a/hostap/hostap-modules_0.1.3.oe +++ b/hostap/hostap-modules_0.1.3.oe @@ -0,0 +1,22 @@ +DESCRIPTION = "A driver for wireless LAN cards based on Intersil's Prism2/2.5/3 chipset" +SECTION = "base" +PRIORITY = "optional" +MAINTAINER = "Michael Lauer <mickey@Vanille.de>" +LICENSE = "GPL" + +SRC_URI = http://hostap.epitest.fi/releases/hostap-driver-${PV}.tar.gz +S = "${WORKDIR}/hostap-driver-${PV}" + +inherit module + +MAKE_TARGETS = hostap pccard + +do_install() { + install -d ${D}/lib/modules/${KERNEL_VERSION}/{net,pcmcia} + install -d ${D}/etc/pcmcia + install -m 0755 driver/modules/hostap_crypt_wep.o ${D}/lib/modules/${KERNEL_VERSION}/net/ + install -m 0755 driver/modules/hostap.o ${D}/lib/modules/${KERNEL_VERSION}/net/ + install -m 0755 driver/modules/hostap_cs.o ${D}/lib/modules/${KERNEL_VERSION}/pcmcia/ + install -m 0644 ${FILESDIR}/hostap_cs.conf ${D}/etc/pcmcia/hostap_cs.conf +} + diff --git a/hostap/hostap-modules_0.2.0.oe b/hostap/hostap-modules_0.2.0.oe index e69de29bb2..4f9061707b 100644 --- a/hostap/hostap-modules_0.2.0.oe +++ b/hostap/hostap-modules_0.2.0.oe @@ -0,0 +1,22 @@ +DESCRIPTION = "A driver for wireless LAN cards based on Intersil's Prism2/2.5/3 chipset" +SECTION = "base" +PRIORITY = "optional" +MAINTAINER = "Michael Lauer <mickey@Vanille.de>" +LICENSE = "GPL" + +SRC_URI = http://hostap.epitest.fi/releases/hostap-driver-${PV}.tar.gz +S = "${WORKDIR}/hostap-driver-${PV}" + +inherit module + +MAKE_TARGETS = hostap pccard + +do_install() { + install -d ${D}/lib/modules/${KERNEL_VERSION}/{net,pcmcia} + install -d ${D}/etc/pcmcia + install -m 0755 driver/modules/hostap_crypt_wep.o ${D}/lib/modules/${KERNEL_VERSION}/net/ + install -m 0755 driver/modules/hostap.o ${D}/lib/modules/${KERNEL_VERSION}/net/ + install -m 0755 driver/modules/hostap_cs.o ${D}/lib/modules/${KERNEL_VERSION}/pcmcia/ + install -m 0644 ${FILESDIR}/hostap_cs.conf ${D}/etc/pcmcia/hostap_cs.conf +} + |