diff options
author | Michael Lauer <mickey@vanille-media.de> | 2004-12-13 13:56:34 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2004-12-13 13:56:34 +0000 |
commit | dc7c0ef93655469e49784567dee30d512cb25915 (patch) | |
tree | 01b5c9b854a3fbeadf0188c3ac16ffc662973e33 /packages/hostap/hostap-modules_0.2.5.bb | |
parent | 22f91df4f55e0ffa9dd988a697247158e615f892 (diff) |
Merge bk://oe-devel@oe-devel.bkbits.net/openembedded
into r2d2.tm.informatik.uni-frankfurt.de:/local/pkg/oe/packages
2004/12/12 16:51:09+01:00 uni-frankfurt.de!mickeyl
cpio: fix section
2004/12/12 16:50:40+01:00 uni-frankfurt.de!mickeyl
ctorrent: add license and fix section
2004/12/12 15:48:05+01:00 uni-frankfurt.de!mickeyl
add netgear ma701 to hostap_cs.conf
BKrev: 41bd9f92iZOrYKjgTLiF60Wi2hL76w
Diffstat (limited to 'packages/hostap/hostap-modules_0.2.5.bb')
-rw-r--r-- | packages/hostap/hostap-modules_0.2.5.bb | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/packages/hostap/hostap-modules_0.2.5.bb b/packages/hostap/hostap-modules_0.2.5.bb index e69de29bb2..4c03405042 100644 --- a/packages/hostap/hostap-modules_0.2.5.bb +++ b/packages/hostap/hostap-modules_0.2.5.bb @@ -0,0 +1,59 @@ +DESCRIPTION = "A driver for wireless LAN cards based on Intersil's Prism2/2.5/3 chipset" +HOMEPAGE = "http://hostap.epitest.fi" +SECTION = "kernel/modules" +PRIORITY = "optional" +MAINTAINER = "Michael 'Mickey' Lauer <mickey@Vanille.de>" +LICENSE = "GPL" +PR = "r6" + +SRC_URI = "http://hostap.epitest.fi/releases/hostap-driver-${PV}.tar.gz \ + file://hostap_cs.conf \ + file://Makefile.patch;patch=1" +SRC_URI_append_mtx-1 = " file://mtx_compat.diff;patch=1;pnum=0 \ + file://mtx_hostap_deferred_irq.diff;patch=1;pnum=0" + +S = "${WORKDIR}/hostap-driver-${PV}" + +inherit module + +EXTRA_OEMAKE = "EXTRA_CFLAGS='-DPRISM2_NON_VOLATILE_DOWNLOAD'" +MAKE_TARGETS = "KERNEL_PATH=${KERNEL_SOURCE} MAKE='make -e'" +NET_MODULES = "hostap.o hostap_pci.o hostap_crypt_ccmp.o hostap_crypt_tkip.o hostap_crypt_wep.o" + +do_install() { + install -d ${D}/lib/modules/${KERNEL_VERSION}/net \ + ${D}/lib/modules/${KERNEL_VERSION}/pcmcia \ + ${D}/${sysconfdir}/pcmcia + for i in ${NET_MODULES} + do + install -m 0644 driver/modules/$i ${D}/lib/modules/${KERNEL_VERSION}/net/ + done + install -m 0644 driver/modules/hostap_cs.o ${D}/lib/modules/${KERNEL_VERSION}/pcmcia/ + install -m 0644 driver/etc/hostap_cs.conf ${D}/${sysconfdir}/pcmcia/hostap_cs.conf + cat ${WORKDIR}/hostap_cs.conf >>${D}/${sysconfdir}/pcmcia/hostap_cs.conf + + if [ "${MACHINE}" = "mtx-1" ]; then + install -d ${D}/etc/modutils + echo "hostap_pci" > ${D}/etc/modutils/hostap + fi +} + +pkg_postinst_hostap-modules-pci() { +#!/bin/sh +if [ "x$D" != "x" ]; then + exit 1 +fi +update-modules || true +} + +pkg_postrm_hostap-modules-pci() { +#!/bin/sh +update-modules || true +} + +PACKAGES = "hostap-modules-cs hostap-modules-pci hostap-modules" +FILES_hostap-modules-cs = "/lib/modules/${KERNEL_VERSION}/pcmcia/ /${sysconfdir}/pcmcia/" +FILES_hostap-modules-pci = "/etc/modutils /lib/modules/${KERNEL_VERSION}/net/hostap_pci.o" +FILES_hostap-modules = "/lib/modules/" +RDEPENDS_hostap-modules-cs = "hostap-modules" +RDEPENDS_hostap-modules-pci = "hostap-modules" |