From 04c70a9df505718c7e97ca1484f7c03270e6824c Mon Sep 17 00:00:00 2001 From: Ben Kohler Date: Thu, 2 May 2024 12:56:27 -0500 Subject: create-iso.sh: restore ISO volume ID When we switched to grub-mkrescue for the ISO generation, we lost the volume ID. Luckly grub-mkresce takes unrecognized parameters and passes them to xorriso so we can just add the xorriso -volid parameter here. Signed-off-by: Ben Kohler --- targets/support/create-iso.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/targets/support/create-iso.sh b/targets/support/create-iso.sh index 74c24a1d..0468f965 100755 --- a/targets/support/create-iso.sh +++ b/targets/support/create-iso.sh @@ -200,7 +200,7 @@ case ${clst_hostarch} in esac echo ">> Running grub-mkrescue to create iso image...." - grub-mkrescue "${extra_opts[@]}" -o "${1}" "${clst_target_path}" + grub-mkrescue -volid "${clst_iso_volume_id}" "${extra_opts[@]}" -o "${1}" "${clst_target_path}" ;; esac exit $? -- cgit v1.2.3-65-gdbad