diff options
Diffstat (limited to 'roms/u-boot/board/emulation/qemu-arm/Kconfig')
-rw-r--r-- | roms/u-boot/board/emulation/qemu-arm/Kconfig | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/roms/u-boot/board/emulation/qemu-arm/Kconfig b/roms/u-boot/board/emulation/qemu-arm/Kconfig new file mode 100644 index 000000000..95dbefa78 --- /dev/null +++ b/roms/u-boot/board/emulation/qemu-arm/Kconfig @@ -0,0 +1,23 @@ +if TARGET_QEMU_ARM_32BIT || TARGET_QEMU_ARM_64BIT + +config SYS_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 |