system: Fix typos

Fix typos in following files:

 - system/setlogmask/Kconfig
 - system/tee/Makefile
 - system/telnet/Makefile
 - system/spi/Kconfig
This commit is contained in:
SPRESENSE 2020-07-28 11:57:30 +09:00 committed by Alin Jerpelea
parent bc4b6a8894
commit 088df5f156
4 changed files with 5 additions and 5 deletions

View File

@ -21,7 +21,7 @@ config SYSTEM_SETLOGMASK_PRIORITY
int "setlogmask task priority" int "setlogmask task priority"
default 100 default 100
config SYSTEM_SET_LOGMASK_STACKSIZE config SYSTEM_SETLOGMASK_STACKSIZE
int "setlogmask stack size" int "setlogmask stack size"
default DEFAULT_TASK_STACKSIZE default DEFAULT_TASK_STACKSIZE

View File

@ -15,7 +15,7 @@ if SYSTEM_SPITOOL
config SPITOOL_PROGNAME config SPITOOL_PROGNAME
string "Program name" string "Program name"
default "hello" default "spi"
---help--- ---help---
This is the name of the program that will be used when the ELF This is the name of the program that will be used when the ELF
program is installed. program is installed.

View File

@ -41,7 +41,7 @@ include $(APPDIR)/Make.defs
PROGNAME = tee PROGNAME = tee
PRIORITY = $(CONFIG_SYSTEM_TEE_PRIORITY) PRIORITY = $(CONFIG_SYSTEM_TEE_PRIORITY)
STACKSIZE = $(CONFIG_SYSTEM_TEE_PRIORITY) STACKSIZE = $(CONFIG_SYSTEM_TEE_STACKSIZE)
MODULE = $(CONFIG_SYSTEM_TEE) MODULE = $(CONFIG_SYSTEM_TEE)
MAINSRC = tee.c MAINSRC = tee.c

View File

@ -43,7 +43,7 @@ PROGNAME = $(CONFIG_SYSTEM_TELNET_CHATD_PROGNAME)
PRIORITY = $(CONFIG_SYSTEM_TELNET_CHATD_PRIORITY) PRIORITY = $(CONFIG_SYSTEM_TELNET_CHATD_PRIORITY)
STACKSIZE = $(CONFIG_SYSTEM_TELNET_CHATD_STACKSIZE) STACKSIZE = $(CONFIG_SYSTEM_TELNET_CHATD_STACKSIZE)
MODULE = $(CONFIG_CONFIG_SYSTEM_TELNET_CHATD) MODULE = $(CONFIG_SYSTEM_TELNET_CHATD)
endif endif
@ -55,7 +55,7 @@ PROGNAME += $(CONFIG_SYSTEM_TELNET_CLIENT_PROGNAME)
PRIORITY += $(CONFIG_SYSTEM_TELNET_CLIENT_PRIORITY) PRIORITY += $(CONFIG_SYSTEM_TELNET_CLIENT_PRIORITY)
STACKSIZE += $(CONFIG_SYSTEM_TELNET_CLIENT_STACKSIZE) STACKSIZE += $(CONFIG_SYSTEM_TELNET_CLIENT_STACKSIZE)
MODULE = $(CONFIG_CONFIG_SYSTEM_TELNET_CLIENT) MODULE = $(CONFIG_SYSTEM_TELNET_CLIENT)
endif endif