rename target run-bios -> run

This commit is contained in:
Josh Holtrop 2020-10-20 00:09:38 -04:00
parent a66df19edc
commit 08fc9a5445
2 changed files with 4 additions and 4 deletions

View File

@ -6,9 +6,9 @@ all:
run-efi: all
qemu-system-x86_64 -bios OVMF.fd -hda build/hos-efi.img
.PHONY: run-bios
run-bios: all
qemu-system-x86_64 -hda build/hos-bios.img
.PHONY: run
run: all
qemu-system-x86_64 -hda build/hos.img
.PHONY: clean
clean:

View File

@ -100,6 +100,6 @@ EOF
env.depends("#{env.build_root}/hos.elf", "src/link.ld")
env.Disassemble("^/hos.elf.txt", "^/hos.elf")
env.EfiImage("build/hos-efi.img", %w[^/hos.elf])
env.BiosImage("build/hos-bios.img", %w[^/hos.elf])
env.BiosImage("build/hos.img", %w[^/hos.elf])
end
end