mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 05:37:54 +00:00
b5c780993c
Instead of having a generic "virt_qemu" board use "virt_qemu_<arch>" in order to have a clean distinction between boards. Current supported boards are "virt_qemu_arm_v7a", "virt_qemu_arm_v8a", and "virt_qemu_riscv". issue #4034
12 lines
340 B
Plaintext
12 lines
340 B
Plaintext
# local variable for run-tool arguments used for running scenarios in Qemu
|
|
QEMU_RUN_OPT := --include power_on/qemu --include log/qemu
|
|
|
|
# kernel to use
|
|
KERNEL ?= hw
|
|
|
|
# board to use (riscv_qemu)
|
|
BOARD ?= virt_qemu_riscv
|
|
|
|
# local variable for run-tool arguments that depend on the used board
|
|
BOARD_RUN_OPT(virt_qemu_riscv) = $(QEMU_RUN_OPT)
|