2
1

Config.in 694 B

12345678910111213141516171819202122232425262728293031323334
  1. config BR2_PACKAGE_DHCP
  2. bool "dhcp (ISC)"
  3. # fork()
  4. depends on BR2_USE_MMU
  5. help
  6. DHCP relay agent from the ISC DHCP distribution.
  7. http://www.isc.org/products/DHCP
  8. if BR2_PACKAGE_DHCP
  9. config BR2_PACKAGE_DHCP_SERVER
  10. bool "dhcp server"
  11. help
  12. DHCP server from the ISC DHCP distribution.
  13. config BR2_PACKAGE_DHCP_SERVER_DELAYED_ACK
  14. bool "Enable delayed ACK feature"
  15. depends on BR2_PACKAGE_DHCP_SERVER
  16. help
  17. Enable delayed ACK feature in the ISC DHCP server.
  18. config BR2_PACKAGE_DHCP_RELAY
  19. bool "dhcp relay"
  20. help
  21. DHCP relay agent from the ISC DHCP distribution.
  22. config BR2_PACKAGE_DHCP_CLIENT
  23. bool "dhcp client"
  24. help
  25. DHCP client from the ISC DHCP distribution.
  26. endif