aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bb/cooker.py
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2010-01-14 18:52:43 +0000
committerRichard Purdie <rpurdie@linux.intel.com>2010-01-14 18:52:43 +0000
commit5c845093fc548cd660d4bf61e8ade9d1c7f2609a (patch)
treea3a9491b55e64d4201d556fa07a5cb5491f08461 /lib/bb/cooker.py
parent08ed701a6ce0a6f49a0eb44e8818612c7b68ebc5 (diff)
downloadbitbake-5c845093fc548cd660d4bf61e8ade9d1c7f2609a.tar.gz
Solidify server class creation
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'lib/bb/cooker.py')
-rw-r--r--lib/bb/cooker.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/bb/cooker.py b/lib/bb/cooker.py
index fcc425744..1bf7d4bd1 100644
--- a/lib/bb/cooker.py
+++ b/lib/bb/cooker.py
@@ -63,14 +63,13 @@ class BBCooker:
Manages one bitbake build run
"""
- def __init__(self, configuration):
+ def __init__(self, configuration, server):
self.status = None
self.cache = None
self.bb_cache = None
- self.server = bb.server.xmlrpc.BitBakeXMLRPCServer(self)
- #self.server.register_function(self.showEnvironment)
+ self.server = server.BitBakeServer(self)
self.configuration = configuration