summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorStefan Kral <sk@typedivision.de>2019-04-15 23:42:21 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-04-30 12:05:24 +0100
commit34d526a79be469fa88f21c37f8cd9fd905cdb49c (patch)
tree364ab008d1811470044d73533425083108970305 /bitbake
parentc761fb126dd9e25b3690be2ce6d317e0ee6cb2b0 (diff)
downloadpoky-34d526a79be469fa88f21c37f8cd9fd905cdb49c.tar.gz
bitbake: build: Add verbnote to shell log commands
Add the missing bbverbnote fifo cmd for logging from shell. (Bitbake rev: cf11fdb30c405e1a4521a7299f84816c0e13a881) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/build.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/bitbake/lib/bb/build.py b/bitbake/lib/bb/build.py
index a83de8d73e..da592e6d84 100644
--- a/bitbake/lib/bb/build.py
+++ b/bitbake/lib/bb/build.py
@@ -408,6 +408,8 @@ exit $ret
408 bb.plain(value) 408 bb.plain(value)
409 elif cmd == 'bbnote': 409 elif cmd == 'bbnote':
410 bb.note(value) 410 bb.note(value)
411 elif cmd == 'bbverbnote':
412 bb.verbnote(value)
411 elif cmd == 'bbwarn': 413 elif cmd == 'bbwarn':
412 bb.warn(value) 414 bb.warn(value)
413 elif cmd == 'bberror': 415 elif cmd == 'bberror':