summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-09-01 16:53:21 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-09-01 16:53:21 -0600
commit2419157883cb8790353d0bb0e5c6b2045fae76a5 (patch)
tree8a20c917feb0b70480b113cef9e4981be45dd116
parent1ea219af1ed405eba0c1de0cb35436f347d3d2ef (diff)
downloadnuttx-2419157883cb8790353d0bb0e5c6b2045fae76a5.tar.gz
nuttx-2419157883cb8790353d0bb0e5c6b2045fae76a5.tar.bz2
nuttx-2419157883cb8790353d0bb0e5c6b2045fae76a5.zip
Update ChangeLogs
-rw-r--r--apps/ChangeLog.txt2
-rwxr-xr-xnuttx/ChangeLog5
2 files changed, 7 insertions, 0 deletions
diff --git a/apps/ChangeLog.txt b/apps/ChangeLog.txt
index b5a1fe92c..e2e8a97f4 100644
--- a/apps/ChangeLog.txt
+++ b/apps/ChangeLog.txt
@@ -1018,4 +1018,6 @@
individual ELF test programs can link against the SYSCALL library
(if it is available) or against the C library to eliminate or
minimize the need for symbol tables (2014-8-29).
+ * apps/nshlib/nsh_proccmds.c: Fix NSH PS command: If there are no
+ arguments, it would print garbage for argument list (2014-9-1).
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index b15be9be5..c0d4ccc0e 100755
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -8359,3 +8359,8 @@
was started. Now, there is only one way, way (1). Way (2) might be
slightly more compact, but this is not worth carry the complexity of
two different ways of doing the same thing (2014-9-1).
+ * sched/init/os_start.c: Fix error in initialize of IDLE TCB due to last
+ change. The argument list is no long in the TCB, but in the stack.
+ But not for the IDLE task. It needs its own mini-argv[] list so that
+ it looks more like other threads (2014-9-1).
+