From f2ad50fedad9a412c9e9600b79ec2c68c63242e2 Mon Sep 17 00:00:00 2001 From: Lee Leahy Date: Mon, 8 Feb 2016 16:19:56 -0800 Subject: [PATCH] console: Disable SQUELCH_EARLY_SMP if SMP is not selected Add a "depends on SMP" to the value SQUELCH_EARLY_SMP Kconfig value to disable its selection when SMP is not enabled. TEST=Build for Galileo Change-Id: Ia3aa1d2169ed793e1bb26538b74b12347453d5af Signed-off-by: Lee Leahy Reviewed-on: https://review.coreboot.org/13639 Tested-by: build bot (Jenkins) Reviewed-by: FEI WANG Reviewed-by: Martin Roth --- src/console/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/src/console/Kconfig b/src/console/Kconfig index 85b04ef48e..83adc4f01c 100644 --- a/src/console/Kconfig +++ b/src/console/Kconfig @@ -10,6 +10,7 @@ config BOOTBLOCK_CONSOLE config SQUELCH_EARLY_SMP bool "Squelch AP CPUs from early console." default y + depends on SMP help When selected only the BSP CPU will output to early console.