From d77e2db3722f30a84a645975b2581efa98dbdaaa Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Wed, 26 Jun 2013 10:54:12 -0600 Subject: [PATCH] Fix integration of RAM test into the build and configuration system --- ChangeLog.txt | 2 ++ system/Kconfig | 4 ++++ system/Make.defs | 4 ++++ 3 files changed, 10 insertions(+) diff --git a/ChangeLog.txt b/ChangeLog.txt index bbe571785..36e28f1cb 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -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. diff --git a/system/Kconfig b/system/Kconfig index 9ba734250..f683ac00a 100644 --- a/system/Kconfig +++ b/system/Kconfig @@ -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 diff --git a/system/Make.defs b/system/Make.defs index d68953387..d27479599 100644 --- a/system/Make.defs +++ b/system/Make.defs @@ -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