2014-06-27 10:00:28 -06:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
2015-06-28 08:08:57 -06:00
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
2014-06-27 10:00:28 -06:00
|
|
|
#
|
|
|
|
|
2014-06-27 10:02:14 -06:00
|
|
|
menu "Network Device Operations"
|
2014-06-27 10:00:28 -06:00
|
|
|
|
2017-03-13 09:51:31 -06:00
|
|
|
config NETDEV_IOCTL
|
|
|
|
bool
|
|
|
|
default n
|
|
|
|
|
2014-06-27 10:02:14 -06:00
|
|
|
config NETDEV_PHY_IOCTL
|
|
|
|
bool "Enable PHY ioctl()"
|
|
|
|
default n
|
2017-03-13 09:51:31 -06:00
|
|
|
select NETDEV_IOCTL
|
|
|
|
---help---
|
|
|
|
Enable support for ioctl() commands to access PHY registers
|
|
|
|
|
2020-06-15 10:23:25 +02:00
|
|
|
config NETDEV_CAN_BITRATE_IOCTL
|
|
|
|
bool "Enable CAN bitrate ioctl()"
|
|
|
|
default n
|
|
|
|
select NETDEV_IOCTL
|
|
|
|
depends on NET_CAN
|
|
|
|
---help---
|
|
|
|
Enable support for ioctl() commands to change CAN bitrate
|
|
|
|
|
2017-03-13 09:51:31 -06:00
|
|
|
config NETDEV_WIRELESS_IOCTL
|
|
|
|
bool "Enable Wireless ioctl()"
|
|
|
|
default n
|
|
|
|
select NETDEV_IOCTL
|
|
|
|
depends on DRIVERS_WIRELESS
|
2014-06-27 10:02:14 -06:00
|
|
|
---help---
|
2017-03-13 09:51:31 -06:00
|
|
|
Enable support for wireless device ioctl() commands
|
2014-06-27 10:02:14 -06:00
|
|
|
|
2018-06-25 12:08:10 -06: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-09 10:39:25 -06:00
|
|
|
config NETDOWN_NOTIFIER
|
|
|
|
bool "Support network down notifications"
|
|
|
|
default n
|
2019-01-27 11:02:56 -06:00
|
|
|
depends on SCHED_WORKQUEUE
|
2018-09-11 07:22:23 -06:00
|
|
|
select WQUEUE_NOTIFIER
|
2018-09-09 10:39:25 -06:00
|
|
|
---help---
|
2018-09-11 07:22:23 -06:00
|
|
|
Enable building of logic that will execute on the low priority work
|
2018-09-09 10:39:25 -06: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-27 10:02:14 -06:00
|
|
|
endmenu # Network Device Operations
|