mirror of
https://github.com/Zeal-Operating-System/ZealOS.git
synced 2024-12-25 23:10:32 +00:00
Make build script build Public Domain ISO even if ZealBooter-Limine UEFI BSD-2 ISO fails to build.
This commit is contained in:
parent
c179521dc3
commit
e3bee1c738
2 changed files with 2 additions and 2 deletions
|
@ -42,7 +42,7 @@ umount_tempdisk() {
|
|||
|
||||
set -e
|
||||
echo "Building ZealBooter..."
|
||||
( cd ../zealbooter && make distclean all )
|
||||
( cd ../zealbooter && make distclean all || echo "ERROR: ZealBooter build failed !")
|
||||
set +e
|
||||
|
||||
echo "Making temp vdisk, running auto-install ..."
|
||||
|
|
|
@ -83,7 +83,7 @@ override HEADER_DEPS := $(CFILES:.c=.d) $(ASFILES:.S=.d)
|
|||
all: $(KERNEL)
|
||||
|
||||
limine.h:
|
||||
curl -f https://raw.githubusercontent.com/limine-bootloader/limine/trunk/limine.h -o $@ || cp ../build/limine/limine.h limine.h
|
||||
curl https://raw.githubusercontent.com/limine-bootloader/limine/trunk/limine.h -o $@ || cp ../build/limine/limine.h limine.h || echo "ERROR: limine.h not found! Cannot build ZealBooter. "
|
||||
|
||||
# Link rules for the final kernel executable.
|
||||
$(KERNEL): $(OBJ)
|
||||
|
|
Loading…
Reference in a new issue