diff --git a/.gitignore b/.gitignore index 12095de..6e77b83 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,4 @@ bin/ -myos.bin +katauos.bin boot.iso .vscode/ diff --git a/Makefile b/Makefile index 6a22dad..6d961b2 100644 --- a/Makefile +++ b/Makefile @@ -20,12 +20,12 @@ LDFLAGS = -m elf_i386 -L$(shell $(CC) -print-libgcc-file-name | xargs dirname)/3 LDSCRIPT = link.ld # Define the output file -OUTPUT = myos.bin +OUTPUT = katauos.bin all: $(OUTPUT) create-image: - cp myos.bin grubshit/boot/ + cp katauos.bin grubshit/boot/ dd if=/dev/zero of=boot.iso bs=1M count=256 parted boot.iso --script mklabel msdos parted boot.iso --script mkpart primary fat32 1MiB 100% @@ -40,7 +40,7 @@ create-image: sudo losetup -D image: - cp myos.bin grubshit/boot + cp katauos.bin grubshit/boot sudo losetup /dev/loop0 boot.iso sudo losetup /dev/loop1 boot.iso -o 1048576 sudo mount /dev/loop1 /mnt @@ -53,7 +53,7 @@ test: qemu-system-i386 -drive file=boot.iso,media=disk,format=raw -m 4096M -d int debug: - qemu-system-i386 -s -S -kernel myos.bin -monitor stdio + qemu-system-i386 -s -S -kernel katauos.bin -monitor stdio test-bochs: bochs -f bochsrc diff --git a/grubshit/boot/grub/grub.cfg b/grubshit/boot/grub/grub.cfg index 04e9d73..a0a6adb 100644 --- a/grubshit/boot/grub/grub.cfg +++ b/grubshit/boot/grub/grub.cfg @@ -1,8 +1,8 @@ set default=0 set timeout=5 -menuentry "katauOS" { - multiboot /boot/myos.bin +menuentry "KatauOS" { + multiboot /boot/katauos.bin # set gfxpayload=1280x720x32 boot }