mirror of
https://github.com/smaeul/u-boot.git
synced 2025-09-12 04:56:02 +01:00
Commit 608b80b5b855 ("riscv: qemu: Enable PRE_CONSOLE_BUFFER") enables buffering console messages for QEMU RISC-V virtual machines so those printed before the video console is available will still show up on the display. Similarly, enable it for ARM virtual machines as well. Signed-off-by: Alper Nebi Yasak <alpernebiyasak@gmail.com> Reviewed-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng@tinylab.org>
28 lines
469 B
Plaintext
28 lines
469 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
|
|
|
|
config PRE_CON_BUF_ADDR
|
|
hex
|
|
default 0x40100000
|
|
|
|
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
|