diff options
author | Chris Larson <clarson@kergoth.com> | 2004-05-22 16:47:36 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-05-22 16:47:36 +0000 |
commit | 2b8f679ffe5929b5a11eb71e514aa4997c36f13e (patch) | |
tree | cab0f25aca03f6162bd268a401945fbfbb63bff9 /hostap | |
parent | 5df179157f90b18f437c6978efb451f515e3d1c9 (diff) |
Merges.
2004/05/22 12:46:48-04:00 local!kergoth
Bugfixes per the recent FILESDIR cleanup.
2004/05/22 01:03:38-04:00 local!kergoth
Run a perl script against the repo to kill off direct FILESDIR usage
in favor of relative file:// paths in SRC_URI, and WORKDIR references
in functions.
2004/05/21 23:07:58-04:00 local!kergoth
Switch file:// FILESDIR uris in SRC_URI to the new relative path format.
BKrev: 40af8428aNyDLBX0MRtyso3VCpMv1w
Diffstat (limited to 'hostap')
-rw-r--r-- | hostap/hostap-modules_0.1.3.oe | 6 | ||||
-rw-r--r-- | hostap/hostap-modules_0.2.0.oe | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/hostap/hostap-modules_0.1.3.oe b/hostap/hostap-modules_0.1.3.oe index d7fbd0ae92..5e8908547e 100644 --- a/hostap/hostap-modules_0.1.3.oe +++ b/hostap/hostap-modules_0.1.3.oe @@ -4,7 +4,8 @@ PRIORITY = "optional" MAINTAINER = "Michael Lauer <mickey@Vanille.de>" LICENSE = "GPL" -SRC_URI = "http://hostap.epitest.fi/releases/hostap-driver-${PV}.tar.gz" +SRC_URI = "http://hostap.epitest.fi/releases/hostap-driver-${PV}.tar.gz \ + file://hostap_cs.conf" S = "${WORKDIR}/hostap-driver-${PV}" inherit module @@ -18,6 +19,5 @@ do_install() { 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}/${sysconfdir}/pcmcia/hostap_cs.conf + install -m 0644 ${WORKDIR}/hostap_cs.conf ${D}/${sysconfdir}/pcmcia/hostap_cs.conf } - diff --git a/hostap/hostap-modules_0.2.0.oe b/hostap/hostap-modules_0.2.0.oe index d7fbd0ae92..5e8908547e 100644 --- a/hostap/hostap-modules_0.2.0.oe +++ b/hostap/hostap-modules_0.2.0.oe @@ -4,7 +4,8 @@ PRIORITY = "optional" MAINTAINER = "Michael Lauer <mickey@Vanille.de>" LICENSE = "GPL" -SRC_URI = "http://hostap.epitest.fi/releases/hostap-driver-${PV}.tar.gz" +SRC_URI = "http://hostap.epitest.fi/releases/hostap-driver-${PV}.tar.gz \ + file://hostap_cs.conf" S = "${WORKDIR}/hostap-driver-${PV}" inherit module @@ -18,6 +19,5 @@ do_install() { 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}/${sysconfdir}/pcmcia/hostap_cs.conf + install -m 0644 ${WORKDIR}/hostap_cs.conf ${D}/${sysconfdir}/pcmcia/hostap_cs.conf } - |