From f5b52450bc892155845ca46a0e1da1ed6496f3c5 Mon Sep 17 00:00:00 2001 From: patacongo Date: Sat, 19 Mar 2011 15:02:01 +0000 Subject: [PATCH] Move VSN apps to apps/vsn git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3397 42af7a65-404d-4744-a932-0658087f49c3 --- ChangeLog | 5 +++++ Documentation/NuttX.html | 4 +++- configs/vsn/nsh/appconfig | 12 ++++++------ 3 files changed, 14 insertions(+), 7 deletions(-) diff --git a/ChangeLog b/ChangeLog index 11056a44c7..1904cf0f0d 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 61b6e1d3ef..6d7414d3a0 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 0d7fd27f40..3371dc21ac 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