rename myos.bin to katauos.bin everywhere

This commit is contained in:
2025-05-10 15:48:10 +03:00
parent 767e74976f
commit 4fbaed321c
3 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
bin/
myos.bin
katauos.bin
boot.iso
.vscode/
+4 -4
View File
@@ -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
+2 -2
View File
@@ -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
}