Config.in 905 B

12345678910111213141516171819202122232425262728
  1. comment "dhcpcd needs a toolchain w/ headers >= 3.1"
  2. depends on !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_1
  3. config BR2_PACKAGE_DHCPCD
  4. bool "dhcpcd"
  5. depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_1 # sa_family_t in linux/socket.h
  6. help
  7. An RFC2131 compliant DHCP client
  8. http://roy.marples.name/projects/dhcpcd/
  9. if BR2_PACKAGE_DHCPCD
  10. config BR2_PACKAGE_DHCPCD_ENABLE_PRIVSEP
  11. bool
  12. default y
  13. depends on BR2_USE_MMU
  14. # Audit headers were only added in recent kernels for some arches
  15. depends on !(BR2_arceb || BR2_arcle) || \
  16. BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_2
  17. depends on !(BR2_microblazeel || BR2_microblazebe) || \
  18. BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_18
  19. depends on !BR2_nios2 || BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_2
  20. depends on !BR2_or1k || BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_7
  21. depends on !BR2_sh || BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_7
  22. depends on !BR2_xtensa || BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_0
  23. endif