Individual app kconfig fixes
This commit is contained in:
parent
b354a41fd4
commit
ae6c0b832c
@ -2,8 +2,15 @@
|
|||||||
# For a description of the syntax of this configuration file,
|
# For a description of the syntax of this configuration file,
|
||||||
# see the file kconfig-language.txt in the NuttX tools repository.
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
||||||
#
|
#
|
||||||
|
config GRAPHICS_TRAVELER
|
||||||
|
bool "Traveler game"
|
||||||
|
default n
|
||||||
|
select FSUTILS_INIFILE
|
||||||
|
---help---
|
||||||
|
Enable or disable the graphic Traveler game
|
||||||
|
|
||||||
if GRAPHICS_TRAVELER
|
if GRAPHICS_TRAVELER
|
||||||
|
|
||||||
comment "Color configuration"
|
comment "Color configuration"
|
||||||
|
|
||||||
choice
|
choice
|
||||||
|
@ -1,30 +1,31 @@
|
|||||||
#
|
#
|
||||||
# For a description of the syntax of this configuration file,
|
# For a description of the syntax of this configuration file,
|
||||||
# see the file kconfig-language.txt in the NuttX tools repository.
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
||||||
#
|
#
|
||||||
|
|
||||||
config NETUTILS_PING
|
config NETUTILS_PING
|
||||||
bool "ICMP ping support"
|
bool "ICMP ping support"
|
||||||
default n
|
default n
|
||||||
depends on NET_IPv4 && NET_ICMP && NET_PKT
|
depends on NET_IPv4 && NET_ICMP && NET_PKT
|
||||||
help
|
help
|
||||||
Build in support for a IPv4 ping command. This command ping will
|
Build in support for a IPv4 ping command. This command ping will
|
||||||
send the ICMP ECHO_REQUEST and wait for the ICMP ECHO_RESPONSE from
|
send the ICMP ECHO_REQUEST and wait for the ICMP ECHO_RESPONSE from
|
||||||
the remote peer.
|
the remote peer.
|
||||||
|
|
||||||
config NETUTILS_PING6
|
config NETUTILS_PING6
|
||||||
bool "ICMPv6 ping support"
|
bool "ICMPv6 ping support"
|
||||||
default n
|
default n
|
||||||
depends on NET_IPv6 && NET_ICMPv6 && NET_PKT
|
depends on NET_IPv6 && NET_ICMPv6 && NET_PKT
|
||||||
help
|
help
|
||||||
Build in support for a IPv6 ping command. This command ping will
|
Build in support for a IPv6 ping command. This command ping will
|
||||||
send the ICMPv6 ECHO_REQUEST and wait for the ICMPv6 ECHO_RESPONSE
|
send the ICMPv6 ECHO_REQUEST and wait for the ICMPv6 ECHO_RESPONSE
|
||||||
from the remote peer.
|
from the remote peer.
|
||||||
|
|
||||||
if NETUTILS_PING || NETUTILS_PING6
|
if NETUTILS_PING || NETUTILS_PING6
|
||||||
|
|
||||||
config NETUTILS_PING_SIGNO
|
config NETUTILS_PING_SIGNO
|
||||||
int "Ping timeout signal"
|
int "Ping timeout signal"
|
||||||
default 13
|
default 13
|
||||||
|
|
||||||
endif # NETUTILS_PING || NETUTILS_PING6
|
endif # NETUTILS_PING || NETUTILS_PING6
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user