1config BR2_PACKAGE_IWD 2 bool "iwd" 3 depends on BR2_USE_MMU # dbus 4 depends on BR2_TOOLCHAIN_HAS_THREADS # dbus 5 depends on BR2_TOOLCHAIN_HAS_SYNC_4 # ell 6 depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_12 # ell 7 depends on BR2_USE_WCHAR # ell 8 select BR2_PACKAGE_DBUS # runtime 9 select BR2_PACKAGE_ELL 10 select BR2_PACKAGE_OPENRESOLV if !BR2_PACKAGE_SYSTEMD_RESOLVED 11 help 12 iNet Wireless daemon (iwd) 13 14 https://iwd.wiki.kernel.org/ 15 16comment "iwd needs a toolchain w/ threads, wchar, headers >= 4.12" 17 depends on BR2_USE_MMU # dbus 18 depends on BR2_TOOLCHAIN_HAS_SYNC_4 # ell 19 depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_USE_WCHAR || \ 20 !BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_12 21