nuttx/net/netdev/Kconfig

28 lines
589 B
Plaintext
Raw Normal View History

2014-06-27 18:00:28 +02:00
#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
2014-06-27 18:00:28 +02:00
#
menu "Network Device Operations"
2014-06-27 18:00:28 +02:00
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
endmenu # Network Device Operations