console: Make cbmem depend on x86.
The cbmem implementation isn't supported on anything other than x86 right now and actually causes memory corruption on ARM machines. Until that's fixed, this will prevent people from turning it on and causing hard to track down errors. BUG=None TEST=Built for rambi and verified that CONSOLE_CBMEM was still enabled. Built for nyan and verified that it still wasn't. BRANCH=None Change-Id: I00e8aacf008acfe2f76d4eab82570f7c1cc89cab Signed-off-by: Gabe Black <gabeblack@google.com> Reviewed-on: https://chromium-review.googlesource.com/191107 Reviewed-by: Julius Werner <jwerner@chromium.org> Commit-Queue: Gabe Black <gabeblack@chromium.org> Tested-by: Gabe Black <gabeblack@chromium.org>
This commit is contained in:
parent
eb4e6fe293
commit
e54f16e346
1 changed files with 1 additions and 1 deletions
|
|
@ -222,7 +222,7 @@ config CONSOLE_NE2K_IO_PORT
|
|||
boundary, qemu needs broader align)
|
||||
|
||||
config CONSOLE_CBMEM
|
||||
depends on (EARLY_CBMEM_INIT || DYNAMIC_CBMEM)
|
||||
depends on (EARLY_CBMEM_INIT || DYNAMIC_CBMEM) && ARCH_X86
|
||||
bool "Send console output to a CBMEM buffer"
|
||||
default n
|
||||
help
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue