2017-10-23 16:50:01 +02: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 17:29:56 +02:00
|
|
|
tristate "ICMP 'ping' command"
|
2017-10-23 16:50:01 +02:00
|
|
|
default n
|
2018-11-08 16:32:05 +01:00
|
|
|
depends on NET_ICMP
|
|
|
|
select NETUTILS_PING
|
2017-10-23 16:50:01 +02:00
|
|
|
---help---
|
|
|
|
Enable support for the ICMP 'ping' command.
|
|
|
|
|
|
|
|
if SYSTEM_PING
|
2018-09-06 23:08:12 +02:00
|
|
|
|
2017-10-23 16:50:01 +02:00
|
|
|
config SYSTEM_PING_PROGNAME
|
|
|
|
string "Ping program name"
|
2017-10-24 19:19:41 +02:00
|
|
|
default "ping"
|
2017-10-23 16:50:01 +02:00
|
|
|
---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-10-23 16:50:01 +02: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
|