apps/; Change space to tab and help to ---help--- in Kconfig files.

This commit is contained in:
Xiang Xiao 2019-10-05 21:37:19 -06:00 committed by Gregory Nutt
parent ddd5a18b0c
commit e829f047bc
12 changed files with 83 additions and 83 deletions

View File

@ -29,7 +29,7 @@ config EXAMPLES_ELF_ROMFS
config EXAMPLES_ELF_CROMFS config EXAMPLES_ELF_CROMFS
bool "CROMFS" bool "CROMFS"
depends on FS_CROMFS && BUILD_FLAT depends on FS_CROMFS && BUILD_FLAT
---help--- ---help---
Automatically generates and mounts an internal CROMFS file Automatically generates and mounts an internal CROMFS file
system system

View File

@ -48,11 +48,11 @@ config EXAMPLES_MODBUSMASTER_PARITY
0 = NONE ; 1 = ODD; 2 = EVEN 0 = NONE ; 1 = ODD; 2 = EVEN
config EXAMPLES_MODBUSMASTER_SLAVEADDR config EXAMPLES_MODBUSMASTER_SLAVEADDR
int "Modbus Slave Address (master will query this slave)" int "Modbus Slave Address (master will query this slave)"
default 1 default 1
config EXAMPLES_MODBUSMASTER_SLAVEREG config EXAMPLES_MODBUSMASTER_SLAVEREG
int "Modbus Slave Holding Register address to query" int "Modbus Slave Holding Register address to query"
default 1 default 1
config EXAMPLES_MODBUSMASTER_TESTCOUNT config EXAMPLES_MODBUSMASTER_TESTCOUNT

View File

@ -47,15 +47,15 @@ config EXAMPLES_MODULE_ROMFS
bool "ROMFS" bool "ROMFS"
depends on FS_ROMFS && BUILD_FLAT depends on FS_ROMFS && BUILD_FLAT
---help--- ---help---
Automatically generates and mounts an internal ROMFS file Automatically generates and mounts an internal ROMFS file
system system
config EXAMPLES_MODULE_CROMFS config EXAMPLES_MODULE_CROMFS
bool "CROMFS" bool "CROMFS"
depends on FS_CROMFS && BUILD_FLAT depends on FS_CROMFS && BUILD_FLAT
---help--- ---help---
Automatically generates and mounts an internal CROMFS file Automatically generates and mounts an internal CROMFS file
system system
endchoice # Built-in file system type endchoice # Built-in file system type
@ -119,11 +119,11 @@ config EXAMPLES_MODULE_NOSTRIP
default n default n
depends on DEBUG_SYMBOLS depends on DEBUG_SYMBOLS
---help--- ---help---
By default, if debug symbols are enabled (via CONFIG_DEBUG_SYMBOLS), then the By default, if debug symbols are enabled (via CONFIG_DEBUG_SYMBOLS), then the
ELF executables will also retain debug symbols in the resulting ELF binaries. ELF executables will also retain debug symbols in the resulting ELF binaries.
Select this option if you do not want that behavior, this option will permit Select this option if you do not want that behavior, this option will permit
debug symbols in the base code but will strip debug symbols out of the ELF debug symbols in the base code but will strip debug symbols out of the ELF
binaries for a smaller ROM file system image. binaries for a smaller ROM file system image.
config EXAMPLES_MODULE_LIBC config EXAMPLES_MODULE_LIBC
bool "Link with LIBC" bool "Link with LIBC"

View File

@ -14,17 +14,17 @@ if EXAMPLES_NETLOOP
if NSH_BUILTIN_APPS if NSH_BUILTIN_APPS
config EXAMPLES_NETLOOP_KEEPALIVE config EXAMPLES_NETLOOP_KEEPALIVE
bool "Enable TCP KeepAlive test" bool "Enable TCP KeepAlive test"
default n default n
depends on NET_TCP_KEEPALIVE depends on NET_TCP_KEEPALIVE
config EXAMPLES_NETLOOP_STACKSIZE config EXAMPLES_NETLOOP_STACKSIZE
int "Loopback test stack size" int "Loopback test stack size"
default 2048 default 2048
config EXAMPLES_NETLOOP_PRIORITY config EXAMPLES_NETLOOP_PRIORITY
int "Loopback test task priority" int "Loopback test task priority"
default 100 default 100
endif # NSH_BUILTIN_APPS endif # NSH_BUILTIN_APPS
endif # EXAMPLES_NETLOOP endif # EXAMPLES_NETLOOP

