summaryrefslogtreecommitdiff
path: root/apps/README.txt
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2013-06-01 17:25:16 -0600
committerGregory Nutt <gnutt@nuttx.org>2013-06-01 17:25:16 -0600
commitb81b86e1f8c8a4aa0e3d85df8148152268f74260 (patch)
treea58d724c28a1d1631c16625d87d1c3f5ff278606 /apps/README.txt
parent51dfcaa2147d375b9a66c50fd8db8c6f5e6133e4 (diff)
downloadnuttx-b81b86e1f8c8a4aa0e3d85df8148152268f74260.tar.gz
nuttx-b81b86e1f8c8a4aa0e3d85df8148152268f74260.tar.bz2
nuttx-b81b86e1f8c8a4aa0e3d85df8148152268f74260.zip
Updates to README files
Diffstat (limited to 'apps/README.txt')
-rw-r--r--apps/README.txt13
1 files changed, 7 insertions, 6 deletions
diff --git a/apps/README.txt b/apps/README.txt
index 55accfcf6..4451ef03f 100644
--- a/apps/README.txt
+++ b/apps/README.txt
@@ -33,7 +33,7 @@ NuttX directory. Like:
`- apps
If all of the above conditions are TRUE, then NuttX will be able to
-find the application directory. If your application directory has a
+find the application directory. If your application directory has a
different name or is location at a different position, then you will
have to inform the NuttX build system of that location. There are several
ways to do that:
@@ -61,7 +61,7 @@ collected during the make context build phase.
To execute an application function:
- exec_builtin() is defined in the nuttx/include/apps/builtin.h
+ exec_builtin() is defined in the nuttx/include/apps/builtin.h
NuttShell (NSH) Built-In Commands
---------------------------------
@@ -98,7 +98,7 @@ Application Configuration File
The old-style NuttX configuration uses a special configuration file is
used to configure which applications are to be included in the build.
The source for this file is configs/<board>/<configuration>/appconfig.
-The existence of the appconfig file in the board configuration directory\
+The existence of the appconfig file in the board configuration directory
is sufficient to enable building of applications.
The appconfig file is copied into the apps/ directory as .config when
@@ -250,12 +250,13 @@ A: Here are four:
a) Copy 'MyBoard' directory to configs/MyBoard.
b) Add a symbolic link to MyApplication at apps/external
c) Configure NuttX (usually by:
-
+
tools/configure.sh MyBoard/MyConfiguration
or simply by copying defconfig->nutt/.config,
- setenv.sh->nuttx/setenv.sh, Make.defs->nuttx/Make.defs,
- appconfig->apps/.config
+ setenv.sh->nuttx/setenv.sh, and Make.defs->nuttx/Make.defs
+ (and appconfig->apps/.config for the old-style, deprecated
+ configuration files).
Using the 'external' link makes it especially easy to add a
'built-in' application an existing configuration.