summaryrefslogtreecommitdiffstats
path: root/rteval/kcompile.py
diff options
context:
space:
mode:
authorClark Williams <williams@redhat.com>2009-03-03 13:07:25 -0600
committerClark Williams <williams@redhat.com>2009-03-03 13:07:25 -0600
commit9be9f3668c2a8120ba7d7ddb3c80bded6a78c708 (patch)
treed76cebec2eb40731ca06cb0f5cfe10e9ad8877a5 /rteval/kcompile.py
parent6ab4cff69f0484c1b834a3335ff87555d25cbf80 (diff)
downloadrteval-9be9f3668c2a8120ba7d7ddb3c80bded6a78c708.tar.gz
rteval-9be9f3668c2a8120ba7d7ddb3c80bded6a78c708.tar.xz
rteval-9be9f3668c2a8120ba7d7ddb3c80bded6a78c708.zip
added <loads> section to xml output; rearranged load xml output a bit
Diffstat (limited to 'rteval/kcompile.py')
-rw-r--r--rteval/kcompile.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/rteval/kcompile.py b/rteval/kcompile.py
index a7e4b86..29f864b 100644
--- a/rteval/kcompile.py
+++ b/rteval/kcompile.py
@@ -85,7 +85,9 @@ class Kcompile(load.Load):
f.write(" kcompile: %s\n" % " ".join(self.args))
def genxml(self, x):
- x.taggedvalue('kcompile', ' '.join(self.args))
+ x.openblock('kcompile')
+ x.taggedvalue('command_line', ' '.join(self.args))
+ x.closeblock()
def create(dir, source, debug, num_cpus):
tarball = glob.glob("%s*" % os.path.join(source,kernel_prefix))[0]