Skip to content

Commit 197ee98

Browse files
committed
Fix name of iso target; ensure limine is installed
1 parent da831ad commit 197ee98

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

target/build.sh

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,10 @@ target_make_iso() {
5151
-no-emul-boot -boot-load-size 4 -boot-info-table -hfsplus \
5252
-apm-block-size 2048 --efi-boot /boot/limine/limine-uefi-cd.bin \
5353
-efi-boot-part --efi-boot-image --protective-msdos-label \
54-
iso -o ghost.iso
54+
iso -o $ISO_TGT
5555
failOnError
5656

57-
./limine-$LIMINE_VERSION/bin/limine bios-install ghost.iso
57+
./limine-$LIMINE_VERSION/bin/limine bios-install $ISO_TGT
5858
failOnError
5959
}
6060

@@ -108,10 +108,11 @@ target_verify_limine() {
108108
tar -xzf limine-$LIMINE_VERSION.tar.gz
109109

110110
echo "Building limine"
111-
pushd limine-$LIMINE_VERSION >/dev/null || exit 1
111+
pushd limine-$LIMINE_VERSION
112112
./configure --enable-bios --enable-bios-cd --enable-uefi-cd --enable-uefi-x86-64
113113
make -j"$(nproc)"
114-
popd >/dev/null || exit 1
114+
make install
115+
popd
115116
fi
116117
}
117118

0 commit comments

Comments
 (0)