Skip to content

Commit 83d053a

Browse files
mintsukiFlyGoat
authored andcommitted
Fix qemu calls in make run
1 parent f7ed636 commit 83d053a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

GNUmakefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ run: all ovmf/ovmf-code-$(ARCH).fd ovmf/ovmf-vars-$(ARCH).fd
231231
mkdir -p boot/EFI/BOOT
232232
ifeq ($(ARCH),ia32)
233233
cp bin-$(ARCH)/$(OUTPUT).efi boot/EFI/BOOT/BOOTIA32.EFI
234-
qemu-system-$(ARCH) \
234+
qemu-system-i386 \
235235
-M q35 \
236236
-drive if=pflash,unit=0,format=raw,file=ovmf/ovmf-code-$(ARCH).fd,readonly=on \
237237
-drive if=pflash,unit=1,format=raw,file=ovmf/ovmf-vars-$(ARCH).fd \
@@ -240,7 +240,7 @@ ifeq ($(ARCH),ia32)
240240
endif
241241
ifeq ($(ARCH),x86_64)
242242
cp bin-$(ARCH)/$(OUTPUT).efi boot/EFI/BOOT/BOOTX64.EFI
243-
qemu-system-$(ARCH) \
243+
qemu-system-x86_64 \
244244
-M q35 \
245245
-drive if=pflash,unit=0,format=raw,file=ovmf/ovmf-code-$(ARCH).fd,readonly=on \
246246
-drive if=pflash,unit=1,format=raw,file=ovmf/ovmf-vars-$(ARCH).fd \

0 commit comments

Comments
 (0)