Config.in 1.1 KB

1234567891011121314151617181920212223242526
  1. config BR2_PACKAGE_NETCAT_OPENBSD
  2. bool "netcat-openbsd"
  3. depends on BR2_PACKAGE_LIBBSD_ARCH_SUPPORTS
  4. depends on BR2_TOOLCHAIN_HAS_THREADS
  5. depends on BR2_TOOLCHAIN_USES_GLIBC
  6. depends on BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
  7. select BR2_PACKAGE_LIBBSD
  8. help
  9. A simple Unix utility which reads and writes data across
  10. network connections using TCP or UDP protocol. It is
  11. designed to be a reliable "back-end" tool that can be used
  12. directly or easily driven by other programs and scripts. At
  13. the same time it is a feature-rich network debugging and
  14. exploration tool, since it can create almost any kind of
  15. connection you would need and has several interesting
  16. built-in capabilities.
  17. This package contains the OpenBSD rewrite of netcat,
  18. including support for IPv6, proxies, and Unix sockets.
  19. https://packages.debian.org/sid/netcat-openbsd
  20. comment "netcat-openbsd needs a glibc toolchain w/ threads"
  21. depends on BR2_PACKAGE_LIBBSD_ARCH_SUPPORTS
  22. depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_TOOLCHAIN_USES_GLIBC
  23. depends on BR2_PACKAGE_BUSYBOX_SHOW_OTHERS