Files
Chloe M. 51e4543079 paw: boot: Use newest limine version
Signed-off-by: Chloe M. <chloe@mensia.org>
2026-06-22 02:00:37 +00:00

13 lines
318 B
Bash
Executable File

#!/bin/sh
#
# Copyright (c) 2026, Chloe M.
# Provided under the BSD-3 clause
#
if [ ! -d stand/limine ]; then
curl -L https://github.com/Limine-Bootloader/Limine/releases/latest/download/limine-binary.tar.gz | gunzip | tar -xf -
mkdir -p stand/
mv limine-binary stand/limine/
make -C stand/limine/
fi