mkksiso: Fix the order of the ppc mkisofs command

Related: rhbz#2049205
This commit is contained in:
Brian C. Lane 2022-02-02 14:29:28 -08:00
parent 0aa87733f5
commit 8b7a78591b
1 changed files with 5 additions and 4 deletions

View File

@ -230,10 +230,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")