Config.in 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. #
  2. # For a description of the syntax of this configuration file,
  3. # see scripts/kbuild/config-language.txt.
  4. #
  5. config APP_UDHCPD
  6. bool "udhcp Server (udhcpd)"
  7. default n
  8. help
  9. uDHCPd is a DHCP server geared primarily toward embedded systems,
  10. while striving to be fully functional and RFC compliant.
  11. See http://udhcp.busybox.net for further details.
  12. config APP_DHCPRELAY
  13. bool "dhcprelay"
  14. default n
  15. depends on APP_UDHCPD
  16. help
  17. dhcprelay listens for dhcp requests on one or more interfaces
  18. and forwards these requests to a different interface or dhcp
  19. server.
  20. config APP_DUMPLEASES
  21. bool "Lease display utility (dumpleases)"
  22. default n
  23. depends on APP_UDHCPD
  24. help
  25. dumpleases displays the leases written out by the udhcpd server.
  26. Lease times are stored in the file by time remaining in lease, or
  27. by the absolute time that it expires in seconds from epoch.
  28. See http://udhcp.busybox.net for further details.
  29. config APP_UDHCPC
  30. bool "udhcp Client (udhcpc)"
  31. default n
  32. help
  33. uDHCPc is a DHCP client geared primarily toward embedded systems,
  34. while striving to be fully functional and RFC compliant.
  35. The udhcp client negotiates a lease with the DHCP server and
  36. notifies a set of scripts when a lease is obtained or lost.
  37. See http://udhcp.busybox.net for further details.
  38. config FEATURE_UDHCP_SYSLOG
  39. bool "Log udhcp messages to syslog"
  40. default n
  41. depends on APP_UDHCPD || APP_UDHCPC
  42. select FEATURE_SYSLOG
  43. help
  44. If not daemonized, udhcpd prints its messages to stdout/stderr.
  45. If this option is selected, it will also log them to syslog.
  46. See http://udhcp.busybox.net for further details.
  47. config FEATURE_UDHCP_DEBUG
  48. bool "Compile udhcp with noisy debugging messages"
  49. default n
  50. depends on APP_UDHCPD || APP_UDHCPC
  51. help
  52. If selected, udhcpd will output extra debugging output. If using
  53. this option, compile uDHCP with "-g", and do not fork the daemon to
  54. the background.
  55. See http://udhcp.busybox.net for further details.