2017-04-10 22:00:21 +02:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
|
|
#
|
|
|
|
|
|
|
|
menuconfig WIRELESS_WAPI
|
2019-10-06 14:14:39 +02:00
|
|
|
bool "IEEE 802.11 Configuration Library"
|
2017-04-10 22:00:21 +02:00
|
|
|
default n
|
2018-06-17 18:55:16 +02:00
|
|
|
depends on NET && DRIVERS_WIRELESS
|
2017-04-10 22:00:21 +02:00
|
|
|
---help---
|
|
|
|
Wapi is a tool by Volkan YAZICI <volkan.yazici@gmail.com> that can
|
|
|
|
be used to manage 802.11 network.
|
|
|
|
|
|
|
|
if WIRELESS_WAPI
|
|
|
|
|
|
|
|
config WIRELESS_WAPI_CMDTOOL
|
2019-10-06 14:14:39 +02:00
|
|
|
tristate "IEEE 802.11 Command Line Tool"
|
2017-04-10 22:00:21 +02:00
|
|
|
default n
|
|
|
|
---help---
|
|
|
|
By default, Wapi is build as only a library. If this option is
|
|
|
|
selected than a simple command line tool that can be ran from NSH
|
|
|
|
will also be generated.
|
|
|
|
|
|
|
|
config WIRELESS_WAPI_PROGNAME
|
2017-04-10 22:57:33 +02:00
|
|
|
string "Program Name"
|
2017-04-10 22:00:21 +02:00
|
|
|
default "wapi"
|
|
|
|
---help---
|
2019-08-23 19:59:28 +02:00
|
|
|
This is the name of the program that will be used when the NSH ELF
|
2017-04-10 22:00:21 +02:00
|
|
|
program is installed.
|
|
|
|
|
|
|
|
config WIRELESS_WAPI_STACKSIZE
|
2017-04-10 22:57:33 +02:00
|
|
|
int "Stack Size (bytes)"
|
2017-04-10 22:00:21 +02:00
|
|
|
default 2048
|
|
|
|
|
|
|
|
config WIRELESS_WAPI_PRIORITY
|
2017-04-10 22:57:33 +02:00
|
|
|
int "Command Priority"
|
2017-04-10 22:00:21 +02:00
|
|
|
default 100
|
|
|
|
|
2020-02-24 04:31:38 +01:00
|
|
|
config WIRELESS_WAPI_INITCONF
|
|
|
|
bool "Wireless Configure Initialization"
|
|
|
|
default n
|
|
|
|
depends on NETUTILS_CJSON
|
|
|
|
|
|
|
|
if WIRELESS_WAPI_INITCONF
|
|
|
|
|
|
|
|
config WIRELESS_WAPI_CONFIG_PATH
|
|
|
|
string "Wireless Wapi Configure File Path"
|
|
|
|
default "/data/wapi.conf"
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
2017-04-10 22:00:21 +02:00
|
|
|
endif
|