diff options
| -rw-r--r-- | openembedded/packages/hostap/hostap-modules.inc | 17 | ||||
| -rw-r--r-- | openembedded/packages/hostap/hostap-modules_0.3.9.bb | 2 | ||||
| -rw-r--r-- | openembedded/packages/hostap/hostap-utils.inc | 2 |
3 files changed, 8 insertions, 13 deletions
diff --git a/openembedded/packages/hostap/hostap-modules.inc b/openembedded/packages/hostap/hostap-modules.inc index 72f2dc2da3..5ce5e0db67 100644 --- a/openembedded/packages/hostap/hostap-modules.inc +++ b/openembedded/packages/hostap/hostap-modules.inc | |||
| @@ -3,13 +3,12 @@ SECTION = "kernel/modules" | |||
| 3 | PRIORITY = "optional" | 3 | PRIORITY = "optional" |
| 4 | MAINTAINER = "Michael 'Mickey' Lauer <mickey@Vanille.de>" | 4 | MAINTAINER = "Michael 'Mickey' Lauer <mickey@Vanille.de>" |
| 5 | LICENSE = "GPL" | 5 | LICENSE = "GPL" |
| 6 | PROVIDES = "hostap-conf" | ||
| 7 | RPROVIDES = "virtual/kernel-hostap" | ||
| 8 | 6 | ||
| 9 | SRC_URI = "http://hostap.epitest.fi/releases/hostap-driver-${PV}.tar.gz \ | 7 | SRC_URI = "http://hostap.epitest.fi/releases/hostap-driver-${PV}.tar.gz" |
| 10 | file://hostap_cs.conf" | 8 | |
| 11 | SRC_URI_append_mtx-1 = " file://mtx_compat.diff;patch=1;pnum=0 \ | 9 | SRC_URI_append_mtx-1 = " file://mtx_compat.diff;patch=1;pnum=0 \ |
| 12 | file://mtx_hostap_deferred_irq.diff;patch=1;pnum=0" | 10 | file://mtx_hostap_deferred_irq.diff;patch=1;pnum=0" |
| 11 | |||
| 13 | SRC_URI_append_h3900 = " file://ipaq_compat.patch;patch=1 " | 12 | SRC_URI_append_h3900 = " file://ipaq_compat.patch;patch=1 " |
| 14 | 13 | ||
| 15 | S = "${WORKDIR}/hostap-driver-${PV}" | 14 | S = "${WORKDIR}/hostap-driver-${PV}" |
| @@ -24,21 +23,17 @@ NET_MODULES = "hostap hostap_pci hostap_crypt_ccmp hostap_crypt_tkip hostap_cryp | |||
| 24 | 23 | ||
| 25 | do_install() { | 24 | do_install() { |
| 26 | install -d ${D}${base_libdir}/modules/${KERNEL_VERSION}/net \ | 25 | install -d ${D}${base_libdir}/modules/${KERNEL_VERSION}/net \ |
| 27 | ${D}${base_libdir}/modules/${KERNEL_VERSION}/pcmcia \ | 26 | ${D}${base_libdir}/modules/${KERNEL_VERSION}/pcmcia |
| 28 | ${D}${sysconfdir}/pcmcia | ||
| 29 | for i in ${NET_MODULES} | 27 | for i in ${NET_MODULES} |
| 30 | do | 28 | do |
| 31 | install -m 0644 driver/modules/$i${KERNEL_OBJECT_SUFFIX} ${D}${base_libdir}/modules/${KERNEL_VERSION}/net/ | 29 | install -m 0644 driver/modules/$i${KERNEL_OBJECT_SUFFIX} ${D}${base_libdir}/modules/${KERNEL_VERSION}/net/ |
| 32 | done | 30 | done |
| 33 | install -m 0644 driver/modules/hostap_cs${KERNEL_OBJECT_SUFFIX} ${D}${base_libdir}/modules/${KERNEL_VERSION}/pcmcia/ | 31 | install -m 0644 driver/modules/hostap_cs${KERNEL_OBJECT_SUFFIX} ${D}${base_libdir}/modules/${KERNEL_VERSION}/pcmcia/ |
| 34 | install -m 0644 driver/etc/hostap_cs.conf ${D}${sysconfdir}/pcmcia/hostap_cs.conf | ||
| 35 | cat ${WORKDIR}/hostap_cs.conf >>${D}${sysconfdir}/pcmcia/hostap_cs.conf | ||
| 36 | } | 32 | } |
| 37 | 33 | ||
| 38 | PACKAGES = "hostap-modules-cs hostap-modules-pci hostap-modules" | 34 | PACKAGES = "hostap-modules-cs hostap-modules-pci hostap-modules" |
| 39 | FILES_hostap-modules-cs = "/lib/modules/${KERNEL_VERSION}/pcmcia/ /${sysconfdir}/pcmcia/" | 35 | FILES_hostap-modules-cs = "/lib/modules/${KERNEL_VERSION}/pcmcia/ /${sysconfdir}/pcmcia/" |
| 40 | FILES_hostap-modules-pci = "/lib/modules/${KERNEL_VERSION}/net/hostap_pci${KERNEL_OBJECT_SUFFIX}" | 36 | FILES_hostap-modules-pci = "/lib/modules/${KERNEL_VERSION}/net/hostap_pci${KERNEL_OBJECT_SUFFIX}" |
| 41 | FILES_hostap-modules = "/lib/modules/" | 37 | FILES_hostap-modules = "/lib/modules/" |
| 42 | RDEPENDS_hostap-modules-cs = "hostap-modules" | 38 | RDEPENDS_hostap-modules-cs = "hostap-modules (${PV}) hostap-conf" |
| 43 | RDEPENDS_hostap-modules-pci = "hostap-modules" | 39 | RDEPENDS_hostap-modules-pci = "hostap-modules (${PV})" |
| 44 | RPROVIDES_hostap-modules-cs = "hostap-conf" | ||
diff --git a/openembedded/packages/hostap/hostap-modules_0.3.9.bb b/openembedded/packages/hostap/hostap-modules_0.3.9.bb index 508c653230..cc09fd5952 100644 --- a/openembedded/packages/hostap/hostap-modules_0.3.9.bb +++ b/openembedded/packages/hostap/hostap-modules_0.3.9.bb | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | include hostap-modules.inc | 1 | include hostap-modules.inc |
| 2 | PR = "r9" | 2 | PR = "r10" |
| 3 | 3 | ||
| 4 | SRC_URI += "file://Makefile.patch;patch=1 \ | 4 | SRC_URI += "file://Makefile.patch;patch=1 \ |
| 5 | file://add_event.patch;patch=1 \ | 5 | file://add_event.patch;patch=1 \ |
diff --git a/openembedded/packages/hostap/hostap-utils.inc b/openembedded/packages/hostap/hostap-utils.inc index c5c5d5b3f9..1e4362d0f7 100644 --- a/openembedded/packages/hostap/hostap-utils.inc +++ b/openembedded/packages/hostap/hostap-utils.inc | |||
| @@ -4,7 +4,7 @@ SECTION = "kernel/userland" | |||
| 4 | PRIORITY = "optional" | 4 | PRIORITY = "optional" |
| 5 | MAINTAINER = "Michael 'Mickey' Lauer <mickey@Vanille.de>" | 5 | MAINTAINER = "Michael 'Mickey' Lauer <mickey@Vanille.de>" |
| 6 | LICENSE = "GPL" | 6 | LICENSE = "GPL" |
| 7 | RRECOMMENDS = "virtual/kernel-hostap" | 7 | RRECOMMENDS = "hostap-modules" |
| 8 | PR = "r3" | 8 | PR = "r3" |
| 9 | 9 | ||
| 10 | SRC_URI = "http://hostap.epitest.fi/releases/hostap-utils-${PV}.tar.gz \ | 10 | SRC_URI = "http://hostap.epitest.fi/releases/hostap-utils-${PV}.tar.gz \ |
