mkksiso: Fix the order of the ppc mkisofs command
This commit is contained in:
parent
eb4866c73d
commit
e1092c0ee9
@ -229,10 +229,11 @@ class Mkisofs_ppc(MakeISOTool):
|
||||
arches = ["ppc"]
|
||||
|
||||
def run(self, tmpdir, grafts, volume_name, output_iso, efimode=NO_EFI):
|
||||
cmd = ["mkisofs", "-o", output_iso, "-R", "-J", "-V", volume_name,
|
||||
"-joliet-long", "-U", "-T", "-part", "-hfs", "-r", "-l",
|
||||
"-sysid", "PPC", "-chrp-boot", "-no-desktop", "-allow-multidot",
|
||||
"-map", self.requirements[0], "-hfs-bless", "boot/grub/powerpc-ieee1275"]
|
||||
cmd = ["mkisofs", "-joliet-long", "-U", "-J", "-R", "-T",
|
||||
"-o", output_iso, "-part", "-hfs", "-r", "-l",
|
||||
"-sysid", "PPC", "-V", volume_name, "-chrp-boot",
|
||||
"-hfs-bless", "boot/grub/powerpc-ieee1275",
|
||||
"-map", self.requirements[0], "-no-desktop", "-allow-multidot"]
|
||||
if log.root.level < log.INFO:
|
||||
cmd.append("--verbose")
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user