mirror of
https://github.com/Zeal-Operating-System/ZealOS.git
synced 2024-12-25 23:10:32 +00:00
Make build script attempt to update limine and rebuild latest each build.
This commit is contained in:
parent
091f07423a
commit
c58fa6561d
1 changed files with 9 additions and 1 deletions
|
@ -78,10 +78,18 @@ umount_tempdisk
|
||||||
echo "Building Distro ISO ..."
|
echo "Building Distro ISO ..."
|
||||||
qemu-system-x86_64 -machine q35,accel=kvm -drive format=raw,file=$TMPDISK -m 1G -rtc base=localtime -smp 4 -device isa-debug-exit
|
qemu-system-x86_64 -machine q35,accel=kvm -drive format=raw,file=$TMPDISK -m 1G -rtc base=localtime -smp 4 -device isa-debug-exit
|
||||||
|
|
||||||
|
if [ -d "limine" ]
|
||||||
|
then
|
||||||
|
cd limine
|
||||||
|
git pull
|
||||||
|
rm limine-deploy
|
||||||
|
rm limine-version
|
||||||
|
cd ..
|
||||||
|
fi
|
||||||
if [ ! -d "limine" ]; then
|
if [ ! -d "limine" ]; then
|
||||||
git clone https://github.com/limine-bootloader/limine.git --branch=v4.x-branch-binary --depth=1
|
git clone https://github.com/limine-bootloader/limine.git --branch=v4.x-branch-binary --depth=1
|
||||||
make -C limine
|
|
||||||
fi
|
fi
|
||||||
|
make -C limine
|
||||||
|
|
||||||
mount_tempdisk
|
mount_tempdisk
|
||||||
echo "Extracting MyDistro ISO from vdisk ..."
|
echo "Extracting MyDistro ISO from vdisk ..."
|
||||||
|
|
Loading…
Reference in a new issue