Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
nuttx-apps
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
f4grx
nuttx-apps
Commits
d77e2db3
Commit
d77e2db3
authored
11 years ago
by
Gregory Nutt
Browse files
Options
Downloads
Patches
Plain Diff
Fix integration of RAM test into the build and configuration system
parent
4f13725f
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
ChangeLog.txt
+2
-0
2 additions, 0 deletions
ChangeLog.txt
system/Kconfig
+4
-0
4 additions, 0 deletions
system/Kconfig
system/Make.defs
+4
-0
4 additions, 0 deletions
system/Make.defs
with
10 additions
and
0 deletions
ChangeLog.txt
+
2
−
0
View file @
d77e2db3
...
...
@@ -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.
This diff is collapsed.
Click to expand it.
system/Kconfig
+
4
−
0
View file @
d77e2db3
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
system/Make.defs
+
4
−
0
View file @
d77e2db3
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment