Config.in 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. config BR2_PACKAGE_DHCP
  2. bool "dhcp (ISC)"
  3. # fork()
  4. depends on BR2_USE_MMU
  5. depends on BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
  6. help
  7. DHCP relay agent from the ISC DHCP distribution.
  8. https://www.isc.org/downloads/dhcp/
  9. if BR2_PACKAGE_DHCP
  10. config BR2_PACKAGE_DHCP_SERVER
  11. bool "dhcp server"
  12. help
  13. DHCP server from the ISC DHCP distribution.
  14. This also installs omshell, an interactive tool to connect to,
  15. query, and possibly change, the server's state via the Object
  16. Management API (OMAPI).
  17. config BR2_PACKAGE_DHCP_SERVER_DELAYED_ACK
  18. bool "Enable delayed ACK feature"
  19. depends on BR2_PACKAGE_DHCP_SERVER
  20. help
  21. Enable delayed ACK feature in the ISC DHCP server.
  22. config BR2_PACKAGE_DHCP_SERVER_ENABLE_PARANOIA
  23. bool "Enable paranoia options"
  24. depends on BR2_PACKAGE_DHCP_SERVER
  25. help
  26. Add option --enable-paranoia to configure script. This
  27. activates additional server options (-user, -group and
  28. -chroot) to make dhcp server more secure.
  29. config BR2_PACKAGE_DHCP_RELAY
  30. bool "dhcp relay"
  31. help
  32. DHCP relay agent from the ISC DHCP distribution.
  33. config BR2_PACKAGE_DHCP_CLIENT
  34. bool "dhcp client"
  35. help
  36. DHCP client from the ISC DHCP distribution.
  37. endif