mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-01 08:55:34 +00:00
qemu: don't allow to select 32- and 64-bit
TARGET_QEMU_ARM_64BIT and TARGET_QEMU_ARM_32BIT should be mutually exclusive. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
This commit is contained in:
parent
ec8eef5e71
commit
a555557ddc
1 changed files with 9 additions and 5 deletions
|
@ -9,16 +9,20 @@ config SYS_BOARD
|
||||||
config SYS_CONFIG_NAME
|
config SYS_CONFIG_NAME
|
||||||
default "qemu-arm"
|
default "qemu-arm"
|
||||||
|
|
||||||
endif
|
choice
|
||||||
|
prompt "QEMU ARM architecture"
|
||||||
|
default TARGET_QEMU_ARM_64BIT
|
||||||
|
|
||||||
config TARGET_QEMU_ARM_32BIT
|
config TARGET_QEMU_ARM_32BIT
|
||||||
bool "Support qemu_arm"
|
bool "ARMv7-A, 32bit"
|
||||||
depends on ARCH_QEMU
|
|
||||||
select ARCH_SUPPORT_PSCI
|
select ARCH_SUPPORT_PSCI
|
||||||
select CPU_V7A
|
select CPU_V7A
|
||||||
select SYS_ARCH_TIMER
|
select SYS_ARCH_TIMER
|
||||||
|
|
||||||
config TARGET_QEMU_ARM_64BIT
|
config TARGET_QEMU_ARM_64BIT
|
||||||
bool "Support qemu_arm64"
|
bool "ARMv8, 64bit"
|
||||||
depends on ARCH_QEMU
|
|
||||||
select ARM64
|
select ARM64
|
||||||
|
|
||||||
|
endchoice
|
||||||
|
|
||||||
|
endif
|
||||||
|
|
Loading…
Add table
Reference in a new issue