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