summaryrefslogtreecommitdiffstats
path: root/src/arch
diff options
context:
space:
mode:
authorArthur Heymans <arthur@aheymans.xyz>2018-06-06 18:19:56 +0200
committerPatrick Georgi <pgeorgi@google.com>2018-06-28 09:02:20 +0000
commit7bea0846db3ba262512a36170e8ea38135522001 (patch)
treefb3297651e6597b930395ec3db805d7014bc32c0 /src/arch
parent1b25c8efcae2954b86040083f38ffc4cdc765ecc (diff)
downloadcoreboot-7bea0846db3ba262512a36170e8ea38135522001.tar.gz
coreboot-7bea0846db3ba262512a36170e8ea38135522001.tar.bz2
coreboot-7bea0846db3ba262512a36170e8ea38135522001.zip
arch/x86: include verstage.c only when verstage is a separate stage
Change-Id: Ia75205001f2443cb8221a0762f182aae01ee615e Signed-off-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-on: https://review.coreboot.org/26924 Reviewed-by: Aaron Durbin <adurbin@chromium.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/arch')
-rw-r--r--src/arch/x86/Makefile.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/arch/x86/Makefile.inc b/src/arch/x86/Makefile.inc
index c15f8292094c..d8430c501ea4 100644
--- a/src/arch/x86/Makefile.inc
+++ b/src/arch/x86/Makefile.inc
@@ -180,10 +180,10 @@ verstage-y += memset.c
verstage-y += memcpy.c
verstage-y += memmove.c
verstage-$(CONFIG_X86_TOP4G_BOOTMEDIA_MAP) += mmap_boot.c
-# If C environment is used for bootblock it means there's no need
+# If verstage is a separate stage it means there's no need
# for a chipset-specific car_stage_entry() so use the generic one
# which just calls verstage().
-verstage-$(CONFIG_C_ENVIRONMENT_BOOTBLOCK) += verstage.c
+verstage-$(CONFIG_VBOOT_SEPARATE_VERSTAGE) += verstage.c
verstage-$(CONFIG_COLLECT_TIMESTAMPS_TSC) += timestamp.c