View File

@ -12,7 +12,7 @@ config EXAMPLES_POWERLED
if EXAMPLES_POWERLED if EXAMPLES_POWERLED
config EXAMPLES_POWERLED_DEVPATH config EXAMPLES_POWERLED_DEVPATH
string "Powerled device path" string "Powerled device path"
default "dev/powerled0" default "dev/powerled0"
---help--- ---help---
The default path to the Powerled device. Default: /dev/powerled0 The default path to the Powerled device. Default: /dev/powerled0

View File

@ -4,10 +4,10 @@
# #
config EXAMPLES_SERIALBLASTER config EXAMPLES_SERIALBLASTER
tristate "Serial Blaster example" tristate "Serial Blaster example"
default n default n
---help--- ---help---
Enable the serial blaster example Enable the serial blaster example
if EXAMPLES_SERIALBLASTER if EXAMPLES_SERIALBLASTER

View File

@ -17,62 +17,62 @@ config EXAMPLES_UDGRAM_ADDR
default "/dev/fifo" default "/dev/fifo"
config EXAMPLES_UDGRAM_SERVER_APPNAME config EXAMPLES_UDGRAM_SERVER_APPNAME
string "Server executable name" string "Server executable name"
default "server" default "server"
depends on NSH_BUILTIN_APPS depends on NSH_BUILTIN_APPS
---help--- ---help---
This is the name of the built-in server application This is the name of the built-in server application
config EXAMPLES_UDGRAM_SERVER_STACKSIZE config EXAMPLES_UDGRAM_SERVER_STACKSIZE
int "Server stack size" int "Server stack size"
default 4096 default 4096
depends on NSH_BUILTIN_APPS depends on NSH_BUILTIN_APPS
---help--- ---help---
This is the stack size allocated when the server task runs This is the stack size allocated when the server task runs
config EXAMPLES_UDGRAM_SERVER_PRIORITY config EXAMPLES_UDGRAM_SERVER_PRIORITY
int "Server task priority" int "Server task priority"
default 100 default 100
depends on NSH_BUILTIN_APPS depends on NSH_BUILTIN_APPS
---help--- ---help---
This is the priority of the server task This is the priority of the server task
config EXAMPLES_UDGRAM_SERVER_PROGNAME config EXAMPLES_UDGRAM_SERVER_PROGNAME
string "Server program name" string "Server program name"
default "server" default "server"
depends on BUILD_LOADABLE depends on BUILD_LOADABLE
---help--- ---help---
This is the name of the program that will be used when the NSH ELF This is the name of the program that will be used when the NSH ELF
server program is installed. server program is installed.
config EXAMPLES_UDGRAM_CLIENT_APPNAME config EXAMPLES_UDGRAM_CLIENT_APPNAME
string "Client executable name" string "Client executable name"
default "client" default "client"
depends on NSH_BUILTIN_APPS depends on NSH_BUILTIN_APPS
---help--- ---help---
This is the name of the built-in client application This is the name of the built-in client application
config EXAMPLES_UDGRAM_CLIENT_STACKSIZE config EXAMPLES_UDGRAM_CLIENT_STACKSIZE
int "Client stack size" int "Client stack size"
default 4096 default 4096
depends on NSH_BUILTIN_APPS depends on NSH_BUILTIN_APPS
---help--- ---help---
This is the stack size allocated when the client task runs This is the stack size allocated when the client task runs
config EXAMPLES_UDGRAM_CLIENT_PRIORITY config EXAMPLES_UDGRAM_CLIENT_PRIORITY
int "Client task priority" int "Client task priority"
default 100 default 100
depends on NSH_BUILTIN_APPS depends on NSH_BUILTIN_APPS
---help--- ---help---
This is the priority of the client task This is the priority of the client task
config EXAMPLES_UDGRAM_CLIENT_PROGNAME config EXAMPLES_UDGRAM_CLIENT_PROGNAME
string "Client program name" string "Client program name"
default "client" default "client"
depends on BUILD_LOADABLE depends on BUILD_LOADABLE
---help--- ---help---
This is the name of the program that will be used when the NSH ELF This is the name of the program that will be used when the NSH ELF
client program is installed. client program is installed.
endif # EXAMPLES_UDGRAM endif # EXAMPLES_UDGRAM

