diff options
Diffstat (limited to 'recipes/hostap/hostap-conf_1.0.bb')
-rw-r--r-- | recipes/hostap/hostap-conf_1.0.bb | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/recipes/hostap/hostap-conf_1.0.bb b/recipes/hostap/hostap-conf_1.0.bb new file mode 100644 index 0000000000..e0909dde3f --- /dev/null +++ b/recipes/hostap/hostap-conf_1.0.bb @@ -0,0 +1,35 @@ +DESCRIPTION = "PCMCIA-cs configuration files for wireless LAN cards based on Intersil's Prism2/2.5/3 chipset" +SECTION = "kernel/modules" +PRIORITY = "optional" +LICENSE = "GPL" +RDEPENDS = "update-modules" +PACKAGE_ARCH = "all" +PR = "r9" + +SRC_URI = "file://hostap_cs.conf \ + file://hostap_cs.modalias \ + file://hostap_cs.conf-upstream" + +do_compile() { +} + +do_install() { + install -d ${D}${sysconfdir}/pcmcia + install -d ${D}${sysconfdir}/modutils + + install -m 0644 ${WORKDIR}/hostap_cs.conf-upstream ${D}${sysconfdir}/pcmcia/hostap_cs.conf + cat ${WORKDIR}/hostap_cs.conf >>${D}${sysconfdir}/pcmcia/hostap_cs.conf + + install -m 0644 ${WORKDIR}/hostap_cs.modalias ${D}${sysconfdir}/modutils/hostap_cs.conf +} + +pkg_postinst () { + if [ -n "$D" ]; then + exit 1 + fi + update-modules || true +} + +pkg_postrm () { + update-modules || true +} |