Config.src 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. #
  2. # For a description of the syntax of this configuration file,
  3. # see docs/Kconfig-language.txt.
  4. #
  5. menu "Networking Utilities"
  6. config FEATURE_IPV6
  7. bool "Enable IPv6 support"
  8. default y
  9. help
  10. Enable IPv6 support in busybox.
  11. This adds IPv6 support in the networking applets.
  12. config FEATURE_UNIX_LOCAL
  13. bool "Enable Unix domain socket support (usually not needed)"
  14. default n
  15. help
  16. Enable Unix domain socket support in all busybox networking
  17. applets. Address of the form local:/path/to/unix/socket
  18. will be recognized.
  19. This extension is almost never used in real world usage.
  20. You most likely want to say N.
  21. config FEATURE_PREFER_IPV4_ADDRESS
  22. bool "Prefer IPv4 addresses from DNS queries"
  23. default y
  24. depends on FEATURE_IPV6
  25. help
  26. Use IPv4 address of network host if it has one.
  27. If this option is off, the first returned address will be used.
  28. This may cause problems when your DNS server is IPv6-capable and
  29. is returning IPv6 host addresses too. If IPv6 address
  30. precedes IPv4 one in DNS reply, busybox network applets
  31. (e.g. wget) will use IPv6 address. On an IPv6-incapable host
  32. or network applets will fail to connect to the host
  33. using IPv6 address.
  34. config VERBOSE_RESOLUTION_ERRORS
  35. bool "Verbose resolution errors"
  36. default n
  37. help
  38. Enable if you are not satisfied with simplistic
  39. "can't resolve 'hostname.com'" and want to know more.
  40. This may increase size of your executable a bit.
  41. config FEATURE_TLS_SHA1
  42. bool "In TLS code, support ciphers which use deprecated SHA1"
  43. depends on TLS
  44. default n
  45. help
  46. Selecting this option increases interoperability with very old
  47. servers, but slightly increases code size.
  48. Most TLS servers support SHA256 today (2018), since SHA1 is
  49. considered possibly insecure (although not yet definitely broken).
  50. INSERT
  51. source networking/udhcp/Config.in
  52. config IFUPDOWN_UDHCPC_CMD_OPTIONS
  53. string "ifup udhcpc command line options"
  54. default "-R -n"
  55. depends on IFUP || IFDOWN
  56. help
  57. Command line options to pass to udhcpc from ifup.
  58. Intended to alter options not available in /etc/network/interfaces.
  59. (IE: --syslog --background etc...)
  60. endmenu