diff options
author | Arthur Heymans <arthur@aheymans.xyz> | 2021-04-30 15:19:24 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2021-05-05 11:47:15 +0000 |
commit | c8116f6ea062dc60c6efd6a73510e69eb9b84c2d (patch) | |
tree | ad669b7f5082d9e49a0b158bae8a57abc9772b19 /src/mainboard/intel/baskingridge | |
parent | b761903b8bbcf33b1f159b7899e0970f2eac6498 (diff) |
nb/intel: Don't select VBOOT_SEPARATE_VERSTAGE
Now the bootblock is not limited to 64K so integrating vboot into the
bootblock reduces the binary size.
Change-Id: Ic92ecf8068f327a893d20924685ce571752d379f
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/52787
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-by: Patrick Rudolph <siro@das-labor.org>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/intel/baskingridge')
-rw-r--r-- | src/mainboard/intel/baskingridge/Makefile.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/intel/baskingridge/Makefile.inc b/src/mainboard/intel/baskingridge/Makefile.inc index 9e605009da..c69f7c8c5f 100644 --- a/src/mainboard/intel/baskingridge/Makefile.inc +++ b/src/mainboard/intel/baskingridge/Makefile.inc @@ -4,4 +4,4 @@ romstage-y += gpio.c romstage-y += chromeos.c ramstage-y += chromeos.c -verstage-$(CONFIG_VBOOT_SEPARATE_VERSTAGE) += chromeos.c +verstage-y += chromeos.c |