repo: https://github.com/u-boot/u-boot commit: d80bb749fab53da72c4a0e09b8c2d2aaa3103c91 Change-Id: Ie6434426e1ec15bc08bb1832798e371f3fd5fb29
31 lines
455 B
Plaintext
31 lines
455 B
Plaintext
if ARCH_QEMU
|
|
|
|
config SYS_VENDOR
|
|
default "emulation"
|
|
|
|
config SYS_BOARD
|
|
default "qemu-arm"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "qemu-arm"
|
|
|
|
choice
|
|
prompt "QEMU ARM architecture"
|
|
default TARGET_QEMU_ARM_64BIT
|
|
|
|
config TARGET_QEMU_ARM_32BIT
|
|
bool "ARMv7-A, 32bit"
|
|
select ARCH_SUPPORT_PSCI
|
|
select BOARD_LATE_INIT
|
|
select CPU_V7A
|
|
select SYS_ARCH_TIMER
|
|
|
|
config TARGET_QEMU_ARM_64BIT
|
|
bool "ARMv8, 64bit"
|
|
select ARM64
|
|
select BOARD_LATE_INIT
|
|
|
|
endchoice
|
|
|
|
endif
|