diff options
Diffstat (limited to 'meta/packages/hostap/hostap-conf_1.0.bb')
-rw-r--r-- | meta/packages/hostap/hostap-conf_1.0.bb | 21 |
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" | |||
3 | PRIORITY = "optional" | 3 | PRIORITY = "optional" |
4 | LICENSE = "GPL" | 4 | LICENSE = "GPL" |
5 | PACKAGE_ARCH = "all" | 5 | PACKAGE_ARCH = "all" |
6 | PR = "r4" | 6 | PR = "r8" |
7 | 7 | ||
8 | SRC_URI = "file://hostap_cs.conf \ | 8 | SRC_URI = "file://hostap_cs.conf \ |
9 | file://hostap_cs.modalias \ | ||
9 | file://hostap_cs.conf-upstream" | 10 | file://hostap_cs.conf-upstream" |
10 | 11 | ||
12 | do_compile() { | ||
13 | } | ||
14 | |||
11 | do_install() { | 15 | do_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 | |||
25 | pkg_postinst () { | ||
26 | if [ -n "$D" ]; then | ||
27 | exit 1 | ||
28 | fi | ||
29 | update-modules || true | ||
30 | } | ||
31 | |||
32 | pkg_postrm () { | ||
33 | update-modules || true | ||
15 | } | 34 | } |