From 3f9cbd27d42004df7d276a1ffc5606d222f08fb9 Mon Sep 17 00:00:00 2001 From: Michel Normand Date: Fri, 27 Apr 2018 09:47:53 -0400 Subject: [PATCH] Disable plymouth for PowerPC release >f27 as bypass for pending bug https://bugzilla.redhat.com/show_bug.cgi?id=1571860 Signed-off-by: Michel Normand --- createhdds.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/createhdds.py b/createhdds.py index 75aeab5..80feff0 100755 --- a/createhdds.py +++ b/createhdds.py @@ -297,6 +297,9 @@ class VirtInstallImage(object): args.extend(("--graphics", "none", "--extra-args", "console=ttyS0")) else: args.extend(("--graphics", "vnc", "--noautoconsole")) + if arch in ['ppc64','ppc64le'] and (str(self.release).lower() == 'rawhide' or int(self.release) > 27): + logger.info("disable plymouth as bypass bug#1571860") + args.extend(("--extra-args", "plymouth.enable=0")) # this is a hacky workaround for a weird bug on Fedora's prod # openQA server: # https://bugzilla.redhat.com/show_bug.cgi?id=1387798