phase/kiwi, phase/image-builder: xorrisofs
The createiso and buildinstall phases use this flag to switch which backend is used. I've added this to the other stages that produce ISOs thought we might want to discuss the naming? Signed-off-by: Simon de Vlieger <cmdr@supakeen.com>
This commit is contained in:
parent
ad1c3ed7e3
commit
817d24ad62
2 changed files with 8 additions and 2 deletions
|
|
@ -252,7 +252,10 @@ class RunImageBuilderThread(WorkerThread):
|
|||
if format_ == "iso":
|
||||
img.implant_md5 = iso.get_implanted_md5(image_dest)
|
||||
try:
|
||||
img.volume_id = iso.get_volume_id(image_dest)
|
||||
img.volume_id = iso.get_volume_id(
|
||||
image_dest,
|
||||
compose.conf.get("createiso_use_xorrisofs"),
|
||||
)
|
||||
except RuntimeError:
|
||||
pass
|
||||
|
||||
|
|
|
|||
|
|
@ -259,7 +259,10 @@ class RunKiwiBuildThread(WorkerThread):
|
|||
if format_ == "iso":
|
||||
img.implant_md5 = iso.get_implanted_md5(image_dest)
|
||||
try:
|
||||
img.volume_id = iso.get_volume_id(image_dest)
|
||||
img.volume_id = iso.get_volume_id(
|
||||
image_dest,
|
||||
compose.conf.get("createiso_use_xorrisofs"),
|
||||
)
|
||||
except RuntimeError:
|
||||
pass
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue