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>
This commit is contained in:
parent
2c6fcab228
commit
2db7790795
|
@ -50,6 +50,13 @@ config ARCH_RAMSTAGE_X86_64
|
||||||
bool
|
bool
|
||||||
select ARCH_X86
|
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
|
if ARCH_X86
|
||||||
|
|
||||||
config ARCH_X86_64_PGTBL_LOC
|
config ARCH_X86_64_PGTBL_LOC
|
||||||
|
|
|
@ -12,11 +12,8 @@ if CPU_QEMU_X86
|
||||||
|
|
||||||
config CPU_QEMU_X86_64
|
config CPU_QEMU_X86_64
|
||||||
bool "Experimental 64bit support"
|
bool "Experimental 64bit support"
|
||||||
select ARCH_BOOTBLOCK_X86_64
|
select ARCH_ALL_STAGES_X86_64
|
||||||
select ARCH_VERSTAGE_X86_64
|
|
||||||
select ARCH_ROMSTAGE_X86_64
|
|
||||||
select ARCH_POSTCAR_X86_64
|
select ARCH_POSTCAR_X86_64
|
||||||
select ARCH_RAMSTAGE_X86_64
|
|
||||||
|
|
||||||
config CPU_QEMU_X86_32
|
config CPU_QEMU_X86_32
|
||||||
bool
|
bool
|
||||||
|
|
Loading…
Reference in New Issue