diff options
author | Stefan Reinauer <reinauer@chromium.org> | 2011-10-04 16:21:17 -0700 |
---|---|---|
committer | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2012-03-29 22:35:12 +0200 |
commit | 1b632aff260695257b78bedc3742652916f2a724 (patch) | |
tree | 07696b90c5e97c096975166e22d4e3056413c136 /src/console/Kconfig | |
parent | 90dcdd43ee83b12ddd1cdafba7613971cbfa2117 (diff) |
Fix typos in src/console/Kconfig
- cash -> Cache
- make the new size of the cbmem console buffer the default
Change-Id: Ia906077257e93622ad56bc54a42f8184ade78b29
Signed-off-by: Stefan Reinauer <reinauer@google.com>
Reviewed-on: http://review.coreboot.org/726
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'src/console/Kconfig')
-rw-r--r-- | src/console/Kconfig | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/console/Kconfig b/src/console/Kconfig index fefbe2ed84..f1129a1279 100644 --- a/src/console/Kconfig +++ b/src/console/Kconfig @@ -201,15 +201,15 @@ config CONSOLE_CBMEM config CONSOLE_CBMEM_BUFFER_SIZE depends on CONSOLE_CBMEM hex "Room allocated for console output in CBMEM" - default 0xae00 + default 0x10000 help Space allocated for console output storage in CBMEM. The default - value (almost 45K or 0xaeoo bytes) is large enough to accommodate + value (64K or 0x10000 bytes) is large enough to accommodate even the BIOS_SPEW level. config CONSOLE_CAR_BUFFER_SIZE depends on CONSOLE_CBMEM - hex "Room allocated for console output in cash as RAM" + hex "Room allocated for console output in Cache as RAM" default 0xc00 help Console is used before RAM is initialized. This is the room reserved |