Stefan Reinauer (stefan.reinauer@coreboot.org) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/8692
-gerrit
commit cfd321e78412078f19bcb6bb27241fdae96f3ace Author: Stefan Reinauer stefan.reinauer@coreboot.org Date: Sun Mar 15 04:34:03 2015 +0100
Add x64 support to src/arch/x86/Kconfig
Change-Id: I81f6d8a21ea0d8218f5a4aab2feb39be32f88e01 Signed-off-by: Stefan Reinauer stefan.reinauer@coreboot.org Signed-off-by: Scott Duplichan scott@notabs.org --- src/arch/x86/Kconfig | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+)
diff --git a/src/arch/x86/Kconfig b/src/arch/x86/Kconfig index 580814f..c798050 100644 --- a/src/arch/x86/Kconfig +++ b/src/arch/x86/Kconfig @@ -13,6 +13,8 @@ ## GNU General Public License for more details. ##
+# stage selectors for x86 + config ARCH_BOOTBLOCK_X86_32 bool default n @@ -30,6 +32,25 @@ config ARCH_RAMSTAGE_X86_32 bool default n
+# stage selectors for x64 + +config ARCH_BOOTBLOCK_X86_64 + bool + default n + select ARCH_X86 + +config ARCH_VERSTAGE_X86_64 + bool + default n + +config ARCH_ROMSTAGE_X86_64 + bool + default n + +config ARCH_RAMSTAGE_X86_64 + bool + default n + # This is an SMP option. It relates to starting up APs. # It is usually set in mainboard/*/Kconfig. # TODO: Improve description.