From 5cba3ae239e2a47bad6be15337315e2809683c03 Mon Sep 17 00:00:00 2001 From: Marek Marczykowski Date: Tue, 7 Feb 2012 16:17:05 +0100 Subject: [PATCH] anaconda: disable xen messages on VGA console (#434) --- 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 a35be2e..0299685 100644 --- a/anaconda/booty/x86.py +++ b/anaconda/booty/x86.py @@ -352,7 +352,7 @@ class x86BootloaderInfo(efiBootloaderInfo): elif version.find("xenlinux") >= 0: # Qubes kernel hvFile = "%sxen.gz" %(cfPath) - f.write('\tkernel %s\n' %(hvFile,)) + f.write('\tkernel %s console=com1\n' %(hvFile,)) f.write('\tmodule %s ro%s' %(kernelFile, realroot)) if self.args.get(): f.write(' %s' % self.args.get())