From e54f16e346a7f2c66d802fb78a6b24e53b732b83 Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Fri, 21 Mar 2014 14:25:51 -0700 Subject: [PATCH] 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 Reviewed-on: https://chromium-review.googlesource.com/191107 Reviewed-by: Julius Werner Commit-Queue: Gabe Black Tested-by: Gabe Black --- src/console/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/console/Kconfig b/src/console/Kconfig index a6499160c3..0338045ffe 100644 --- a/src/console/Kconfig +++ b/src/console/Kconfig @@ -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