2017-10-23 08:50:01 -06:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
|
|
#
|
|
|
|
|
|
|
|
config SYSTEM_PING
|
2018-09-03 09:29:56 -06:00
|
|
|
tristate "ICMP 'ping' command"
|
2017-10-23 08:50:01 -06:00
|
|
|
default n
|
2018-11-08 09:32:05 -06:00
|
|
|
depends on NET_ICMP
|
|
|
|
select NETUTILS_PING
|
2017-10-23 08:50:01 -06:00
|
|
|
---help---
|
|
|
|
Enable support for the ICMP 'ping' command.
|
|
|
|
|
|
|
|
if SYSTEM_PING
|
2018-09-06 15:08:12 -06:00
|
|
|
|
2017-10-23 08:50:01 -06:00
|
|
|
config SYSTEM_PING_PROGNAME
|
|
|
|
string "Ping program name"
|
2017-10-24 11:19:41 -06:00
|
|
|
default "ping"
|
2017-10-23 08:50:01 -06:00
|
|
|
---help---
|
2019-08-23 11:59:28 -06:00
|
|
|
This is the name of the program that will be used when the NSH ELF
|
2017-10-23 08:50:01 -06:00
|
|
|
program is installed.
|
|
|
|
|
|
|
|
config SYSTEM_PING_PRIORITY
|
|
|
|
int "Ping task priority"
|
|
|
|
default 100
|
|
|
|
|
|
|
|
config SYSTEM_PING_STACKSIZE
|
|
|
|
int "Ping stack size"
|
|
|
|
default 2048
|
|
|
|
|
|
|
|
endif
|
|
|
|
|