04fa606640
- remove 0001-src-ap.c-fix-build-with-uclibc.patch (upstream committed, see [1]) - drop dynamic library dependency as no longer enforced by ell and no longer needed since commit [2] Changelog (since 1.9): - Add support for DHCP v6 configuration. - Add support for DHCP server operation with AP mode. - Add support for IP allocation during the 4-Way Handshake. - Add support for P2P Group-owner handling. [1] https://git.kernel.org/pub/scm/network/wireless/iwd.git/commit/?id=0a6de7932a61ec82aca4f78f71dab7247c897860 [2] https://git.kernel.org/pub/scm/network/wireless/iwd.git/commit/?id=bbcfde8743c4dd58379d2017b7f0fabe8d65fffa Signed-off-by: Peter Seiderer <ps.report@gmx.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
21 lines
675 B
Plaintext
21 lines
675 B
Plaintext
config BR2_PACKAGE_IWD
|
|
bool "iwd"
|
|
depends on BR2_USE_MMU # dbus
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # dbus
|
|
depends on BR2_TOOLCHAIN_HAS_SYNC_4 # ell
|
|
depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_12 # ell
|
|
depends on BR2_USE_WCHAR # ell
|
|
select BR2_PACKAGE_DBUS # runtime
|
|
select BR2_PACKAGE_ELL
|
|
select BR2_PACKAGE_OPENRESOLV if !BR2_PACKAGE_SYSTEMD_RESOLVED
|
|
help
|
|
iNet Wireless daemon (iwd)
|
|
|
|
https://iwd.wiki.kernel.org/
|
|
|
|
comment "iwd needs a toolchain w/ threads, wchar, headers >= 4.12"
|
|
depends on BR2_USE_MMU # dbus
|
|
depends on BR2_TOOLCHAIN_HAS_SYNC_4 # ell
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_USE_WCHAR || \
|
|
!BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_12
|