diff options
author | Laurentiu Palcu <laurentiu.palcu@intel.com> | 2013-01-17 16:58:44 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-01-18 13:28:07 +0000 |
commit | 950704e392b7888aa6a49fd4273c2eca8b9b6c1e (patch) | |
tree | 6e30fdbf57c3f8cbb6892518da57b26f9b844304 /meta | |
parent | 36a64307274c5940332ceb139d2b4eff33663e29 (diff) | |
download | poky-950704e392b7888aa6a49fd4273c2eca8b9b6c1e.tar.gz |
orinoco-conf: remove dependencies of update-modules
Since update-modules became obsolete, no need for these dependencies.
Also:
* install the conf files in the modprobe.d directory. /etc/modutils is
also obsolete;
* remove postinst/postrm scriptlets since they ran update-modules and
this is just an alias file;
[YOCTO #3598]
(From OE-Core rev: ab262d33993c223ec193786951d43d13ca6691e0)
Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-bsp/orinoco/orinoco-conf_1.0.bb | 17 |
1 files changed, 3 insertions, 14 deletions
diff --git a/meta/recipes-bsp/orinoco/orinoco-conf_1.0.bb b/meta/recipes-bsp/orinoco/orinoco-conf_1.0.bb index 57e746bf2b..4be9277cce 100644 --- a/meta/recipes-bsp/orinoco/orinoco-conf_1.0.bb +++ b/meta/recipes-bsp/orinoco/orinoco-conf_1.0.bb | |||
@@ -2,8 +2,7 @@ DESCRIPTION = "PCMCIA-cs configuration files for Hermes (Orinoco) wireless LAN c | |||
2 | SECTION = "kernel/modules" | 2 | SECTION = "kernel/modules" |
3 | LICENSE = "GPLv2" | 3 | LICENSE = "GPLv2" |
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=393a5ca445f6965873eca0259a17f833" | 4 | LIC_FILES_CHKSUM = "file://COPYING;md5=393a5ca445f6965873eca0259a17f833" |
5 | RDEPENDS_${PN} = "update-modules" | 5 | PR = "r8" |
6 | PR = "r7" | ||
7 | 6 | ||
8 | SRC_URI = "file://orinoco_cs.conf \ | 7 | SRC_URI = "file://orinoco_cs.conf \ |
9 | file://COPYING.patch" | 8 | file://COPYING.patch" |
@@ -11,17 +10,7 @@ SRC_URI = "file://orinoco_cs.conf \ | |||
11 | inherit allarch | 10 | inherit allarch |
12 | 11 | ||
13 | do_install() { | 12 | do_install() { |
14 | install -d ${D}${sysconfdir}/modutils | 13 | install -d ${D}${sysconfdir}/modprobe.d |
15 | install -m 0644 ${WORKDIR}/orinoco_cs.conf ${D}${sysconfdir}/modutils/ | 14 | install -m 0644 ${WORKDIR}/orinoco_cs.conf ${D}${sysconfdir}/modprobe.d/ |
16 | } | 15 | } |
17 | 16 | ||
18 | pkg_postinst_${PN} () { | ||
19 | if [ -n "$D" ]; then | ||
20 | exit 1 | ||
21 | fi | ||
22 | update-modules || true | ||
23 | } | ||
24 | |||
25 | pkg_postrm_${PN} () { | ||
26 | update-modules || true | ||
27 | } | ||