diff options
author | Angel Pons <th3fanbus@gmail.com> | 2020-09-25 10:14:45 +0200 |
---|---|---|
committer | Nico Huber <nico.h@gmx.de> | 2020-09-26 11:42:22 +0000 |
commit | 2db779079585ed894189fad98a1a57b365e78d98 (patch) | |
tree | 67119ce610d90166dfd61a475839b5551ba7cbf1 /src/arch | |
parent | 2c6fcab2281e73f39ee42b78794d44a5ff465d32 (diff) |
arch/x86: Introduce `ARCH_ALL_STAGES_X86_64`
Though only one platform uses it, this will save some redundancy.
Change-Id: Ic151efe5dd9b7c89f779ac3e10c3a045f07221d3
Signed-off-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/45730
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Nico Huber <nico.h@gmx.de>
Diffstat (limited to 'src/arch')
-rw-r--r-- | src/arch/x86/Kconfig | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/arch/x86/Kconfig b/src/arch/x86/Kconfig index d906436a8c..14f542aa69 100644 --- a/src/arch/x86/Kconfig +++ b/src/arch/x86/Kconfig @@ -50,6 +50,13 @@ config ARCH_RAMSTAGE_X86_64 bool select ARCH_X86 +config ARCH_ALL_STAGES_X86_64 + bool + select ARCH_BOOTBLOCK_X86_64 + select ARCH_VERSTAGE_X86_64 + select ARCH_ROMSTAGE_X86_64 + select ARCH_RAMSTAGE_X86_64 + if ARCH_X86 config ARCH_X86_64_PGTBL_LOC |