View File

@ -179,7 +179,7 @@ config MB_MASTER_TOTAL_SLAVE_NUM
NOTE: The slave ID must be continuous from 1. NOTE: The slave ID must be continuous from 1.
config MB_MASTER_DELAY_MS_CONVERT config MB_MASTER_DELAY_MS_CONVERT
int "Convert Delay value" int "Convert Delay value"
default 200 default 200
---help--- ---help---
When master sends a broadcast frame, it should allow slaves to process When master sends a broadcast frame, it should allow slaves to process
@ -187,7 +187,7 @@ config MB_MASTER_DELAY_MS_CONVERT
after Convert Delay time duration. after Convert Delay time duration.
config MB_MASTER_TIMEOUT_MS_RESPOND config MB_MASTER_TIMEOUT_MS_RESPOND
int "Respond timeout value" int "Respond timeout value"
default 1000 default 1000
---help--- ---help---
When master sends frame, which is not broadcast, it should wait for When master sends frame, which is not broadcast, it should wait for

View File

@ -8,7 +8,7 @@ config NETUTILS_LIBCURL4NX
default n default n
depends on NET_TCP depends on NET_TCP
select LIBC_NETDB select LIBC_NETDB
select NETUTILS_NETLIB_GENERICURLPARSER select NETUTILS_NETLIB_GENERICURLPARSER
---help--- ---help---
Enable the NuttX cURL like library. Enable the NuttX cURL like library.

View File

@ -7,7 +7,7 @@ config NETUTILS_PING
bool "ICMP ping support" bool "ICMP ping support"
default n default n
depends on NET_ICMP depends on NET_ICMP
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.
@ -16,7 +16,7 @@ config NETUTILS_PING
bool "ICMPv6 ping support" bool "ICMPv6 ping support"
default n default n
depends on NET_ICMPv6 depends on NET_ICMPv6
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.

View File

@ -9,7 +9,7 @@ config SYSTEM_NXRECORDER
depends on AUDIO depends on AUDIO
---help--- ---help---
Enable support for the NxRecorder pcm raw data recorder library Enable support for the NxRecorder pcm raw data recorder library
and optional command line interface. and optional command line interface.
if SYSTEM_NXRECORDER if SYSTEM_NXRECORDER

View File

@ -48,25 +48,25 @@ config SPITOOL_DEFFREQ
Default SPI frequency (default: 4000000) Default SPI frequency (default: 4000000)
config SPITOOL_DEFMODE config SPITOOL_DEFMODE
int "SPI mode" int "SPI mode"
default 0 default 0
---help--- ---help---
Default SPI mode, where; Default SPI mode, where;
0 = CPOL=0, CHPHA=0 0 = CPOL=0, CHPHA=0
1 = CPOL=0, CHPHA=1 1 = CPOL=0, CHPHA=1
2 = CPOL=1, CHPHA=0 2 = CPOL=1, CHPHA=0
3 = CPOL=1, CHPHA=1 3 = CPOL=1, CHPHA=1
config SPITOOL_DEFWIDTH config SPITOOL_DEFWIDTH
int "SPI Bit width" int "SPI Bit width"
default 8 default 8
---help--- ---help---
Number of bits per SPI transfer (default 8) Number of bits per SPI transfer (default 8)
config SPITOOL_DEFWORDS config SPITOOL_DEFWORDS
int "Number of words to transfer" int "Number of words to transfer"
default 1 default 1
---help--- ---help---
Number of words to be transferred (default 1) Number of words to be transferred (default 1)
endif # SYSTEM_SPITOOL endif # SYSTEM_SPITOOL