Fix integration of RAM test into the build and configuration system

This commit is contained in:
Gregory Nutt 2013-06-26 10:54:12 -06:00
parent 4f13725f35
commit d77e2db372
3 changed files with 10 additions and 0 deletions

View File

@ -596,4 +596,6 @@
for a long time (2013-6-23).
* apps/examplex/nxhello: Correct default colors when in Y1 code mode.
(2013-6-24).
* system/Make.defs and Kconfig: The RAM test was not correctly built
into the configuration and build system.

View File

@ -19,6 +19,10 @@ menu "FLASH Erase-all Command"
source "$APPSDIR/system/flash_eraseall/Kconfig"
endmenu
menu "RAM test"
source "$APPSDIR/system/ramtest/Kconfig"
endmenu
menu "readline()"
source "$APPSDIR/system/readline/Kconfig"
endmenu

View File

@ -50,6 +50,10 @@ ifeq ($(CONFIG_SYSTEM_FLASH_ERASEALL),y)
CONFIGURED_APPS += system/flash_eraseall
endif
ifeq ($(CONFIG_SYSTEM_RAMTEST),y)
CONFIGURED_APPS += system/ramtest
endif
ifeq ($(CONFIG_SYSTEM_READLINE),y)
CONFIGURED_APPS += system/readline
endif