update iso creation for ppc64le

Don't produce ISO image with Apple/HFS compatibility stuff on ppc64le.

Signed-off-by: Dan Horák <dan@danny.cz>
This commit is contained in:
Dan Horák 2019-02-20 11:47:33 +01:00 committed by Lubomír Sedlář
parent 59c9c150ef
commit 071d11a883
1 changed files with 10 additions and 1 deletions

View File

@ -63,7 +63,7 @@ def get_boot_options(arch, createfrom, efi=True):
]
return result
if arch in ("ppc", "ppc64", "ppc64le"):
if arch in ("ppc", "ppc64"):
result = [
'-part',
'-hfs',
@ -78,6 +78,15 @@ def get_boot_options(arch, createfrom, efi=True):
]
return result
if arch == "ppc64le":
result = [
'-r',
'-l',
'-sysid', 'PPC',
'-chrp-boot',
]
return result
if arch == "sparc":
result = [
'-G', '/boot/isofs.b',