Use custom Limine build
Some checks failed
Build ISO image / build-and-deploy (push) Failing after 12s
Build documentation / build-and-deploy (push) Successful in 35s

This commit is contained in:
2026-04-23 19:38:32 +02:00
parent 24332da967
commit d712604e4f
32 changed files with 112 additions and 2609 deletions

16
make/limine.mk Normal file
View File

@@ -0,0 +1,16 @@
LIMINE_OPTS=--enable-bios-cd \
--enable-bios \
--enable-uefi-x86-64 \
--enable-uefi-cd
all_limine:
mkdir -p build_limine && \
cd build_limine && \
../Limine/bootstrap && \
../Limine/configure $(LIMINE_OPTS) && \
make -j $(nproc) && \
rm -rf ../boot/limine && \
cp -r ./bin ../boot/limine
.PHONY: all_limine