aboutsummaryrefslogtreecommitdiff
path: root/src/cpu
diff options
context:
space:
mode:
authorKeith Hui <buurin@gmail.com>2020-05-07 14:12:15 -0400
committerFelix Held <felix-coreboot@felixheld.de>2020-06-04 18:05:53 +0000
commit268d25715cb5efbfdd134d4a438084495ac8ee21 (patch)
tree2e0207341ee22c1e3cbe68abb9f8cf87bb37c751 /src/cpu
parentc61870108c80ee7173d542d55596d830299fc4f5 (diff)
cpu/intel/slot_1: Select 16KiB bootblock if console is enabled
We previously confirmed [1] that bootblock will grow beyond current 8KiB size if console is enabled. Automatically change to 16KiB if user enabled it in menuconfig. [1] https://review.coreboot.org/c/coreboot/+/36775 Change-Id: Ic9988c77cf9677167a382aa4dc7dcfa2bc4cbe02 Signed-off-by: Keith Hui <buurin@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/41460 Reviewed-by: Angel Pons <th3fanbus@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/cpu')
-rw-r--r--src/cpu/intel/slot_1/Kconfig1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/cpu/intel/slot_1/Kconfig b/src/cpu/intel/slot_1/Kconfig
index 6928335ada..2b6deb6673 100644
--- a/src/cpu/intel/slot_1/Kconfig
+++ b/src/cpu/intel/slot_1/Kconfig
@@ -32,6 +32,7 @@ config DCACHE_BSP_STACK_SIZE
config C_ENV_BOOTBLOCK_SIZE
hex
+ default 0x4000 if BOOTBLOCK_CONSOLE
default 0x2000
endif