add volid and prepare to iso

This commit is contained in:
Tobias Powalowski 2022-01-17 09:38:40 +01:00
parent 19e0595e95
commit 058b782191
2 changed files with 2 additions and 2 deletions

View file

@ -301,7 +301,7 @@ echo "Prepare UEFI image ..."
_prepare_uefi_image >/dev/null 2>&1
## Generate the BIOS+ISOHYBRID+UEFI CD image using xorriso (extra/libisoburn package) in mkisofs emulation mode
grub-mkrescue --compress=xz --fonts="unicode" --product-name="Arch Linux ARCHBOOT" --product-version="${_RELEASENAME}" --locales="" --themes="" -o "${_IMAGENAME}.iso" "${_AARCH64}"/ &> "${_IMAGENAME}.log"
grub-mkrescue --compress=xz --fonts="unicode" --locales="" --themes="" -o "${_IMAGENAME}.iso" -volid "ARCHBOOT ${_RELEASENAME}" -preparer "prepared by ${_BASENAME}" "${_AARCH64}"/ &> "${_IMAGENAME}.log"
## create sha256sums.txt
echo "Generating sha256sum ..."

View file

@ -431,7 +431,7 @@ _prepare_uefi_image >/dev/null 2>&1
## Generate the BIOS+ISOHYBRID+UEFI CD image using xorriso (extra/libisoburn package) in mkisofs emulation mode
echo "Generating X86_64 hybrid ISO ..."
grub-mkrescue --compress="xz" --fonts="unicode" --product-name="Arch Linux ARCHBOOT" --product-version="${_RELEASENAME}" --locales="" --themes="" -o "${_IMAGENAME}.iso" "${_X86_64}"/ &> "${_IMAGENAME}.log"
grub-mkrescue --compress="xz" --fonts="unicode" --locales="" --themes="" -o "${_IMAGENAME}.iso" -volid "ARCHBOOT ${_RELEASENAME}" -preparer "prepared by ${_BASENAME}" "${_X86_64}"/ &> "${_IMAGENAME}.log"
## create sha256sums.txt
echo "Generating sha256sum ..."