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"
default 100
config SYSTEM_SET_LOGMASK_STACKSIZE
config SYSTEM_SETLOGMASK_STACKSIZE
int "setlogmask stack size"
default DEFAULT_TASK_STACKSIZE

View File

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

View File

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

View File

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