Rename CONFIG_RAMLOG_CONSOLE_BUFSIZE to just CONFIG_RAMLOG_BUFSIZE

This commit is contained in:
Gregory Nutt 2014-07-01 12:00:40 -06:00
parent 14c7e04214
commit 1dd3952c8c
5 changed files with 5 additions and 5 deletions

View File

@ -1147,7 +1147,7 @@ Where <subdir> is one of the following:
Logging is currently set up to use 16Kb of memory:
CONFIG_RAMLOG_CONSOLE_BUFSIZE=16384
CONFIG_RAMLOG_BUFSIZE=16384
There are a few other configuration differences as necessary to support
this different device configuration. Just the do the 'diff' if you are

View File

@ -525,7 +525,7 @@ CONFIG_SERIAL=y
CONFIG_RAMLOG=y
CONFIG_RAMLOG_SYSLOG=y
# CONFIG_RAMLOG_CONSOLE is not set
CONFIG_RAMLOG_CONSOLE_BUFSIZE=16384
CONFIG_RAMLOG_BUFSIZE=16384
# CONFIG_RAMLOG_CRLF is not set
CONFIG_RAMLOG_NONBLOCKING=y
CONFIG_RAMLOG_NPOLLWAITERS=4

View File

@ -610,7 +610,7 @@ CONFIG_SERIAL=y
#
CONFIG_RAMLOG=y
CONFIG_RAMLOG_SYSLOG=y
CONFIG_RAMLOG_CONSOLE_BUFSIZE=1024
CONFIG_RAMLOG_BUFSIZE=1024
# CONFIG_RAMLOG_CRLF is not set
CONFIG_RAMLOG_NONBLOCKING=y
CONFIG_RAMLOG_NPOLLWAITERS=4

View File

@ -612,7 +612,7 @@ CONFIG_SERIAL=y
#
CONFIG_RAMLOG=y
CONFIG_RAMLOG_SYSLOG=y
CONFIG_RAMLOG_CONSOLE_BUFSIZE=1024
CONFIG_RAMLOG_BUFSIZE=1024
# CONFIG_RAMLOG_CRLF is not set
CONFIG_RAMLOG_NONBLOCKING=y
CONFIG_RAMLOG_NPOLLWAITERS=4

View File

@ -932,7 +932,7 @@ Where <subdir> is one of the following:
Logging is currently can be set up to use any amount of memory (here 8KB):
CONFIG_RAMLOG_CONSOLE_BUFSIZE=8192
CONFIG_RAMLOG_BUFSIZE=8192
STATUS:
2013-7-4: This configuration was last verified.