corrected typo

This commit is contained in:
Adrien Bourmault 2021-02-28 20:01:45 +01:00
parent 6268762952
commit 3326b4a18b
Signed by: neox
GPG Key ID: 6EB408FE0ACEC664
1 changed files with 13 additions and 13 deletions

View File

@ -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\