summaryrefslogtreecommitdiff
path: root/apps/system
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2013-06-26 10:54:12 -0600
committerGregory Nutt <gnutt@nuttx.org>2013-06-26 10:54:12 -0600
commitd6fc7fd30ee2fb16e3e476565e37f9ae0eb87c67 (patch)
treeef2a180885105f33f94731e0a8c2468efe59bc42 /apps/system
parentbbdf7a9ec4b7af902c0036125da19419ded33d08 (diff)
downloadnuttx-d6fc7fd30ee2fb16e3e476565e37f9ae0eb87c67.tar.gz
nuttx-d6fc7fd30ee2fb16e3e476565e37f9ae0eb87c67.tar.bz2
nuttx-d6fc7fd30ee2fb16e3e476565e37f9ae0eb87c67.zip
Fix integration of RAM test into the build and configuration system
Diffstat (limited to 'apps/system')
-rw-r--r--apps/system/Kconfig4
-rw-r--r--apps/system/Make.defs4
2 files changed, 8 insertions, 0 deletions
diff --git a/apps/system/Kconfig b/apps/system/Kconfig
index 9ba734250..f683ac00a 100644
--- a/apps/system/Kconfig
+++ b/apps/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/apps/system/Make.defs b/apps/system/Make.defs
index d68953387..d27479599 100644
--- a/apps/system/Make.defs
+++ b/apps/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