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:
parent
59c9c150ef
commit
071d11a883
@ -63,7 +63,7 @@ def get_boot_options(arch, createfrom, efi=True):
|
|||||||
]
|
]
|
||||||
return result
|
return result
|
||||||
|
|
||||||
if arch in ("ppc", "ppc64", "ppc64le"):
|
if arch in ("ppc", "ppc64"):
|
||||||
result = [
|
result = [
|
||||||
'-part',
|
'-part',
|
||||||
'-hfs',
|
'-hfs',
|
||||||
@ -78,6 +78,15 @@ def get_boot_options(arch, createfrom, efi=True):
|
|||||||
]
|
]
|
||||||
return result
|
return result
|
||||||
|
|
||||||
|
if arch == "ppc64le":
|
||||||
|
result = [
|
||||||
|
'-r',
|
||||||
|
'-l',
|
||||||
|
'-sysid', 'PPC',
|
||||||
|
'-chrp-boot',
|
||||||
|
]
|
||||||
|
return result
|
||||||
|
|
||||||
if arch == "sparc":
|
if arch == "sparc":
|
||||||
result = [
|
result = [
|
||||||
'-G', '/boot/isofs.b',
|
'-G', '/boot/isofs.b',
|
||||||
|
Loading…
Reference in New Issue
Block a user