From 1f39c80d2b2cbf3fee958d73d0968cf6179d2b0b Mon Sep 17 00:00:00 2001 From: Michel Normand Date: Fri, 11 Aug 2017 07:24:03 -0400 Subject: [PATCH] Increase memory size from 2048 to 4096 for PowerPC as today seems to be required to avoid createhdds to hang on creation of disk_f25_minimal_2_ppc64le.img.tmp ...[13/22] Trying to VNC connect, show anaconda menu stuck on "Performing post-installation setup tasks" Signed-off-by: Michel Normand --- createhdds.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/createhdds.py b/createhdds.py index 1224803..1c72c7d 100755 --- a/createhdds.py +++ b/createhdds.py @@ -236,8 +236,10 @@ class VirtInstallImage(object): arch = self.arch if arch in ['ppc64','ppc64le']: fedoradir = 'fedora-secondary' + memsize = '4096' else: fedoradir = 'fedora/linux' + memsize = '2048' # this is almost complex enough to need fedfind but not # quite, I think. also fedfind can't find the 'transient' # rawhide and branched locations at present @@ -264,7 +266,7 @@ class VirtInstallImage(object): "--os-variant", shortid, "-x", xargs, "--initrd-inject", "{0}/{1}.ks".format(SCRIPTDIR, self.name), "--location", loctmp.format(str(self.release), variant, arch), "--name", "createhdds", - "--memory", "2048", "--noreboot", "--wait", "-1"] + "--memory", memsize , "--noreboot", "--wait", "-1"] if textinst: args.extend(("--graphics", "none", "--extra-args", "console=ttyS0")) else: