Attention is currently required from: Arthur Heymans, Patrick Rudolph. Hello Arthur Heymans, Patrick Rudolph,
I'd like you to do a code review. Please visit
https://review.coreboot.org/c/coreboot/+/55757
to review the following change.
Change subject: cpu/qemu-x86/Kconfig: Drop redundant selects ......................................................................
cpu/qemu-x86/Kconfig: Drop redundant selects
The `ARCH_POSTCAR_X86_32` and `ARCH_POSTCAR_X86_64` options are already selected indirectly. There's no need to explicitly select them.
Change-Id: Iaa2e99e6f0765741fc5af67180d116bb6cc23d38 Signed-off-by: Angel Pons th3fanbus@gmail.com --- M src/cpu/qemu-x86/Kconfig 1 file changed, 0 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/57/55757/1
diff --git a/src/cpu/qemu-x86/Kconfig b/src/cpu/qemu-x86/Kconfig index f6ccb88..674e05c 100644 --- a/src/cpu/qemu-x86/Kconfig +++ b/src/cpu/qemu-x86/Kconfig @@ -51,12 +51,10 @@ config CPU_QEMU_X86_64 bool "Experimental 64bit support" select ARCH_ALL_STAGES_X86_64 - select ARCH_POSTCAR_X86_64
config CPU_QEMU_X86_32 bool default n if CPU_QEMU_X86_64 default y select ARCH_ALL_STAGES_X86_32 - select ARCH_POSTCAR_X86_32 endif