Config.in 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. config BR2_PACKAGE_NMAP
  2. bool "nmap"
  3. depends on BR2_INSTALL_LIBSTDCPP
  4. depends on BR2_USE_MMU # fork()
  5. depends on BR2_TOOLCHAIN_HAS_THREADS
  6. select BR2_PACKAGE_LIBLINEAR
  7. select BR2_PACKAGE_LIBPCAP
  8. select BR2_PACKAGE_NMAP_NMAP \
  9. if !BR2_PACKAGE_NMAP_NCAT && !BR2_PACKAGE_NMAP_NPING
  10. help
  11. Nmap ("Network Mapper") is a free and open source (license)
  12. utility for network discovery and security auditing.
  13. http://nmap.org
  14. if BR2_PACKAGE_NMAP
  15. config BR2_PACKAGE_NMAP_NCAT
  16. bool "install ncat"
  17. depends on BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
  18. help
  19. Ncat is a feature-packed networking utility which reads and
  20. writes data across networks from the command line. Ncat was
  21. written for the Nmap Project as a much-improved
  22. reimplementation of the venerable Netcat.
  23. A symlink to "nc" is installed if neither netcat or
  24. netcat-openbsd is selected.
  25. comment "a symlink from ncat to 'nc' will be installed"
  26. depends on BR2_PACKAGE_NMAP_NCAT
  27. depends on !BR2_PACKAGE_NETCAT
  28. depends on !BR2_PACKAGE_NETCAT_OPENBSD
  29. config BR2_PACKAGE_NMAP_NMAP
  30. bool "install nmap"
  31. select BR2_PACKAGE_PCRE
  32. help
  33. This option installs 'nmap' itself.
  34. config BR2_PACKAGE_NMAP_NPING
  35. bool "install nping"
  36. help
  37. This option installs the 'nping' tool.
  38. endif
  39. comment "nmap-nmap needs a toolchain w/ C++, threads"
  40. depends on BR2_USE_MMU
  41. depends on !(BR2_INSTALL_LIBSTDCPP && BR2_TOOLCHAIN_HAS_THREADS)