Kconfig 1015 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. menuconfig RT_USING_NETDEV
  2. bool "Enable network interface device"
  3. default n
  4. if RT_USING_NETDEV
  5. config NETDEV_USING_IFCONFIG
  6. bool "Enable ifconfig features"
  7. default y
  8. config NETDEV_USING_PING
  9. bool "Enable ping features"
  10. default y
  11. config NETDEV_USING_NETSTAT
  12. bool "Enable netstat features"
  13. default y
  14. config NETDEV_USING_AUTO_DEFAULT
  15. bool "Enable default netdev automatic change features"
  16. default y
  17. config NETDEV_USING_LINK_STATUS_CALLBACK
  18. bool "Enable netdev callback on link status change"
  19. default n
  20. config NETDEV_USING_IPV6
  21. bool "Enable IPV6 protocol support"
  22. default n
  23. config NETDEV_IPV4
  24. int
  25. default 1
  26. config NETDEV_IPV6
  27. int
  28. default 1 if NETDEV_USING_IPV6
  29. default 0 if !NETDEV_USING_IPV6
  30. config NETDEV_IPV6_SCOPES
  31. bool
  32. help
  33. Defined to synchronize the ip6_addr structure state
  34. default n
  35. endif