2014-06-27 18:00:28 +02:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
2015-06-28 16:08:57 +02:00
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
2014-06-27 18:00:28 +02:00
|
|
|
#
|
|
|
|
|
2014-06-27 18:02:14 +02:00
|
|
|
menu "Network Device Operations"
|
2014-06-27 18:00:28 +02:00
|
|
|
|
2017-03-13 16:51:31 +01:00
|
|
|
config NETDEV_IOCTL
|
|
|
|
bool
|
|
|
|
default n
|
|
|
|
|
2014-06-27 18:02:14 +02:00
|
|
|
config NETDEV_PHY_IOCTL
|
|
|
|
bool "Enable PHY ioctl()"
|
|
|
|
default n
|
2017-03-13 16:51:31 +01:00
|
|
|
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
|
2014-06-27 18:02:14 +02:00
|
|
|
---help---
|
2017-03-13 16:51:31 +01:00
|
|
|
Enable support for wireless device ioctl() commands
|
2014-06-27 18:02:14 +02:00
|
|
|
|
|
|
|
endmenu # Network Device Operations
|