summaryrefslogtreecommitdiffstats
path: root/src/cpu
diff options
context:
space:
mode:
authorAngel Pons <th3fanbus@gmail.com>2021-06-22 15:00:48 +0200
committerWerner Zeh <werner.zeh@siemens.com>2021-06-25 04:07:21 +0000
commit9d5c94ac7ae15d3f4579099ffac5234b340c8a35 (patch)
tree74755b06a58ce81e2b6393f1e5e734c4deb03207 /src/cpu
parent72bdda2582d631b965538c41cc2dac0ff09718db (diff)
downloadcoreboot-9d5c94ac7ae15d3f4579099ffac5234b340c8a35.tar.gz
coreboot-9d5c94ac7ae15d3f4579099ffac5234b340c8a35.tar.bz2
coreboot-9d5c94ac7ae15d3f4579099ffac5234b340c8a35.zip
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> Reviewed-on: https://review.coreboot.org/c/coreboot/+/55757 Reviewed-by: Patrick Rudolph <siro@das-labor.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/cpu')
-rw-r--r--src/cpu/qemu-x86/Kconfig2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/cpu/qemu-x86/Kconfig b/src/cpu/qemu-x86/Kconfig
index f6ccb884784a..674e05cc495b 100644
--- a/src/cpu/qemu-x86/Kconfig
+++ b/src/cpu/qemu-x86/Kconfig
@@ -51,12 +51,10 @@ config MAX_CPUS
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