2014-06-28 00:00:28 +08:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
2015-06-28 22:08:57 +08:00
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
2014-06-28 00:00:28 +08:00
|
|
|
#
|
|
|
|
|
2014-06-28 00:02:14 +08:00
|
|
|
menu "Network Device Operations"
|
2014-06-28 00:00:28 +08:00
|
|
|
|
2017-03-13 23:51:31 +08:00
|
|
|
config NETDEV_IOCTL
|
|
|
|
bool
|
|
|
|
default n
|
|
|
|
|
2014-06-28 00:02:14 +08:00
|
|
|
config NETDEV_PHY_IOCTL
|
|
|
|
bool "Enable PHY ioctl()"
|
|
|
|
default n
|
2017-03-13 23:51:31 +08: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-28 00:02:14 +08:00
|
|
|
---help---
|
2017-03-13 23:51:31 +08:00
|
|
|
Enable support for wireless device ioctl() commands
|
2014-06-28 00:02:14 +08:00
|
|
|
|
2018-06-26 02:08:10 +08:00
|
|
|
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().
|
|
|
|
|
2018-09-10 00:39:25 +08:00
|
|
|
config NETDOWN_NOTIFIER
|
|
|
|
bool "Support network down notifications"
|
|
|
|
default n
|
2019-01-28 01:02:56 +08:00
|
|
|
depends on SCHED_WORKQUEUE
|
2018-09-11 21:22:23 +08:00
|
|
|
select WQUEUE_NOTIFIER
|
2018-09-10 00:39:25 +08:00
|
|
|
---help---
|
2018-09-11 21:22:23 +08:00
|
|
|
Enable building of logic that will execute on the low priority work
|
2018-09-10 00:39:25 +08:00
|
|
|
thread when the network is taken down. This is is a general purpose
|
|
|
|
notifier, but was developed specifically to support SIGHUP poll()
|
|
|
|
logic.
|
|
|
|
|
2014-06-28 00:02:14 +08:00
|
|
|
endmenu # Network Device Operations
|