This patch makes domUs bring up without xen specific args to guest
kernels. A domU should be booted without args parameter because
tools/examples/xmexample1 doesn't have one.
Signed-off-by: INAKOSHI Hiroya <inakoshi.hiroya@xxxxxxxxxxxxxx>
diff -r dd489125a2e7 tools/pygrub/src/pygrub
--- a/tools/pygrub/src/pygrub Fri Mar 06 19:18:39 2009 +0000
+++ b/tools/pygrub/src/pygrub Mon Mar 09 11:21:59 2009 +0900
@@ -605,7 +605,7 @@
isconfig = False
# what was passed in
- incfg = { "kernel": None, "ramdisk": None, "args": None }
+ incfg = { "kernel": None, "ramdisk": None, "args": "" }
# what grub or sniffing chose
chosencfg = { "kernel": None, "ramdisk": None, "args": None }
# what to boot
@@ -641,7 +641,7 @@
# debug
if isconfig:
- chosencfg = run_grub(file, entry)
+ chosencfg = run_grub(file, entry, fs, incfg["args"])
print " kernel: %s" % chosencfg["kernel"]
if img.initrd:
print " initrd: %s" % chosencfg["ramdisk"]
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
|