diff options
| author | Wang Mingyu <wangmy@fujitsu.com> | 2026-03-26 19:55:47 +0800 |
|---|---|---|
| committer | Khem Raj <khem.raj@oss.qualcomm.com> | 2026-03-27 09:08:52 -0700 |
| commit | 7c5ec1fa02b125d9285d0e518ed2e62073b30b73 (patch) | |
| tree | aeb7938f0f93b126d970000c79605750ed3e16fa /meta-oe/recipes-connectivity/iwd/iwd_3.12.bb | |
| parent | f355b76315a9fb630dc181815514238b6fc85a44 (diff) | |
| download | meta-openembedded-7c5ec1fa02b125d9285d0e518ed2e62073b30b73.tar.gz | |
iwd: upgrade 3.11 -> 3.12
Changelog:
===========
- Fix issue with handling expiration of PMKSA.
- Fix issue with handling uninitialized buffer and PMKID.
- Fix issue with checking for PKCS#8 key parser in unit tests.
- Fix issue with using -std=c23 compiler setting.
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
Diffstat (limited to 'meta-oe/recipes-connectivity/iwd/iwd_3.12.bb')
| -rw-r--r-- | meta-oe/recipes-connectivity/iwd/iwd_3.12.bb | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/meta-oe/recipes-connectivity/iwd/iwd_3.12.bb b/meta-oe/recipes-connectivity/iwd/iwd_3.12.bb new file mode 100644 index 0000000000..a53137537e --- /dev/null +++ b/meta-oe/recipes-connectivity/iwd/iwd_3.12.bb | |||
| @@ -0,0 +1,62 @@ | |||
| 1 | SUMMARY = "Wireless daemon for Linux" | ||
| 2 | HOMEPAGE = "https://iwd.wiki.kernel.org/" | ||
| 3 | LICENSE = "LGPL-2.1-only" | ||
| 4 | LIC_FILES_CHKSUM = "file://COPYING;md5=fb504b67c50331fc78734fed90fb0e09" | ||
| 5 | |||
| 6 | DEPENDS = "dbus" | ||
| 7 | |||
| 8 | SRC_URI = "https://www.kernel.org/pub/linux/network/wireless/${BP}.tar.xz \ | ||
| 9 | file://0001-build-Use-abs_top_srcdir-instead-of-abs_srcdir-for-e.patch \ | ||
| 10 | file://iwd \ | ||
| 11 | " | ||
| 12 | SRC_URI[sha256sum] = "d89a5e45c7180170e19be828f9e944a768c593758094fc57a358d0e7c4cb1a49" | ||
| 13 | |||
| 14 | inherit autotools manpages pkgconfig python3native systemd update-rc.d | ||
| 15 | |||
| 16 | PACKAGECONFIG ??= " \ | ||
| 17 | client \ | ||
| 18 | monitor \ | ||
| 19 | ${@bb.utils.filter('DISTRO_FEATURES', 'systemd', d)} \ | ||
| 20 | " | ||
| 21 | PACKAGECONFIG[client] = "--enable-client,--disable-client,readline" | ||
| 22 | PACKAGECONFIG[monitor] = "--enable-monitor,--disable-monitor" | ||
| 23 | PACKAGECONFIG[manpages] = "--enable-manual-pages,--disable-manual-pages,python3-docutils-native" | ||
| 24 | PACKAGECONFIG[wired] = "--enable-wired,--disable-wired" | ||
| 25 | PACKAGECONFIG[ofono] = "--enable-ofono,--disable-ofono" | ||
| 26 | PACKAGECONFIG[systemd] = "--with-systemd-unitdir=${systemd_system_unitdir},--disable-systemd-service,systemd" | ||
| 27 | |||
| 28 | INITSCRIPT_NAME = "iwd" | ||
| 29 | INITSCRIPT_PARAMS = "start 04 5 2 3 . stop 23 0 1 6 ." | ||
| 30 | |||
| 31 | SYSTEMD_SERVICE:${PN} = " \ | ||
| 32 | iwd.service \ | ||
| 33 | ${@bb.utils.contains('PACKAGECONFIG', 'wired', 'ead.service', '', d)} \ | ||
| 34 | " | ||
| 35 | |||
| 36 | do_configure:prepend() { | ||
| 37 | install -d ${S}/build-aux | ||
| 38 | } | ||
| 39 | |||
| 40 | do_install:append() { | ||
| 41 | # If client and monitor are disabled, bindir is empty, causing a QA error | ||
| 42 | rmdir --ignore-fail-on-non-empty ${D}/${bindir} | ||
| 43 | |||
| 44 | if ${@bb.utils.contains('DISTRO_FEATURES','sysvinit','true','false',d)}; then | ||
| 45 | install -d ${D}${sysconfdir}/init.d | ||
| 46 | install -m 0755 ${UNPACKDIR}/iwd ${D}${sysconfdir}/init.d/iwd | ||
| 47 | fi | ||
| 48 | } | ||
| 49 | |||
| 50 | FILES:${PN} += " \ | ||
| 51 | ${datadir}/dbus-1 \ | ||
| 52 | ${nonarch_libdir}/modules-load.d \ | ||
| 53 | ${systemd_unitdir}/network \ | ||
| 54 | " | ||
| 55 | |||
| 56 | RDEPENDS:${PN} = "${VIRTUAL-RUNTIME_dbus}" | ||
| 57 | |||
| 58 | RRECOMMENDS:${PN} = "\ | ||
| 59 | kernel-module-pkcs7-message \ | ||
| 60 | kernel-module-pkcs8-key-parser \ | ||
| 61 | kernel-module-x509-key-parser \ | ||
| 62 | " | ||
