mirror of
https://git.yoctoproject.org/poky
synced 2026-09-24 13:36:22 +02:00
As discussed on the mailing list, this variable isn't useful and if wanted would be better implemented by distros using pn-X overrides. This patch executes: find . -regex ".*\.\(bb\|inc\)$" | xargs sed -i '/^PRIORITY = ".*"$/d' against the tree removing the referenced. Thanks to Phil Blundell for the command. (From OE-Core rev: d122343362669c683acc4af295971a62cbc823fc) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
28 lines
613 B
BlitzBasic
28 lines
613 B
BlitzBasic
DESCRIPTION = "PCMCIA-cs configuration files for Hermes (Orinoco) wireless LAN cards"
|
|
SECTION = "kernel/modules"
|
|
LICENSE = "GPLv2"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=393a5ca445f6965873eca0259a17f833"
|
|
RDEPENDS_${PN} = "update-modules"
|
|
PR = "r7"
|
|
|
|
SRC_URI = "file://orinoco_cs.conf \
|
|
file://COPYING.patch"
|
|
|
|
inherit allarch
|
|
|
|
do_install() {
|
|
install -d ${D}${sysconfdir}/modutils
|
|
install -m 0644 ${WORKDIR}/orinoco_cs.conf ${D}${sysconfdir}/modutils/
|
|
}
|
|
|
|
pkg_postinst_${PN} () {
|
|
if [ -n "$D" ]; then
|
|
exit 1
|
|
fi
|
|
update-modules || true
|
|
}
|
|
|
|
pkg_postrm_${PN} () {
|
|
update-modules || true
|
|
}
|