A poorly written OS for the x86 arch. (WIP)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
eOS/grub_compile.sh

21 lines
528 B

3 years ago
#!/usr/bin/bash
srcdir=src
bindir=bin
make_grub() {
echo "Making GRUB..."
mkdir -p $bindir/boot/grub
3 years ago
cp $bindir/kernel.bin $bindir/boot/eOS.bin
3 years ago
cp $srcdir/grub/grub.cfg $bindir/boot/grub/grub.cfg
grub-mkrescue -o $bindir/eOS.iso $bindir
}
compile_kernel() {
echo "Compiling kernel... "
gcc -fno-pie -m32 -Os -ffreestanding -c $srcdir/kernel/kernel.c -o $bindir/kernel.o && gcc -o $bindir/kernel.bin $bindir/kernel.o -Wl,--oformat=binary -ffreestanding -nostdlib -shared -Ttext 0x1000 -m32
}
compile_kernel
make_grub