From 22b87b5c9a9b3b362ecd945e0c86cd1304d04f43 Mon Sep 17 00:00:00 2001 From: Marek Marczykowski Date: Wed, 25 Jul 2012 00:00:41 +0200 Subject: [PATCH] anaconda: fix default xen console parameter (#644) --- anaconda/booty/x86.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anaconda/booty/x86.py b/anaconda/booty/x86.py index 4f74c02..321aa16 100644 --- a/anaconda/booty/x86.py +++ b/anaconda/booty/x86.py @@ -352,7 +352,7 @@ class x86BootloaderInfo(efiBootloaderInfo): elif version.find("qubes") >= 0: # Qubes kernel hvFile = "%sxen.gz" %(cfPath) - f.write('\tkernel %s console=com1\n' %(hvFile,)) + f.write('\tkernel %s console=none\n' %(hvFile,)) f.write('\tmodule %s ro%s' %(kernelFile, realroot)) if self.args.get(): f.write(' %s' % self.args.get())