From 8f5344a03058981f80d2133a805dd86242b07753 Mon Sep 17 00:00:00 2001 From: Marek Marczykowski Date: Thu, 14 Jun 2012 03:08:21 +0200 Subject: [PATCH] anaconda: treat pvops kernel as qubes kernel --- 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 0299685..ff7eb52 100644 --- a/anaconda/booty/x86.py +++ b/anaconda/booty/x86.py @@ -349,7 +349,7 @@ class x86BootloaderInfo(efiBootloaderInfo): if initrd: f.write('\tmodule %s%s\n' % (cfPath, initrd)) - elif version.find("xenlinux") >= 0: + elif version.find("xenlinux") >= 0 || version.find("pvops") >= 0: # Qubes kernel hvFile = "%sxen.gz" %(cfPath) f.write('\tkernel %s console=com1\n' %(hvFile,))