remove grub

This commit is contained in:
rami 2024-06-25 22:21:33 -04:00
parent 34687780df
commit 203483d8b2
2 changed files with 2 additions and 8 deletions

View File

@ -23,10 +23,9 @@ kernel: $(BUILDDIR)/$(KIMG)
$(BUILDDIR)/Hazel.iso: kernel
cp $(BUILDDIR)/kernel.bin boot/kernel.bin
grub-mkrescue -o $(BUILDDIR)/Hazel.iso .
iso: $(BUILDDIR)/Hazel.iso
qemu: iso
qemu-system-i386 -cdrom $(BUILDDIR)/Hazel.iso
qemu: kernel
qemu-system-i386 -kernel $(BUILDDIR)/$(KIMG)
clean:
rm build/* boot/*.bin

View File

@ -1,5 +0,0 @@
default=0
timeout=0
menuentry "Hazel" {
multiboot /boot/kernel.bin
}