mirror of
https://git.yoctoproject.org/poky
synced 2026-02-13 20:23:04 +01:00
After removal of auto-creating S we must ensure that all recipes are using a proper value for S. Fix all recipes that only need to set S equals to WORKDIR. [YOCTO #5627] (From OE-Core rev: 9d220b1bfe4589736604dd5a7129e3699377d830) Signed-off-by: Petter Mabäcker <petter@technux.se> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
24 lines
575 B
BlitzBasic
24 lines
575 B
BlitzBasic
SUMMARY = "Configuration files for HostAP (wifi) driver"
|
|
DESCRIPTION = "PCMCIA-cs configuration files for wireless LAN cards based on Intersil's Prism2/2.5/3 chipset."
|
|
SECTION = "kernel/modules"
|
|
LICENSE = "GPLv2"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=393a5ca445f6965873eca0259a17f833"
|
|
PR = "r15"
|
|
|
|
SRC_URI = "file://hostap_cs.modalias \
|
|
file://COPYING.patch"
|
|
|
|
inherit allarch
|
|
|
|
S = "${WORKDIR}"
|
|
|
|
do_compile() {
|
|
}
|
|
|
|
do_install() {
|
|
install -d ${D}${sysconfdir}/modprobe.d
|
|
|
|
install -m 0644 ${WORKDIR}/hostap_cs.modalias ${D}${sysconfdir}/modprobe.d/hostap_cs.conf
|
|
}
|
|
|