1config BR2_PACKAGE_CRDA 2 bool "crda" 3 depends on BR2_PACKAGE_LIBGPG_ERROR_ARCH_SUPPORTS # libgcrypt 4 depends on BR2_TOOLCHAIN_HAS_THREADS # libnl 5 depends on !BR2_STATIC_LIBS 6 select BR2_PACKAGE_LIBGCRYPT 7 select BR2_PACKAGE_LIBNL 8 # regdb is a runtime dependency 9 select BR2_PACKAGE_WIRELESS_REGDB 10 help 11 Central Regulatory Domain Agent. 12 13 This package provides a Central Regulatory Domain Agent (CRDA) 14 to be used by the Linux kernel cf80211 wireless subsystem to 15 query and apply the regulatory domain settings wireless 16 devices may operate within for a given location. 17 18 https://wireless.wiki.kernel.org/en/developers/regulatory/crda 19 20comment "crda needs a toolchain w/ threads, dynamic library" 21 depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS 22