cowos

custom OS from scratch in C
git clone git://git.daat.foo/cowos.git
Log | Files | Refs | README | LICENSE

commit 9b8d1f0bbf5cf55518782ff1dc4f5e9f867de2c1
parent babc65305d37b396c8872cffddb7bb9b76c12545
Author: cowmonk <rekketstone@proton.me>
Date:   Fri, 23 May 2025 17:28:43 -0700

Getting rid of binaries and adding the limine boot config

Diffstat:
M.gitignore | 3++-
Disodir/boot/cowos | 0
Aisodir/boot/limine/limine.conf | 10++++++++++
3 files changed, 12 insertions(+), 1 deletion(-)

diff --git a/.gitignore b/.gitignore @@ -1,6 +1,7 @@ cowos.iso kernel/bin/ -limine/ +/limine/ +isodir/boot/cowos isodir/boot/limine/limine-bios.sys isodir/boot/limine/limine-bios-cd.bin isodir/boot/limine/limine-uefi-cd.bin diff --git a/isodir/boot/cowos b/isodir/boot/cowos Binary files differ. diff --git a/isodir/boot/limine/limine.conf b/isodir/boot/limine/limine.conf @@ -0,0 +1,10 @@ +# Timeout in seconds that Limine will use before automatically booting. +timeout: 5 + +# The entry name that will be displayed in the boot menu. +/cowos + # We use the Limine boot protocol. + protocol: limine + + # Path to the kernel to boot. boot():/ represents the partition on which limine.conf is located. + path: boot():/boot/cowos