28 lines
589 B
Plaintext
28 lines
589 B
Plaintext
#
|
|
# 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
|
|
|
|
endmenu # Network Device Operations
|