diff options
author | Chris Larson <clarson@kergoth.com> | 2004-03-22 22:37:29 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-03-22 22:37:29 +0000 |
commit | f249735ad71fd5f13bfd295c55e1e0d596a1dbff (patch) | |
tree | 93735f3e25beab7ac8bf066c504df17b244db4eb /hostap/hostap-modules_0.2.0.oe | |
parent | 11ebfcef190cf217f67fa2b79adee0f58f9718f3 (diff) |
Another pass of .oe cleanups.
BKrev: 405f6aa92YDm0pQN4padj00WWayDrQ
Diffstat (limited to 'hostap/hostap-modules_0.2.0.oe')
-rw-r--r-- | hostap/hostap-modules_0.2.0.oe | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/hostap/hostap-modules_0.2.0.oe b/hostap/hostap-modules_0.2.0.oe index 4f9061707b..8666d610dd 100644 --- a/hostap/hostap-modules_0.2.0.oe +++ b/hostap/hostap-modules_0.2.0.oe @@ -4,19 +4,19 @@ 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" S = "${WORKDIR}/hostap-driver-${PV}" inherit module -MAKE_TARGETS = hostap pccard +MAKE_TARGETS = "hostap pccard" do_install() { install -d ${D}/lib/modules/${KERNEL_VERSION}/{net,pcmcia} - install -d ${D}/etc/pcmcia + install -d ${D}/${sysconfdir}/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 + install -m 0644 ${FILESDIR}/hostap_cs.conf ${D}/${sysconfdir}/pcmcia/hostap_cs.conf } |