Config.in 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. #
  2. # For a description of the syntax of this configuration file,
  3. # see scripts/kbuild/config-language.txt.
  4. #
  5. menu "udhcp Server/Client"
  6. config CONFIG_UDHCPD
  7. bool "udhcp Server (udhcpd)"
  8. default n
  9. help
  10. uDHCPd is a DHCP server geared primarily toward embedded systems,
  11. while striving to be fully functional and RFC compliant.
  12. See http://udhcp.busybox.net for further details.
  13. config CONFIG_UDHCPC
  14. bool "udhcp Client (udhcpc)"
  15. default n
  16. help
  17. uDHCPc is a DHCP client geared primarily toward embedded systems,
  18. while striving to be fully functional and RFC compliant.
  19. The udhcp client negotiates a lease with the DHCP server and
  20. notifies a set of scripts when a lease is obtained or lost.
  21. See http://udhcp.busybox.net for further details.
  22. config CONFIG_DUMPLEASES
  23. bool "Lease display utility (dumpleases)"
  24. default n
  25. depends on CONFIG_UDHCPD
  26. help
  27. dumpleases displays the leases written out by the udhcpd server.
  28. Lease times are stored in the file by time remaining in lease, or
  29. by the absolute time that it expires in seconds from epoch.
  30. See http://udhcp.busybox.net for further details.
  31. config CONFIG_FEATURE_UDHCP_SYSLOG
  32. bool " Log udhcp messages to syslog (instead of stdout)"
  33. default n
  34. depends on CONFIG_UDHCPD || CONFIG_UDHCPC
  35. help
  36. If selected, udhcpd will log all its messages to syslog, otherwise,
  37. it will attempt to log them to stdout.
  38. See http://udhcp.busybox.net for further details.
  39. config CONFIG_FEATURE_UDHCP_DEBUG
  40. bool " Compile udhcp with noisy debugging messages"
  41. default n
  42. depends on CONFIG_UDHCPD || CONFIG_UDHCPC
  43. help
  44. If selected, udhcpd will output extra debugging output. If using
  45. this option, compile uDHCP with "-g", and do not fork the daemon to
  46. the background.
  47. See http://udhcp.busybox.net for further details.
  48. endmenu