diff options
| author | Sujith H <sujith.h@gmail.com> | 2016-03-08 18:09:02 +0000 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-03-09 22:45:16 +0000 |
| commit | cc74a8ae26a7728828a3442ba441b1676bc2c8a1 (patch) | |
| tree | 5a8ce987f308378274a7bc5caa51996eb1234106 /bitbake/lib/toaster/bldcontrol/management | |
| parent | aebc22dbfade9a107f1a05e42bf7fe3887c15ae8 (diff) | |
| download | poky-cc74a8ae26a7728828a3442ba441b1676bc2c8a1.tar.gz | |
bitbake: toaster: use force_bytes to display non-ascii project names
When user enters a non-ascii character in the project
name of toaster, the build doesn't get triggered.
Use force_bytes to fix this.
Also deal with non-ascii project names when logging the
build request in runbuilds.
[YOCTO #9071]
(Bitbake rev: b6141c4d170885d3bdf63074afcb1e41fde0a8f0)
Signed-off-by: Sujith H <sujith.h@gmail.com>
Signed-off-by: Elliot Smith <elliot.smith@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster/bldcontrol/management')
| -rw-r--r-- | bitbake/lib/toaster/bldcontrol/management/commands/runbuilds.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/bldcontrol/management/commands/runbuilds.py b/bitbake/lib/toaster/bldcontrol/management/commands/runbuilds.py index edf71a7d7b..0bd5d08226 100644 --- a/bitbake/lib/toaster/bldcontrol/management/commands/runbuilds.py +++ b/bitbake/lib/toaster/bldcontrol/management/commands/runbuilds.py | |||
| @@ -47,7 +47,7 @@ class Command(NoArgsCommand): | |||
| 47 | logger.debug("runbuilds: No build env") | 47 | logger.debug("runbuilds: No build env") |
| 48 | return | 48 | return |
| 49 | 49 | ||
| 50 | logger.debug("runbuilds: starting build %s, environment %s" % (br, bec.be)) | 50 | logger.debug("runbuilds: starting build %s, environment %s" % (str(br).decode('utf-8'), bec.be)) |
| 51 | 51 | ||
| 52 | # write the build identification variable | 52 | # write the build identification variable |
| 53 | BRVariable.objects.create(req = br, name="TOASTER_BRBE", value="%d:%d" % (br.pk, bec.be.pk)) | 53 | BRVariable.objects.create(req = br, name="TOASTER_BRBE", value="%d:%d" % (br.pk, bec.be.pk)) |
