From c25a2b887c032ecb24fd0f75c9129473dcbab691 Mon Sep 17 00:00:00 2001 From: Berkus Decker Date: Sun, 24 Feb 2019 00:01:07 +0200 Subject: [PATCH] Change qemu flags, disable noserial feature --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e87481f..caf56a1 100644 --- a/Makefile +++ b/Makefile @@ -28,6 +28,9 @@ TARGET_JSON = targets/$(TARGET).json SOURCES = $(wildcard src/**/*.rs) $(wildcard src/**/*.S) $(wildcard linker/**/*.ld) +DEVICE_FEATURES = --features "noserial" +QEMU_FEATURES = + OBJCOPY = cargo objcopy -- OBJCOPY_PARAMS = --strip-all -O binary @@ -36,7 +39,7 @@ DOCKER_CMD = docker run -it --rm -v $(shell pwd):/work -w /work QEMU_CMD = qemu-system-aarch64 # -d in_asm,unimp,int -S -QEMU_OPTS = -M raspi3 -d in_asm,int +QEMU_OPTS = -M raspi3 -d int QEMU_SERIAL = -serial null -serial stdio QEMU = /usr/local/Cellar/qemu/HEAD-3365de01b5-custom/bin/qemu-system-aarch64