# # For a description of the syntax of this configuration file, # see the file kconfig-language.txt in the NuttX tools repository. # menu "Network Device Operations" config NETDEV_IOCTL bool default n config NETDEV_PHY_IOCTL bool "Enable PHY ioctl()" default n select NETDEV_IOCTL ---help--- Enable support for ioctl() commands to access PHY registers config NETDEV_WIRELESS_IOCTL bool "Enable Wireless ioctl()" default n select NETDEV_IOCTL depends on DRIVERS_WIRELESS ---help--- Enable support for wireless device ioctl() commands config NETDEV_IFINDEX bool "Enable IF index support" default n ---help--- Enable support for references devices by an interface index. This feature is automatically enabled when raw, PACKET sockets are enabled. When enabled, these option also enables the user interfaces: if_nametoindex() and if_indextoname(). endmenu # Network Device Operations