summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 07b4d7e59..4a94dde7b 100644
--- a/apps/ChangeLog.txt
+++ b/apps/ChangeLog.txt
@@ -1077,3 +1077,5 @@
* apps/nshlib/Kconfig and nsh_romfsetc.c: Add support for a custom NSH
ROMFS startup image header file location. From Martin Lederhilger
(2014-9-30).
+ * apps/nshlib/nsh_fscmds.c: Fix ls -l output for regular files (14-9-30).
+
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index 2278cac11..2bff498c3 100755
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -8719,4 +8719,9 @@
sched/mqueue to fs/mqueue. Convert the logic so that it uses the VFS to
managed the message queue namespace (instead of custom logic). By
default, now message queues can be seen in /var/mqueue (2014-9-29).
+ * arch/sim/src/up_simuart.c, up_uartwait.c: Removed old, strange
+ up_stdio.c and implemented a simulated UART driver to provide the
+ console input. Starts a separate, Linux domain pthread to read
+ the console input in raw mode and provides the incoming data to
+ NuttX via standard NuttX domain IPCs (2014-9-30).