Package: virt-manager / 1:1.4.0-5

virtinst/fix-path-to-hvmloader.patch Patch series | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
From: Oliver Seufer <debian@seufer.de>
Date: Sat, 1 Jun 2013 22:41:07 +0200
Subject: fix path to hvmloader

Closes: #685749
---
 virtinst/guest.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/virtinst/guest.py b/virtinst/guest.py
index 6a42536..14be763 100644
--- a/virtinst/guest.py
+++ b/virtinst/guest.py
@@ -694,7 +694,7 @@ class Guest(XMLBuilder):
             self.os.init = self.os.init or "/bin/sh"
 
         if not self.os.loader and self.os.is_hvm() and self.type == "xen":
-            self.os.loader = "/usr/lib/xen/boot/hvmloader"
+            self.os.loader = "hvmloader"
         if self.os.os_type == "xen" and self.type == "xen":
             # Use older libvirt 'linux' value for back compat
             self.os.os_type = "linux"