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-08-23 14:53:11 +02:00
|
|
|
depends on NET_ICMP_SOCKET || NET_USRSOCK
|
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"
|
2018-08-23 19:06:15 +02:00
|
|
|
depends on BUILD_LOADABLE
|
2017-10-23 16:50:01 +02:00
|
|
|
---help---
|
|
|
|
This is the name of the program that will be use when the NSH ELF
|
|
|
|
program is installed.
|
|
|
|
|
|
|
|
config SYSTEM_PING_PRIORITY
|
|
|
|
int "Ping task priority"
|
|
|
|
default 100
|
|
|
|
|
|
|
|
config SYSTEM_PING_STACKSIZE
|
|
|
|
int "Ping stack size"
|
|
|
|
default 2048
|
|
|
|
|
|
|
|
endif
|
|
|
|
|