mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-08-10 09:17:00 +02:00
The current name is inconsistent with SPL which uses CONFIG_SPL_TEXT_BASE and this makes it imposible to use CONFIG_VAL(). Rename it to resolve this problem. Signed-off-by: Simon Glass <sjg@chromium.org>
24 lines
419 B
Plaintext
24 lines
419 B
Plaintext
if TARGET_QEMU_ARM_32BIT || TARGET_QEMU_ARM_64BIT
|
|
|
|
config TEXT_BASE
|
|
default 0x00000000
|
|
|
|
config BOARD_SPECIFIC_OPTIONS # dummy
|
|
def_bool y
|
|
select CMD_QFW
|
|
select QFW_MMIO
|
|
imply VIRTIO_MMIO
|
|
imply VIRTIO_PCI
|
|
imply VIRTIO_NET
|
|
imply VIRTIO_BLK
|
|
|
|
endif
|
|
|
|
if TARGET_QEMU_ARM_64BIT && !TFABOOT
|
|
config BOARD_SPECIFIC_OPTIONS
|
|
imply SYS_MTDPARTS_RUNTIME
|
|
imply SET_DFU_ALT_INFO
|
|
|
|
source "board/emulation/common/Kconfig"
|
|
endif
|