summaryrefslogtreecommitdiff
path: root/nuttx/ChangeLog
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-01-28 17:43:55 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-01-28 17:43:55 +0000
commit00aaf1187f47fd3e9a2801b6468d1f382819981c (patch)
tree76d575d4d2acd9b74dcfbabb60727d85444fb733 /nuttx/ChangeLog
parente530202ed1c43f468e236add225e51080120ea56 (diff)
downloadnuttx-00aaf1187f47fd3e9a2801b6468d1f382819981c.tar.gz
nuttx-00aaf1187f47fd3e9a2801b6468d1f382819981c.tar.bz2
nuttx-00aaf1187f47fd3e9a2801b6468d1f382819981c.zip
Misc SYSLOG and STM32 serial fixes
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5576 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/ChangeLog')
-rw-r--r--nuttx/ChangeLog11
1 files changed, 10 insertions, 1 deletions
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index c2ce13738..039a79f62 100644
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -4057,4 +4057,13 @@
Serial was driver was not being built if there is no console
device. Obviously, the serial driver may be needed even in
this case.
-
+ * arch/arm/src/stm32/stm32_serial.c: If there is a serial console,
+ it would be ttyS0 and the others would be ttyS1-5. If there
+ is not serial console, was labeling them ttyS1-6; now labels them
+ ttyS0-5.
+ * fs/fs_syslog.c: Can't handle SYSLOG output to character device from
+ the IDLE task (because it can't block). syslog_putc now returns EOF
+ on failure and sets errno. Fixed some errors in error handling.
+ * libc/stdio/lib_syslogstream.c: Checking of return value from
+ syslog_putc was bogus. Switching to EOF for all errors solves
+ this.