From 90282778dd5c6ca069da89edacf00dfd5861e164 Mon Sep 17 00:00:00 2001 From: Alex Date: Fri, 10 Feb 2023 17:59:43 +0200 Subject: [PATCH] Serial null for COM3 and COM4 --- .gitignore | 2 ++ Makefile | 5 +++++ 2 files changed, 7 insertions(+) diff --git a/.gitignore b/.gitignore index ed8195bd..c3ad42c4 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,7 @@ iso_tmp_data initrd/system/include/* +initrd/system/*.raw +initrd/system/lib/*.raw !initrd/system/include/.gitkeep tools/* !tools/stage2_eltorito diff --git a/Makefile b/Makefile index 0c8cb31b..10fd1d81 100644 --- a/Makefile +++ b/Makefile @@ -60,6 +60,8 @@ QEMUFLAGS += -M raspi3b \ -cpu cortex-a57 \ -serial file:serial.log \ -serial file:profiler.log \ + -serial null \ + -serial null \ -kernel $(OSNAME).img endif @@ -174,11 +176,14 @@ clean: rm -f initrd.tar.gz $(OSNAME).iso $(OSNAME).img rm -f initrd/system/drivers/*.fex rm -f initrd/system/drivers/*.elf + rm -f initrd/system/drivers/*.raw rm -f initrd/system/*.fex rm -f initrd/system/*.elf + rm -f initrd/system/*.raw rm -f initrd/system/*.so rm -f initrd/system/*.a rm -f initrd/system/lib/*.a + rm -f initrd/system/lib/*.raw rm -f initrd/system/lib/*.so rm -f initrd/system/lib/*.o rm -f initrd/system/include/*.h