diff --git a/ChangeLog b/ChangeLog
index 11056a44c79..1904cf0f0d4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1597,3 +1597,8 @@
* examples/nsh and apps/nshlib - Move the core NuttShell (NSH) logic
out of the exemples directory and into the apps/directory where
it belongs.
+ * apps/Makefile and configs/*/appconfig - Use '=' as the delimiter
+ instead of '/' so that sub-directories in apps/ can be used.
+ * apps/vsn - Move all VSN apps to apps/vsn.
+
+
diff --git a/Documentation/NuttX.html b/Documentation/NuttX.html
index 61b6e1d3ef9..6d7414d3a0b 100644
--- a/Documentation/NuttX.html
+++ b/Documentation/NuttX.html
@@ -8,7 +8,7 @@
NuttX RTOS
- Last Updated: March 18, 2011
+ Last Updated: March 19, 2011
|
@@ -2248,6 +2248,8 @@ buildroot-1.10 2011-xx-xx <spudmonkey@racsa.co.cr>
.exe files). That is probably not usable for most NuttX targets.
Instead, you should use this i486-elf-gcc to generate true ELF binaries
under Cygwin.
+ * Makefile - Alter copy arguements to avoid permissions problems when
+ copying NuttX header files.
diff --git a/configs/vsn/nsh/appconfig b/configs/vsn/nsh/appconfig
index 0d7fd27f402..3371dc21acf 100755
--- a/configs/vsn/nsh/appconfig
+++ b/configs/vsn/nsh/appconfig
@@ -54,19 +54,19 @@ CONFIGURED_APPS += nshlib=.built_always
# Individual selection of built-in applications:
# Hello world provide a simple skeleton/demo application
-CONFIGURED_APPS += hello=.built_always
+CONFIGURED_APPS += vsn/hello=.built_always
# Provide poweroff command to switch off the board
-CONFIGURED_APPS += poweroff=.built_always
+CONFIGURED_APPS += vsn/poweroff=.built_always
# Provide SDcard tool
-CONFIGURED_APPS += sdcard=.built_always
+CONFIGURED_APPS += vsn/sdcard=.built_always
# Provide RAMTRON tool
-CONFIGURED_APPS += ramtron=.built_always
+CONFIGURED_APPS += vsn/ramtron=.built_always
# Provide UNIX style free
-CONFIGURED_APPS += free=.built_always
+CONFIGURED_APPS += vsn/free=.built_always
# Provide JAVA Virtual Machine (the Darjeeling JVM)
-#CONFIGURED_APPS += jvm=.built_always
+#CONFIGURED_APPS += vsn/jvm=.built_always