Config.in 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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 && !BR2_PACKAGE_NMAP_NDIFF
  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. If 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_NDIFF
  30. bool "install ndiff"
  31. # ndiff only works with python2.x
  32. depends on BR2_PACKAGE_PYTHON
  33. help
  34. This option installs the 'ndiff' tool.
  35. comment "ndiff needs Python 2.x"
  36. depends on !BR2_PACKAGE_PYTHON
  37. config BR2_PACKAGE_NMAP_NMAP
  38. bool "install nmap"
  39. select BR2_PACKAGE_PCRE
  40. help
  41. This option installs 'nmap' itself.
  42. config BR2_PACKAGE_NMAP_NPING
  43. bool "install nping"
  44. help
  45. This option installs the 'nping' tool.
  46. endif
  47. comment "nmap-nmap needs a toolchain w/ C++, threads"
  48. depends on BR2_USE_MMU
  49. depends on !(BR2_INSTALL_LIBSTDCPP && BR2_TOOLCHAIN_HAS_THREADS)