summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-09-07 10:49:02 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-09-07 10:49:02 -0600
commit622b83dce427ffc9c882b4497842d57eb79d2ea9 (patch)
tree4d6869101f74a4a74f422a8ce32c6fc545016f49
parent0c7ac0730d92870bb63f3017d45c9909df6b3ac7 (diff)
downloadnuttx-622b83dce427ffc9c882b4497842d57eb79d2ea9.tar.gz
nuttx-622b83dce427ffc9c882b4497842d57eb79d2ea9.tar.bz2
nuttx-622b83dce427ffc9c882b4497842d57eb79d2ea9.zip
Update ChangeLogs
-rw-r--r--apps/ChangeLog.txt6
-rwxr-xr-xnuttx/ChangeLog5
2 files changed, 10 insertions, 1 deletions
diff --git a/apps/ChangeLog.txt b/apps/ChangeLog.txt
index d7329189d..199d7beed 100644
--- a/apps/ChangeLog.txt
+++ b/apps/ChangeLog.txt
@@ -1045,3 +1045,9 @@
* Many Makefiles. For kernel build, the object file containing main
cannot go into library because of name collisions. The object file
must be handled as a special case in every Makefile (2014-9-7).
+ * apps/import/Make.defs: libapps.a needs to be added to the list of
+ libraries to link against (2014-9-7).
+ * apps/nshlib/nsh.h and nsh_ddcmd.c: Several commands must be disabled
+ in the kernel build because they depend on interfaces that are not
+ available outside of the kernel: dd, df, losetup, mkfatfs, mkdr, and
+ ps (2014-9-7).
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index f52380e75..a1b99fca0 100755
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -8413,4 +8413,7 @@
WINTOOL as well (2014-9-5).
* SAMA5D4-EK kernel configuration now builds NSH instead of examples/elf
(2014-9-6).
-
+ * libc/pthread/pthread_attrinit.c, sched/pthread/pthread_create.c, and
+ include/nuttx/pthread.h: Fix some conditional compilation in kernel
+ build mode. And, while we are touching this logic, make
+ g_default_pthread_attr const (2014-9-7).