mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-04-02 02:49:12 +00:00
Since there are no sources being fetched, set S to UNPACKDIR to fix:
| WARNING: wowlan-udev-1.0-r0 do_unpack: wowlan-udev: the directory
| ${UNPACKDIR}/${BP} ... pointed to by the S variable doesn't exist
| - please set S within the recipe to point to where the source has
| been unpacked to.
Signed-off-by: Anuj Mittal <anuj.mittal@oss.qualcomm.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
17 lines
434 B
BlitzBasic
17 lines
434 B
BlitzBasic
SUMMARY = "Enable WoWLAN via udev on Wi-Fi PHY registration"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
|
|
|
|
SRC_URI = "file://99-wowlan.rules"
|
|
|
|
S = "${UNPACKDIR}"
|
|
|
|
do_install() {
|
|
install -d ${D}${sysconfdir}/udev/rules.d
|
|
install -m 0644 ${UNPACKDIR}/99-wowlan.rules \
|
|
${D}${sysconfdir}/udev/rules.d/
|
|
}
|
|
|
|
INHIBIT_DEFAULT_DEPS = "1"
|
|
RDEPENDS:${PN} = "iw udev"
|