summaryrefslogtreecommitdiff
path: root/nuttx/ChangeLog
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-08-02 00:42:46 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-08-02 00:42:46 +0000
commit9bc6eb085a6a91f0e6fbd74ad98c3b1d32df0bc4 (patch)
treef5f5fb874369d5379c1bdd728e0789c499e7ce81 /nuttx/ChangeLog
parent2dfc5da16f3e3abc4b36413e8205e3dcd4df7928 (diff)
downloadnuttx-9bc6eb085a6a91f0e6fbd74ad98c3b1d32df0bc4.tar.gz
nuttx-9bc6eb085a6a91f0e6fbd74ad98c3b1d32df0bc4.tar.bz2
nuttx-9bc6eb085a6a91f0e6fbd74ad98c3b1d32df0bc4.zip
Move RAMLOG driver to drivers/syslog; Add ability to output debug information to any character device or file
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4996 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/ChangeLog')
-rw-r--r--nuttx/ChangeLog11
1 files changed, 11 insertions, 0 deletions
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index 3dc1dc527..717361d80 100644
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -3099,4 +3099,15 @@
* sched/on_exit.c, sched/task_exithook.c, and include/nuttx/sched.c: Add
support for multiple registered on_exit() functions if CONFIG_SCHED_ONEXIT_MAX
is defined.
+ * drivers/syslog/ramlog.c: Move the RAM SYSLOG device into drivers/syslog
+ so that it will be in the same directory as some new SYSLOGing devices
+ in the works.
+ * include/nuttx/syslog.h and drivers/syslog/ramlog.c: The SYSLOG putc function
+ now has a common name that is independent of the device that provides the
+ SYSLOG.
+ * include/nuttx/syslog.h and drivers/syslog/syslog.c: This is a new, generic
+ SYSLOG device that can redirect debug output to any character device or file.
+ So you can log debug output to a file or you can put the console on /dev/ttyS0
+ and the debug output on /dev/ttyS1.
+