Move VSN apps to apps/vsn
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3397 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
parent
e07f0db120
commit
f5b52450bc
|
@ -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.
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
<tr align="center" bgcolor="#e4e4e4">
|
||||
<td>
|
||||
<h1><big><font color="#3c34ec"><i>NuttX RTOS</i></font></big></h1>
|
||||
<p>Last Updated: March 18, 2011</p>
|
||||
<p>Last Updated: March 19, 2011</p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
@ -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.
|
||||
</pre></ul>
|
||||
|
||||
<table width ="100%">
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue