diff options
author | Richard Purdie <richard@openedhand.com> | 2006-11-21 12:13:42 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2006-11-21 12:13:42 +0000 |
commit | b3b8d9ed94ea6cc713a4a0831bc3d5693c44429e (patch) | |
tree | 76436ec7d406c25bc9234916779cc682d99ec257 /meta/packages/hostap/hostap-conf_1.0.bb | |
parent | f86905db21ac92fef46889e705f69e0aba6af8b8 (diff) | |
download | poky-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.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 | } |