mirror of
https://github.com/apache/nuttx-apps.git
synced 2025-07-08 21:18:48 +08:00
Fix integration of RAM test into the build and configuration system
This commit is contained in:
parent
4f13725f35
commit
d77e2db372
@ -596,4 +596,6 @@
|
|||||||
for a long time (2013-6-23).
|
for a long time (2013-6-23).
|
||||||
* apps/examplex/nxhello: Correct default colors when in Y1 code mode.
|
* apps/examplex/nxhello: Correct default colors when in Y1 code mode.
|
||||||
(2013-6-24).
|
(2013-6-24).
|
||||||
|
* system/Make.defs and Kconfig: The RAM test was not correctly built
|
||||||
|
into the configuration and build system.
|
||||||
|
|
||||||
|
@ -19,6 +19,10 @@ menu "FLASH Erase-all Command"
|
|||||||
source "$APPSDIR/system/flash_eraseall/Kconfig"
|
source "$APPSDIR/system/flash_eraseall/Kconfig"
|
||||||
endmenu
|
endmenu
|
||||||
|
|
||||||
|
menu "RAM test"
|
||||||
|
source "$APPSDIR/system/ramtest/Kconfig"
|
||||||
|
endmenu
|
||||||
|
|
||||||
menu "readline()"
|
menu "readline()"
|
||||||
source "$APPSDIR/system/readline/Kconfig"
|
source "$APPSDIR/system/readline/Kconfig"
|
||||||
endmenu
|
endmenu
|
||||||
|
@ -50,6 +50,10 @@ ifeq ($(CONFIG_SYSTEM_FLASH_ERASEALL),y)
|
|||||||
CONFIGURED_APPS += system/flash_eraseall
|
CONFIGURED_APPS += system/flash_eraseall
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifeq ($(CONFIG_SYSTEM_RAMTEST),y)
|
||||||
|
CONFIGURED_APPS += system/ramtest
|
||||||
|
endif
|
||||||
|
|
||||||
ifeq ($(CONFIG_SYSTEM_READLINE),y)
|
ifeq ($(CONFIG_SYSTEM_READLINE),y)
|
||||||
CONFIGURED_APPS += system/readline
|
CONFIGURED_APPS += system/readline
|
||||||
endif
|
endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user