diff options
author | Ben Kohler <bkohler@gentoo.org> | 2024-05-02 12:56:27 -0500 |
---|---|---|
committer | Ben Kohler <bkohler@gentoo.org> | 2024-05-02 12:58:38 -0500 |
commit | 04c70a9df505718c7e97ca1484f7c03270e6824c (patch) | |
tree | 49a4bf875fc1f85353f99f4cd75a760b3b10955d /targets | |
parent | arch: Add rv32 musl definitions (diff) | |
download | catalyst-04c70a9df505718c7e97ca1484f7c03270e6824c.tar.gz catalyst-04c70a9df505718c7e97ca1484f7c03270e6824c.tar.bz2 catalyst-04c70a9df505718c7e97ca1484f7c03270e6824c.zip |
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 <bkohler@gentoo.org>
Diffstat (limited to 'targets')
-rwxr-xr-x | targets/support/create-iso.sh | 2 |
1 files changed, 1 insertions, 1 deletions
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 $? |