diff options
Diffstat (limited to 'bitbake/lib/bb/cookerdata.py')
| -rw-r--r-- | bitbake/lib/bb/cookerdata.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/bitbake/lib/bb/cookerdata.py b/bitbake/lib/bb/cookerdata.py index 32a8798f1e..30727bf2ee 100644 --- a/bitbake/lib/bb/cookerdata.py +++ b/bitbake/lib/bb/cookerdata.py | |||
| @@ -58,11 +58,14 @@ class ConfigParameters(object): | |||
| 58 | def updateToServer(self, server, environment): | 58 | def updateToServer(self, server, environment): |
| 59 | options = {} | 59 | options = {} |
| 60 | for o in ["abort", "force", "invalidate_stamp", | 60 | for o in ["abort", "force", "invalidate_stamp", |
| 61 | "verbose", "debug", "dry_run", "dump_signatures", | 61 | "debug", "dry_run", "dump_signatures", |
| 62 | "debug_domains", "extra_assume_provided", "profile", | 62 | "debug_domains", "extra_assume_provided", "profile", |
| 63 | "prefile", "postfile", "server_timeout"]: | 63 | "prefile", "postfile", "server_timeout"]: |
| 64 | options[o] = getattr(self.options, o) | 64 | options[o] = getattr(self.options, o) |
| 65 | 65 | ||
| 66 | options['build_verbose_shell'] = self.options.verbose | ||
| 67 | options['build_verbose_stdout'] = self.options.verbose | ||
| 68 | |||
| 66 | ret, error = server.runCommand(["updateConfig", options, environment, sys.argv]) | 69 | ret, error = server.runCommand(["updateConfig", options, environment, sys.argv]) |
| 67 | if error: | 70 | if error: |
| 68 | raise Exception("Unable to update the server configuration with local parameters: %s" % error) | 71 | raise Exception("Unable to update the server configuration with local parameters: %s" % error) |
| @@ -125,6 +128,8 @@ class CookerConfiguration(object): | |||
| 125 | self.skipsetscene = False | 128 | self.skipsetscene = False |
| 126 | self.invalidate_stamp = False | 129 | self.invalidate_stamp = False |
| 127 | self.dump_signatures = [] | 130 | self.dump_signatures = [] |
| 131 | self.build_verbose_shell = False | ||
| 132 | self.build_verbose_stdout = False | ||
| 128 | self.dry_run = False | 133 | self.dry_run = False |
| 129 | self.tracking = False | 134 | self.tracking = False |
| 130 | self.xmlrpcinterface = [] | 135 | self.xmlrpcinterface = [] |
