From f5e8adf315fd691fe517ee27f13d08765df62d51 Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Wed, 15 Jul 2020 08:16:26 -0700 Subject: [PATCH] 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 --- builder/kojid | 2 ++ 1 file changed, 2 insertions(+) diff --git a/builder/kojid b/builder/kojid index 75227962..9b6f1cc4 100755 --- a/builder/kojid +++ b/builder/kojid @@ -3590,6 +3590,8 @@ class LiveMediaTask(ImageTask): if arch == 'x86_64': cmd.append('--macboot') + else: + cmd.append('--nomacboot') if b_append: cmd.extend(['--extra-boot-args', '\"%s\"' % b_append])