summaryrefslogtreecommitdiff
path: root/hostap/hostap-modules_0.2.0.oe
diff options
context:
space:
mode:
Diffstat (limited to 'hostap/hostap-modules_0.2.0.oe')
-rw-r--r--hostap/hostap-modules_0.2.0.oe23
1 files changed, 23 insertions, 0 deletions
diff --git a/hostap/hostap-modules_0.2.0.oe b/hostap/hostap-modules_0.2.0.oe
new file mode 100644
index 0000000000..751bd0afaa
--- /dev/null
+++ b/hostap/hostap-modules_0.2.0.oe
@@ -0,0 +1,23 @@
+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 \
+ file://hostap_cs.conf"
+S = "${WORKDIR}/hostap-driver-${PV}"
+
+inherit module
+
+MAKE_TARGETS = "hostap pccard"
+
+do_install() {
+ install -d ${D}/lib/modules/${KERNEL_VERSION}/net \
+ ${D}/lib/modules/${KERNEL_VERSION}/pcmcia \
+ ${D}/${sysconfdir}/pcmcia
+ install -m 0644 driver/modules/hostap_crypt_wep.o ${D}/lib/modules/${KERNEL_VERSION}/net/
+ install -m 0644 driver/modules/hostap.o ${D}/lib/modules/${KERNEL_VERSION}/net/
+ install -m 0644 driver/modules/hostap_cs.o ${D}/lib/modules/${KERNEL_VERSION}/pcmcia/
+ install -m 0644 ${WORKDIR}/hostap_cs.conf ${D}/${sysconfdir}/pcmcia/hostap_cs.conf
+}