The virt machine is a generic target, much like the arm virt machine. Intended to be simple to use and a good target to run large systems like linux on. At the moment simply support booting and simple uart and timer support.
11 lines
209 B
Makefile
11 lines
209 B
Makefile
# main project for qemu-riscv32
|
|
MODULES += \
|
|
app/shell
|
|
SUBARCH := 32
|
|
|
|
include project/virtual/test.mk
|
|
include project/virtual/fs.mk
|
|
include project/virtual/minip.mk
|
|
include project/target/qemu-virt-riscv.mk
|
|
|