From cdb82f1b279e18d790ffd55697429ffc3a732cd8 Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Jul 15 2020 15:16:26 +0000 Subject: livemedia-creator: pass --nomacboot on non-x86_64 See https://pagure.io/releng/issue/9601 . It seems the default is 'try to enable Mac booting' and we need to explicitly pass `--nomacboot` to turn it off. We only support x86_64 Macs for now, so we don't want to try and make live images bootable on Mac on any other arch. Signed-off-by: Adam Williamson --- diff --git a/builder/kojid b/builder/kojid index afe6636..30eba30 100755 --- a/builder/kojid +++ b/builder/kojid @@ -3579,6 +3579,8 @@ class LiveMediaTask(ImageTask): if arch == 'x86_64': cmd.append('--macboot') + else: + cmd.append('--nomacboot') if b_append: cmd.extend(['--extra-boot-args',