summaryrefslogtreecommitdiff
path: root/nuttx/configs/vsn/nsh/appconfig
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/configs/vsn/nsh/appconfig')
-rwxr-xr-xnuttx/configs/vsn/nsh/appconfig36
1 files changed, 33 insertions, 3 deletions
diff --git a/nuttx/configs/vsn/nsh/appconfig b/nuttx/configs/vsn/nsh/appconfig
index d946c07a3..65e8c220f 100755
--- a/nuttx/configs/vsn/nsh/appconfig
+++ b/nuttx/configs/vsn/nsh/appconfig
@@ -35,8 +35,38 @@
#
############################################################################
-# Add the list of built-in apps needed by this configuration
+########################################################################
+#
+# Applications to be included within the NuttX binary as described
+# under the apps/README.txt
+#
+# Set thi config parameter above to: CONFIG_TASK_NAME_SIZE=16
+# In order to enable argv[0]=<task name> argument set the option
+# CONFIG_TASK_NAME_SIZE=16
+#
+
+# Invoke the following application after NuttX starts
+#CONFIG_BUILTIN_APP_START="hello"
+
+# Application Libraries
+CONFIGURED_APPS += nshlib/.built_always
+
+# Individual selection of built-in applications:
+
+# Hello world provide a simple skeleton/demo application
+CONFIGURED_APPS += hello/.built_always
+
+# Provide poweroff command to switch off the board
+CONFIGURED_APPS += poweroff/.built_always
+
+# Provide SDcard tool
+CONFIGURED_APPS += sdcard/.built_always
+
+# Provide RAMTRON tool
+CONFIGURED_APPS += ramtron/.built_always
-CONFIGURED_APPS += hello/.built_always poweroff/.built_always \
- sdcard/.built_always ramtron/.built_always nshlib/.built_always
+# Provide UNIX style free
+CONFIGURED_APPS += free/.built_always
+# Provide JAVA Virtual Machine (the Darjeeling JVM)
+#CONFIGURED_APPS += jvm/.built_always