diff --git a/.gitignore b/.gitignore index 429c21f..e736961 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,5 @@ bin/ *.o os-image *.dis +boot/ +*.iso diff --git a/Makefile b/Makefile index 3f0e73d..4a99e2c 100644 --- a/Makefile +++ b/Makefile @@ -28,7 +28,7 @@ bootloader.bin : src/bootloader/bootloader.asm nasm $< -f bin -o $@ clean: - rm -fr *.bin *.dis *.o os-image *.map boot/ + rm -fr *.bin *.dis *.o os-image *.map boot/ *.iso kernel.dis : kernel.bin ndisasm -b 32 $< > $@ diff --git a/boot/grub/grub.cfg b/boot/grub/grub.cfg deleted file mode 100644 index c3ebe15..0000000 --- a/boot/grub/grub.cfg +++ /dev/null @@ -1,3 +0,0 @@ -menuentry "eOS" { - multiboot /boot/eOS.bin -} diff --git a/eOS.iso b/eOS.iso deleted file mode 100644 index 1c2eff8..0000000 Binary files a/eOS.iso and /dev/null differ