diff options
author | Lee Leahy <leroy.p.leahy@intel.com> | 2016-02-08 16:19:56 -0800 |
---|---|---|
committer | Leroy P Leahy <leroy.p.leahy@intel.com> | 2016-02-09 17:14:50 +0100 |
commit | f2ad50fedad9a412c9e9600b79ec2c68c63242e2 (patch) | |
tree | 2919e7594792815e39981742820c7e0a28e2c218 | |
parent | 87df8d08d676f79b894da84ebe6f8a57f69ba5b1 (diff) |
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 <leroy.p.leahy@intel.com>
Reviewed-on: https://review.coreboot.org/13639
Tested-by: build bot (Jenkins)
Reviewed-by: FEI WANG <wangfei.jimei@gmail.com>
Reviewed-by: Martin Roth <martinroth@google.com>
-rw-r--r-- | src/console/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
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. |