summaryrefslogtreecommitdiffstats
path: root/meta/packages/hostap/hostap-conf_1.0.bb
diff options
context:
space:
mode:
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}