Use xorriso instead of isoinfo when createiso_use_xorrisofs is enabled
Update get_mkisofs_cmd in createiso.py file in order to prevent using default value. With this change it is possible to enable xorriso format Jira: RHELCMP-6325 Signed-off-by: Ozan Unsal <ounsal@redhat.com>
This commit is contained in:
parent
7c3e8d4276
commit
3d9335e90e
2 changed files with 17 additions and 6 deletions
|
|
@ -76,6 +76,7 @@ def make_image(f, opts):
|
|||
volid=opts.volid,
|
||||
exclude=["./lost+found"],
|
||||
graft_points=opts.graft_points,
|
||||
use_xorrisofs=opts.use_xorrisofs,
|
||||
**mkisofs_kwargs
|
||||
)
|
||||
emit(f, cmd)
|
||||
|
|
@ -97,7 +98,7 @@ def run_isohybrid(f, opts):
|
|||
|
||||
|
||||
def make_manifest(f, opts):
|
||||
emit(f, iso.get_manifest_cmd(opts.iso_name))
|
||||
emit(f, iso.get_manifest_cmd(opts.iso_name, opts.use_xorrisofs))
|
||||
|
||||
|
||||
def make_jigdo(f, opts):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue