Displaying 4 results from an estimated 4 matches for "sniff_solaris".
2007 Jan 19
0
[PATCH] Update pygrub for new Solaris directory names
...levon@sun.com>
diff --git a/tools/pygrub/src/pygrub b/tools/pygrub/src/pygrub
--- a/tools/pygrub/src/pygrub
+++ b/tools/pygrub/src/pygrub
@@ -503,7 +503,7 @@ def run_grub(file, entry, fs):
# If nothing has been specified, look for a Solaris domU. If found, perform the
# necessary tweaks.
def sniff_solaris(fs, cfg):
- if not fs.file_exists("/platform/i86xen/kernel/unix"):
+ if not fs.file_exists("/platform/i86xpv/kernel/unix"):
return cfg
# darned python
@@ -516,10 +516,10 @@ def sniff_solaris(fs, cfg):
longmode = True
if not cfg["...
2012 Jul 19
2
[PATCH] pygrub: add syslog support to pygrub
..., fs, arg):
if entry is not None:
idx = get_entry_idx(g.cf, entry)
if idx is not None and idx > 0 and idx < len(g.cf.images):
- sel = idx
+ sel = idx
if sel == -1:
print "No kernel image selected!"
@@ -651,10 +653,10 @@ def sniff_solaris(fs, cfg):
# Unpleasant. Typically we''ll have ''root=foo -k'' or ''root=foo /kernel -k'',
# and we need to maintain Xen properties (root= and ip=) and the kernel
# before any user args.
-
+
xenargs = ""
userargs = "...
2010 Aug 04
7
Xen 4.0.1-rc5 w/ 2.6.32.16 dom0, DomU''s start paused
I run my production DomU''s using Xen 3.4.1 at the moment with the old
2.6.18.x dom0 kernel. I just built a new Xen version (4.0.1-rc5) with
jemerys git repo of 2.6.32.16 dom0 pvops kernel. When starting domains
the go instantly into a paused state and eventually i see this error on
the command line.
[root@host test1]# xm create -c vps.config
Using config file
2007 Jan 05
10
[PATCH 1/7] Fix pygrub path on Solaris
Fix for pygrub path on Solaris.
Signed-off-by: John Levon <john.levon@sun.com>
diff --git a/tools/python/xen/xend/XendDomainInfo.py b/tools/python/xen/xend/XendDomainInfo.py
--- a/tools/python/xen/xend/XendDomainInfo.py
+++ b/tools/python/xen/xend/XendDomainInfo.py
@@ -37,7 +37,7 @@ from xen.util.blkif import blkdev_uname_
from xen.util.blkif import blkdev_uname_to_file
from xen.util