blob: 89fe1df28f27b380234c7f6a80301108816ad24e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
DESCRIPTION = "PCMCIA-cs configuration files for Hermes (Orinoco) wireless LAN cards"
SECTION = "kernel/modules"
PRIORITY = "optional"
LICENSE = "GPL"
RDEPENDS = "update-modules"
PACKAGE_ARCH = "all"
PR = "r4"
SRC_URI = "file://orinoco_cs.conf"
do_install() {
install -d ${D}${sysconfdir}/modutils
install -m 0644 ${WORKDIR}/orinoco_cs.conf ${D}${sysconfdir}/modutils/
}
pkg_postinst () {
if [ -n "$D" ]; then
exit 1
fi
update-modules || true
}
pkg_postrm () {
update-modules || true
}
|