From ae6c0b832c6b5009ba206d06aac0c1098cf95798 Mon Sep 17 00:00:00 2001 From: Sebastien Lorquet Date: Thu, 2 Jun 2016 16:26:32 +0200 Subject: [PATCH] Individual app kconfig fixes --- graphics/traveler/Kconfig | 7 +++++ netutils/ping/Kconfig | 61 ++++++++++++++++++++------------------- 2 files changed, 38 insertions(+), 30 deletions(-) diff --git a/graphics/traveler/Kconfig b/graphics/traveler/Kconfig index f1a02a4f9..df1fee8a6 100644 --- a/graphics/traveler/Kconfig +++ b/graphics/traveler/Kconfig @@ -2,8 +2,15 @@ # For a description of the syntax of this configuration file, # 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 + comment "Color configuration" choice diff --git a/netutils/ping/Kconfig b/netutils/ping/Kconfig index 81efef2bb..0986ebc94 100644 --- a/netutils/ping/Kconfig +++ b/netutils/ping/Kconfig @@ -1,30 +1,31 @@ -# -# For a description of the syntax of this configuration file, -# see the file kconfig-language.txt in the NuttX tools repository. -# - -config NETUTILS_PING - bool "ICMP ping support" - default n - depends on NET_IPv4 && NET_ICMP && NET_PKT - help - 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 - the remote peer. - -config NETUTILS_PING6 - bool "ICMPv6 ping support" - default n - depends on NET_IPv6 && NET_ICMPv6 && NET_PKT - help - Build in support for a IPv6 ping command. This command ping will - send the ICMPv6 ECHO_REQUEST and wait for the ICMPv6 ECHO_RESPONSE - from the remote peer. - -if NETUTILS_PING || NETUTILS_PING6 - -config NETUTILS_PING_SIGNO - int "Ping timeout signal" - default 13 - -endif # NETUTILS_PING || NETUTILS_PING6 \ No newline at end of file +# +# For a description of the syntax of this configuration file, +# see the file kconfig-language.txt in the NuttX tools repository. +# + +config NETUTILS_PING + bool "ICMP ping support" + default n + depends on NET_IPv4 && NET_ICMP && NET_PKT + help + 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 + the remote peer. + +config NETUTILS_PING6 + bool "ICMPv6 ping support" + default n + depends on NET_IPv6 && NET_ICMPv6 && NET_PKT + help + Build in support for a IPv6 ping command. This command ping will + send the ICMPv6 ECHO_REQUEST and wait for the ICMPv6 ECHO_RESPONSE + from the remote peer. + +if NETUTILS_PING || NETUTILS_PING6 + +config NETUTILS_PING_SIGNO + int "Ping timeout signal" + default 13 + +endif # NETUTILS_PING || NETUTILS_PING6 +