|
|
|
|
|
|
|
|
|
|
xen-ppc-devel
Re: VIO work complete Was: [XenPPC] [linux-ppc-2.6] [LINUX][XEN][POWERPC
On Wed, Oct 11, 2006 at 08:14:41AM +1000, Tony Breeds wrote:
> Which ones? I'll fix them when I get back.
I haven't tested this on a full run or on x86 but it helps here.
---
tools/xm-test/lib/XmTestLib/XenDomain.py | 3 +++
1 file changed, 3 insertions(+)
---
diff -r a1fdeb2c6d77 tools/xm-test/lib/XmTestLib/XenDomain.py
--- a/tools/xm-test/lib/XmTestLib/XenDomain.py Tue Oct 17 16:44:57 2006 -0400
+++ b/tools/xm-test/lib/XmTestLib/XenDomain.py Wed Oct 18 16:40:09 2006 +1000
@@ -97,6 +97,9 @@ class XenConfig:
if name in self.opts.keys() and isinstance(self.opts[name] ,
list) and not isinstance(value, list):
self.opts[name] = [value]
+ # "extra" is special so append to it.
+ elif name == "extra" and name in self.opts.keys():
+ self.opts[name] += " %s" % (value)
else:
self.opts[name] = value
Yours Tony
linux.conf.au http://linux.conf.au/ || http://lca2007.linux.org.au/
Jan 15-20 2007 The Australian Linux Technical Conference!
_______________________________________________
Xen-ppc-devel mailing list
Xen-ppc-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-ppc-devel
|
|
|
|
|