Config.in 761 B

12345678910111213141516171819202122232425262728293031
  1. config 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. https://hewlettpackard.github.io/wireless-tools/
  9. if BR2_PACKAGE_WIRELESS_TOOLS
  10. config BR2_PACKAGE_WIRELESS_TOOLS_IWCONFIG
  11. bool "Install tools"
  12. default y
  13. help
  14. Build and install the iwconfig, iwlist, iwspy, iwpriv, and
  15. iwgetid tools.
  16. config BR2_PACKAGE_WIRELESS_TOOLS_IFRENAME
  17. bool "Install ifrename"
  18. help
  19. Build and install the ifrename tool
  20. config BR2_PACKAGE_WIRELESS_TOOLS_LIB
  21. bool "Install shared library"
  22. depends on !BR2_STATIC_LIBS
  23. help
  24. The shared library of wireless tools
  25. endif