summaryrefslogtreecommitdiffstats
path: root/meta/packages/hostap/hostap-conf_1.0.bb
diff options
context:
space:
mode:
authorRichard Purdie <richard@openedhand.com>2006-11-21 12:13:42 +0000
committerRichard Purdie <richard@openedhand.com>2006-11-21 12:13:42 +0000
commitb3b8d9ed94ea6cc713a4a0831bc3d5693c44429e (patch)
tree76436ec7d406c25bc9234916779cc682d99ec257 /meta/packages/hostap/hostap-conf_1.0.bb
parentf86905db21ac92fef46889e705f69e0aba6af8b8 (diff)
downloadpoky-b3b8d9ed94ea6cc713a4a0831bc3d5693c44429e.tar.gz
hostap: Sync with OE.dev
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@918 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/hostap/hostap-conf_1.0.bb')
-rw-r--r--meta/packages/hostap/hostap-conf_1.0.bb21
1 files changed, 20 insertions, 1 deletions
diff --git a/meta/packages/hostap/hostap-conf_1.0.bb b/meta/packages/hostap/hostap-conf_1.0.bb
index 1b0edf19cb..b95b3dd2c4 100644
--- a/meta/packages/hostap/hostap-conf_1.0.bb
+++ b/meta/packages/hostap/hostap-conf_1.0.bb
@@ -3,13 +3,32 @@ SECTION = "kernel/modules"
3PRIORITY = "optional" 3PRIORITY = "optional"
4LICENSE = "GPL" 4LICENSE = "GPL"
5PACKAGE_ARCH = "all" 5PACKAGE_ARCH = "all"
6PR = "r4" 6PR = "r8"
7 7
8SRC_URI = "file://hostap_cs.conf \ 8SRC_URI = "file://hostap_cs.conf \
9 file://hostap_cs.modalias \
9 file://hostap_cs.conf-upstream" 10 file://hostap_cs.conf-upstream"
10 11
12do_compile() {
13}
14
11do_install() { 15do_install() {
12 install -d ${D}${sysconfdir}/pcmcia 16 install -d ${D}${sysconfdir}/pcmcia
17 install -d ${D}${sysconfdir}/modutils
18
13 install -m 0644 ${WORKDIR}/hostap_cs.conf-upstream ${D}${sysconfdir}/pcmcia/hostap_cs.conf 19 install -m 0644 ${WORKDIR}/hostap_cs.conf-upstream ${D}${sysconfdir}/pcmcia/hostap_cs.conf
14 cat ${WORKDIR}/hostap_cs.conf >>${D}${sysconfdir}/pcmcia/hostap_cs.conf 20 cat ${WORKDIR}/hostap_cs.conf >>${D}${sysconfdir}/pcmcia/hostap_cs.conf
21
22 install -m 0644 ${WORKDIR}/hostap_cs.modalias ${D}${sysconfdir}/modutils/hostap_cs.conf
23}
24
25pkg_postinst () {
26 if [ -n "$D" ]; then
27 exit 1
28 fi
29 update-modules || true
30}
31
32pkg_postrm () {
33 update-modules || true
15} 34}