summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-connectivity/iwd/iwd_0.18.bb
diff options
context:
space:
mode:
authorAlex Kiernan <alex.kiernan@gmail.com>2019-07-11 09:42:19 +0100
committerKhem Raj <raj.khem@gmail.com>2019-07-11 14:01:28 -0700
commitb0f86ee5a98d197afe32f1325d92ea2fa2e4b56d (patch)
treeee6bb1c096c4492f83535f7169531e6afbe5aed6 /meta-oe/recipes-connectivity/iwd/iwd_0.18.bb
parent8bc18c5d45b781fb1f37c3574a0b2a02f048ef1a (diff)
downloadmeta-openembedded-b0f86ee5a98d197afe32f1325d92ea2fa2e4b56d.tar.gz
iwd: update to 0.18
Also add RRECOMMENDS for asymmetric crypto modules. Signed-off-by: Alex Kiernan <alex.kiernan@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-connectivity/iwd/iwd_0.18.bb')
-rw-r--r--meta-oe/recipes-connectivity/iwd/iwd_0.18.bb37
1 files changed, 37 insertions, 0 deletions
diff --git a/meta-oe/recipes-connectivity/iwd/iwd_0.18.bb b/meta-oe/recipes-connectivity/iwd/iwd_0.18.bb
new file mode 100644
index 0000000000..f56c88b821
--- /dev/null
+++ b/meta-oe/recipes-connectivity/iwd/iwd_0.18.bb
@@ -0,0 +1,37 @@
1DESCRIPTION = "Wireless daemon for Linux"
2LICENSE = "LGPL-2.1"
3LIC_FILES_CHKSUM = "file://COPYING;md5=fb504b67c50331fc78734fed90fb0e09"
4
5inherit autotools pkgconfig systemd
6
7DEPENDS = "ell readline dbus"
8
9SRC_URI = "git://git.kernel.org/pub/scm/network/wireless/iwd.git"
10SRCREV = "c923448bacf8a855b40017fe53ba2edcd062eec1"
11S = "${WORKDIR}/git"
12
13PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'systemd', d)}"
14PACKAGECONFIG[wired] = "--enable-wired,--disable-wired"
15PACKAGECONFIG[ofono] = "--enable-ofono,--disable-ofono"
16PACKAGECONFIG[systemd] = "--with-systemd-unitdir=${systemd_system_unitdir},--disable-systemd-service,systemd"
17
18EXTRA_OECONF += "--enable-external-ell"
19
20do_configure_prepend () {
21 mkdir -p ${S}/build-aux
22}
23
24do_install_append() {
25 mkdir --parents ${D}${docdir}/${BPN}
26 install -m644 ${S}/doc/*.txt ${D}${docdir}/${BPN}
27}
28
29FILES_${PN} += "${datadir}/dbus-1 ${libdir}/modules-load.d"
30
31SYSTEMD_SERVICE_${PN} = "iwd.service ${@bb.utils.contains('PACKAGECONFIG', 'wired', 'ead.service', '', d)}"
32
33RRECOMMENDS_${PN} = "\
34 kernel-module-pkcs7-message \
35 kernel-module-pkcs8-key-parser \
36 kernel-module-x509-key-parser \
37"