diff --git a/Documentation/NuttxPortingGuide.html b/Documentation/NuttxPortingGuide.html
index c4a6c90a76..21212a3863 100644
--- a/Documentation/NuttxPortingGuide.html
+++ b/Documentation/NuttxPortingGuide.html
@@ -4063,7 +4063,6 @@ build
CONFIG_SIG_SIGWORK
: The signal number that will be used to wake-up
the worker thread. Default: 4
-
CONFIG_SCHED_WAITPID
: Enables the waitpid()
API
CONFIG_SYSLOG
: Enables general system logging support.
CONFIG_SYSLOG_DEVPATH
: The full path to the system logging device.
+ Default "/dev/ramlog"
(RAMLOG) or "dev/ttyS1;
(CHARDEV).
- At present, the only system loggin device is a circular buffer in RAM.
+ At present, there are two system loggins devices available.
If CONFIG_SYSLOG
is selected, then these options are also available.
+ First, any a generic character device that may be used as the SYSLOG. +
+CONFIG_SYSLOG_CHAR
:
+ Enable the generic character device for the SYSLOG.
+ NOTE: No more than one SYSLOG device should be configured.
+ + Alternatively, a circular buffer in RAM can be used as the SYSLOGing device. + The contents of this RAM buffer can be dumped using the NSH dmesg command. +
CONFIG_RAMLOG
: Enables the RAM logging feature
Last Updated: July 4, 2012
+Last Updated: August 1, 2012