diff options
author | Aaron Durbin <adurbin@chromium.org> | 2016-03-18 13:12:41 -0500 |
---|---|---|
committer | Aaron Durbin <adurbin@chromium.org> | 2016-03-21 14:41:21 +0100 |
commit | 57dbbbb5960c3720aadc66c1d6dbdbe131943bb7 (patch) | |
tree | fca41902a95248f563888b84151ce304638b138b /src/arch | |
parent | 57fcae10310745067408b114f168ed709710d790 (diff) |
arch/x86: honor CONFIG_X86_TOP4G_BOOTMEDIA_MAP for verstage
When CONFIG_X86_TOP4G_BOOTMEDIA_MAP was introduced verstage
was not updated. Correct this oversight.
Change-Id: I2775c08798906ba0ba55a361407d7d2b52313229
Signed-off-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-on: https://review.coreboot.org/14142
Reviewed-by: Andrey Petrov <andrey.petrov@intel.com>
Tested-by: build bot (Jenkins)
Diffstat (limited to 'src/arch')
-rw-r--r-- | src/arch/x86/Makefile.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/x86/Makefile.inc b/src/arch/x86/Makefile.inc index 249cdd1be6..1ba879573e 100644 --- a/src/arch/x86/Makefile.inc +++ b/src/arch/x86/Makefile.inc @@ -184,7 +184,7 @@ verstage-$(CONFIG_ARCH_RAMSTAGE_X86_32) += cpu_common.c verstage-y += memset.c verstage-y += memcpy.c verstage-y += memmove.c -verstage-y += mmap_boot.c +verstage-$(CONFIG_X86_TOP4G_BOOTMEDIA_MAP) += mmap_boot.c verstage-$(CONFIG_COLLECT_TIMESTAMPS) += timestamp.c |