2
0
mirror of https://github.com/xcat2/confluent.git synced 2026-01-11 18:42:29 +00:00

Change boot.img to boot.iso for Windows

Some things expect an iso to be named as such. This drives different handling, but
there's little choice in the matter.
This commit is contained in:
Jarrod Johnson
2025-09-18 08:55:09 -04:00
parent 22c8921455
commit 500cdf7535

View File

@@ -97,7 +97,7 @@ def update_boot_windows(profiledir, profile, label, initialimport):
try:
subprocess.check_call(
['/usr/bin/genisoimage', '-o',
'{0}/boot.img'.format(profiledir), '-udf', '-b', 'dvd/etfsboot.com',
'{0}/boot.iso'.format(profiledir), '-udf', '-b', 'dvd/etfsboot.com',
'-no-emul-boot', '-eltorito-alt-boot', '-eltorito-boot',
'dvd/efisys_noprompt.bin', '{0}/boot'.format(profiledir)], preexec_fn=relax_umask)
except Exception: