diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2024-03-03 05:13:16 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2024-03-03 05:13:16 +0100 |
commit | 8308035c5a1def36d0469ee68c0075a89783fe51 (patch) | |
tree | d48edc9e8979be7ac8230562e6c11cee5e54b263 /target/riscv32 | |
parent | 7706f062f35f3406b6a47b8c2a9257c5a1dfc6c0 (diff) |
riscv32: qemu param -bios none only for noMMU
Diffstat (limited to 'target/riscv32')
-rw-r--r-- | target/riscv32/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/riscv32/Makefile b/target/riscv32/Makefile index 08d4d57ba..3d34f7f09 100644 --- a/target/riscv32/Makefile +++ b/target/riscv32/Makefile @@ -7,7 +7,7 @@ include $(ADK_TOPDIR)/mk/image.mk KERNEL:=$(LINUX_DIR)/arch/riscv/boot/Image QEMU_ARGS:=-M virt -m 512 -nographic -ifeq ($(ADK_TARGET_LIB_UCLIBC_NG),y) +ifeq ($(ADK_TARGET_WITH_MMU),) QEMU_ARGS+=-bios none endif ifeq ($(ADK_TARGET_QEMU_WITH_VIRTIO),y) |