X-Git-Url: https://glassweightruler.freedombox.rocks/gitweb/Ventoy.git/blobdiff_plain/08d218fd828faf918d6dbdf58e23beb02aebcfdf..cc9ff415899235f427e251c0226d96159d4f9fca:/GRUB2/buildgrub.sh diff --git a/GRUB2/buildgrub.sh b/GRUB2/buildgrub.sh index c172a68..a9de4f5 100644 --- a/GRUB2/buildgrub.sh +++ b/GRUB2/buildgrub.sh @@ -23,7 +23,7 @@ echo '======== build grub2 for x86_64-efi ===============' make distclean ./autogen.sh ./configure --with-platform=efi --prefix=$VT_GRUB_DIR/INSTALL/ -make -j 16 +make -j 16 || exit 1 sh install.sh uefi @@ -32,7 +32,7 @@ echo '======== build grub2 for i386-efi ===============' make distclean ./autogen.sh ./configure --target=i386 --with-platform=efi --prefix=$VT_GRUB_DIR/INSTALL/ -make -j 16 +make -j 16 || exit 1 sh install.sh i386efi @@ -51,7 +51,7 @@ TARGET_CC=aarch64-linux-gnu-gcc \ TARGET_OBJCOPY=aarch64-linux-gnu-objcopy \ TARGET_STRIP=aarch64-linux-gnu-strip TARGET_NM=aarch64-linux-gnu-nm \ TARGET_RANLIB=aarch64-linux-gnu-ranlib -make -j 16 +make -j 16 || exit 1 sh install.sh arm64 @@ -61,7 +61,7 @@ echo '======== build grub2 for i386-pc ===============' make distclean ./autogen.sh ./configure --target=i386 --with-platform=pc --prefix=$VT_GRUB_DIR/INSTALL/ -make -j 16 +make -j 16 || exit 1 sh install.sh