From 3326b4a18b0fd6bdbb269deada26fdfdfa362247 Mon Sep 17 00:00:00 2001 From: Adrien Bourmault Date: Sun, 28 Feb 2021 20:01:45 +0100 Subject: [PATCH] corrected typo --- Makefile | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/Makefile b/Makefile index c490a09..e283d22 100644 --- a/Makefile +++ b/Makefile @@ -321,44 +321,44 @@ all : $(CROSS-CC-DIR)/bin/x86_64-elf-gcc test: all installonimage @qemu-system-x86_64 -vga std -enable-kvm -machine type=q35 \ - -cpu host -s -rtc base=localtime -m $(ram) \ + -cpu host -rtc base=localtime -m $(ram) \ -drive file=$(installdisk),index=0,media=disk,format=raw \ -net nic,model=rtl8139 -audiodev id=pa,driver=pa \ -machine pcspk-audiodev=pa \ - -d guest_errors,int,pcall -D $(BUILDDIR)/qemu.log & + -d guest_errors,int,pcall -D $(BUILDDIR)/qemu.log run: test testnokvm: all installonimage @qemu-system-x86_64 -vga std -machine type=q35 \ - -cpu host -s -rtc base=localtime -m $(ram) \ + -cpu host -rtc base=localtime -m $(ram) \ -drive file=$(installdisk),index=0,media=disk,format=raw \ -net nic,model=rtl8139 -audiodev id=pa,driver=pa \ -machine pcspk-audiodev=pa \ - -d guest_errors,int,pcall -D $(BUILDDIR)/qemu.log & + -d guest_errors,int,pcall -D $(BUILDDIR)/qemu.log testnosnd: all installonimage @qemu-system-x86_64 -vga std -enable-kvm -machine type=q35 \ - -cpu host -s -rtc base=localtime -m $(ram) \ + -cpu host -rtc base=localtime -m $(ram) \ -drive file=$(installdisk),index=0,media=disk,format=raw \ -net nic,model=rtl8139 \ - -d guest_errors,int,pcall -D $(BUILDDIR)/qemu.log & + -d guest_errors,int,pcall -D $(BUILDDIR)/qemu.log test32: all installonimage @qemu-system-i386 -vga std -enable-kvm -machine type=q35 \ - -cpu host -s -rtc base=localtime -m $(ram) \ + -cpu host -rtc base=localtime -m $(ram) \ -drive file=$(installdisk),index=0,media=disk,format=raw \ -net nic,model=rtl8139 -audiodev id=pa,driver=pa \ -machine pcspk-audiodev=pa \ - -d guest_errors,int,pcall -D $(BUILDDIR)/qemu.log & + -d guest_errors,int,pcall -D $(BUILDDIR)/qemu.log gdb: all installonimage @setsid qemu-system-x86_64 -vga std -enable-kvm -machine type=q35 \ - -cpu host -s -rtc base=localtime -m $(ram) \ + -cpu host -rtc base=localtime -m $(ram) \ -drive file=$(installdisk),index=0,media=disk,format=raw \ -net nic,model=rtl8139 -audiodev id=pa,driver=pa \ - -machine pcspk-audiodev=pa -no-reboot -no-shutdown\ - -d guest_errors,int,pcall -s -S -D $(BUILDDIR)/qemu.log & + -machine pcspk-audiodev=pa -no-reboot -no-shutdown \ + -d guest_errors,int,pcall -s -S -D $(BUILDDIR)/qemu.log & @gdb \ -ex "set arch i386:x86-64" \ -ex "target extended-remote localhost:1234" \ @@ -377,7 +377,7 @@ ddd: all installonimage gdbnokvm: all installonimage @setsid qemu-system-x86_64 -vga std -machine type=q35 \ - -cpu host -s -rtc base=localtime -m $(ram) \ + -cpu host -rtc base=localtime -m $(ram) \ -drive file=$(installdisk),index=0,media=disk,format=raw \ -net nic,model=rtl8139 -audiodev id=pa,driver=pa \ -machine pcspk-audiodev=pa -no-reboot -no-shutdown\ @@ -390,7 +390,7 @@ gdbnokvm: all installonimage dddnokvm: all installonimage @setsid qemu-system-x86_64 -vga std -machine type=q35 \ - -cpu host -s -rtc base=localtime -m $(ram) \ + -cpu host -rtc base=localtime -m $(ram) \ -drive file=$(installdisk),index=0,media=disk,format=raw \ -net nic,model=rtl8139 -audiodev id=pa,driver=pa \ -machine pcspk-audiodev=pa -no-reboot -no-shutdown\