summaryrefslogtreecommitdiff
path: root/apps
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
parentbbdf7a9ec4b7af902c0036125da19419ded33d08 (diff)
downloadpx4-nuttx-d6fc7fd30ee2fb16e3e476565e37f9ae0eb87c67.tar.gz
px4-nuttx-d6fc7fd30ee2fb16e3e476565e37f9ae0eb87c67.tar.bz2
px4-nuttx-d6fc7fd30ee2fb16e3e476565e37f9ae0eb87c67.zip
Fix integration of RAM test into the build and configuration system
Diffstat (limited to 'apps')
-rw-r--r--apps/ChangeLog.txt2
-rw-r--r--apps/system/Kconfig4
-rw-r--r--apps/system/Make.defs4
3 files changed, 10 insertions, 0 deletions
diff --git a/apps/ChangeLog.txt b/apps/ChangeLog.txt
index bbe571785..36e28f1cb 100644
--- a/apps/ChangeLog.txt
+++ b/apps/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/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