From 2f55de96a2545d9310411429553d99a3e5fff35b Mon Sep 17 00:00:00 2001 From: Greg Bowne Date: Sat, 31 Aug 2024 17:36:39 -0700 Subject: [PATCH] fixing build.sh changed boot4 to boot to reflect filenames correctly --- build.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.sh b/build.sh index b31e32f..1dff83e 100644 --- a/build.sh +++ b/build.sh @@ -17,12 +17,12 @@ for cmd in nasm gcc qemu-system-i386; do done # Compile the assembly file -echo "Compiling boot4.asm..." -nasm -f elf32 boot4.asm -o boot4.o +echo "Compiling boot.asm..." +nasm -f elf32 boot.asm -o boot.o # Compile and link the kernel echo "Compiling and linking kernel..." -gcc -m32 -ffreestanding -nostdlib kernel.c boot4.o -o kernel.bin -T linker.ld +gcc -m32 -ffreestanding -nostdlib kernel.c boot.o -o kernel.bin -T linker.ld # Check if compilation was successful if [ -f kernel.bin ]; then