Prep for NuttX-6.29 release

This commit is contained in:
Gregory Nutt 2013-07-31 14:25:06 -06:00
parent 4bb75f9a3f
commit 09a7da9c18

View File

@ -578,16 +578,16 @@
of the build-as-an-NSH-application configuration settings of the build-as-an-NSH-application configuration settings
(2013-6-12). (2013-6-12).
6.29 2013-xx-xx Gregory Nutt <gnutt@nuttx.org> 6.29 2013-07-31 Gregory Nutt <gnutt@nuttx.org>
* apps/examples/nsh, cxxtest, and helloxx: C++ initializers should be * apps/examples/nsh, cxxtest, and helloxx: C++ initializers should be
set once and, preferably, in the context of the task that uses any C++ set once and, preferably, in the context of the task that uses any C++
statically initialized classes. These only becomes an issue is cxxtest statically initialized classes. These only becomes an issue if cxxtest
or helloxx are built as NSH builtin applications. Then you want the or helloxx are built as NSH builtin applications. Then you want the
initialization done in cxxtext or helloxx and not in NSH (and certainly initialization done in cxxtext or helloxx and not in NSH (and certainly
not twice). Added configuration options to control who does the C++ not twice). Added configuration options to control who does the C++
initialization. NSH now does not do C++ initialization be default and initialization. NSH now does not do C++ initialization be default and
must be configured to do otherwise. Converserly, cxxtest and helloxx must be configured to do otherwise. Converely, cxxtest and helloxx
will do C++ initialization unless configured do otherwise (2013-6-21). will do C++ initialization unless configured do otherwise (2013-6-21).
* apps/examples/cxxtext: Add ostream test as provided by Michael * apps/examples/cxxtext: Add ostream test as provided by Michael
(2013-6-21). (2013-6-21).
@ -615,3 +615,5 @@
* apps/nshlib/nsh_fscmds.c: Add a 'cmp' command that can be used to * apps/nshlib/nsh_fscmds.c: Add a 'cmp' command that can be used to
compare two files for equivalence. Returns an indication if the files compare two files for equivalence. Returns an indication if the files
differ. Contributed by Andrew Tridgell (via Lorenz Meier) (2013-7-18). differ. Contributed by Andrew Tridgell (via Lorenz Meier) (2013-7-18).
6.30 2013-xx-xx Gregory Nutt <gnutt@nuttx.org>