1config BR2_PACKAGE_WIRELESS_TOOLS 2 bool "wireless tools" 3 select BR2_PACKAGE_WIRELESS_TOOLS_IWCONFIG if \ 4 !BR2_PACKAGE_WIRELESS_TOOLS_IFRENAME && \ 5 !BR2_PACKAGE_WIRELESS_TOOLS_LIB 6 help 7 A collection of tools to configure wireless lan cards. 8 9 https://hewlettpackard.github.io/wireless-tools/ 10 11if BR2_PACKAGE_WIRELESS_TOOLS 12 13config BR2_PACKAGE_WIRELESS_TOOLS_IWCONFIG 14 bool "Install tools" 15 default y 16 help 17 Build and install the iwconfig, iwlist, iwspy, iwpriv, and 18 iwgetid tools. 19 20config BR2_PACKAGE_WIRELESS_TOOLS_IFRENAME 21 bool "Install ifrename" 22 help 23 Build and install the ifrename tool 24 25config BR2_PACKAGE_WIRELESS_TOOLS_LIB 26 bool "Install shared library" 27 depends on !BR2_STATIC_LIBS 28 help 29 The shared library of wireless tools 30 31endif 32