Bora Guvendik has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/81343?usp=email )
Change subject: cpu/x86: Use correct config flag for 1GiB page table ......................................................................
cpu/x86: Use correct config flag for 1GiB page table
The patch below uses USE_1G_PAGETABLES config flag instead of the correct USE_1G_PAGES_TLB. https://review.coreboot.org/c/coreboot/+/80088
Signed-off-by: Bora Guvendik bora.guvendik@intel.com Change-Id: Ic19812bc1f90cbe7d3739c42a0314b3650e0501d --- M src/cpu/x86/64bit/Makefile.mk 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/43/81343/1
diff --git a/src/cpu/x86/64bit/Makefile.mk b/src/cpu/x86/64bit/Makefile.mk index 680ab2d..a8dc1a2 100644 --- a/src/cpu/x86/64bit/Makefile.mk +++ b/src/cpu/x86/64bit/Makefile.mk @@ -3,7 +3,7 @@ all_x86-y += mode_switch.S all_x86-y += mode_switch2.S
-ifeq ($(CONFIG_USE_1G_PAGETABLES),y) +ifeq ($(CONFIG_USE_1G_PAGES_TLB),y) PAGETABLE_SRC := pt1G.S else PAGETABLE_SRC := pt.S