diff options
| author | Alex Kiernan <alex.kiernan@gmail.com> | 2019-07-11 09:42:19 +0100 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2019-07-11 14:01:28 -0700 |
| commit | b0f86ee5a98d197afe32f1325d92ea2fa2e4b56d (patch) | |
| tree | ee6bb1c096c4492f83535f7169531e6afbe5aed6 /meta-oe/recipes-connectivity/iwd/iwd_0.18.bb | |
| parent | 8bc18c5d45b781fb1f37c3574a0b2a02f048ef1a (diff) | |
| download | meta-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.bb | 37 |
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 @@ | |||
| 1 | DESCRIPTION = "Wireless daemon for Linux" | ||
| 2 | LICENSE = "LGPL-2.1" | ||
| 3 | LIC_FILES_CHKSUM = "file://COPYING;md5=fb504b67c50331fc78734fed90fb0e09" | ||
| 4 | |||
| 5 | inherit autotools pkgconfig systemd | ||
| 6 | |||
| 7 | DEPENDS = "ell readline dbus" | ||
| 8 | |||
| 9 | SRC_URI = "git://git.kernel.org/pub/scm/network/wireless/iwd.git" | ||
| 10 | SRCREV = "c923448bacf8a855b40017fe53ba2edcd062eec1" | ||
| 11 | S = "${WORKDIR}/git" | ||
| 12 | |||
| 13 | PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'systemd', d)}" | ||
| 14 | PACKAGECONFIG[wired] = "--enable-wired,--disable-wired" | ||
| 15 | PACKAGECONFIG[ofono] = "--enable-ofono,--disable-ofono" | ||
| 16 | PACKAGECONFIG[systemd] = "--with-systemd-unitdir=${systemd_system_unitdir},--disable-systemd-service,systemd" | ||
| 17 | |||
| 18 | EXTRA_OECONF += "--enable-external-ell" | ||
| 19 | |||
| 20 | do_configure_prepend () { | ||
| 21 | mkdir -p ${S}/build-aux | ||
| 22 | } | ||
| 23 | |||
| 24 | do_install_append() { | ||
| 25 | mkdir --parents ${D}${docdir}/${BPN} | ||
| 26 | install -m644 ${S}/doc/*.txt ${D}${docdir}/${BPN} | ||
| 27 | } | ||
| 28 | |||
| 29 | FILES_${PN} += "${datadir}/dbus-1 ${libdir}/modules-load.d" | ||
| 30 | |||
| 31 | SYSTEMD_SERVICE_${PN} = "iwd.service ${@bb.utils.contains('PACKAGECONFIG', 'wired', 'ead.service', '', d)}" | ||
| 32 | |||
| 33 | RRECOMMENDS_${PN} = "\ | ||
| 34 | kernel-module-pkcs7-message \ | ||
| 35 | kernel-module-pkcs8-key-parser \ | ||
| 36 | kernel-module-x509-key-parser \ | ||
| 37 | " | ||
