blob: 5ae56da7645a1372bff8b08cef5d811a2f45a96a [file] [log] [blame]
Bin Meng510e3792018-09-26 06:55:21 -07001if TARGET_QEMU_VIRT
2
3config SYS_BOARD
4 default "qemu-riscv"
5
6config SYS_VENDOR
7 default "emulation"
8
9config SYS_CPU
10 default "qemu"
11
12config SYS_CONFIG_NAME
13 default "qemu-riscv"
14
15config SYS_TEXT_BASE
16 default 0x80000000
17
18config BOARD_SPECIFIC_OPTIONS # dummy
19 def_bool y
20 imply SYS_NS16550
Bin Meng3c5196d2018-10-15 02:21:13 -070021 imply VIRTIO_MMIO
22 imply VIRTIO_NET
23 imply VIRTIO_BLK
Bin Meng510e3792018-09-26 06:55:21 -070024
25endif