diff options
author | Simon Glass <sjg@chromium.org> | 2020-07-09 18:39:40 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2020-07-20 11:37:47 -0600 |
commit | 13262c93626502873786067fcbe2e2ab5894b90f (patch) | |
tree | f4d6cdfb02fcfbec1bac60d33f11ef8e0e430f83 /tools/patman | |
parent | f9793a12c5e76c50018d516cbaa011ac86c285fa (diff) |
binman: Detect when valid images are not produced
When external blobs are missing, show a message indicating that the images
are not functional.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/patman')
-rw-r--r-- | tools/patman/tout.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/patman/tout.py b/tools/patman/tout.py index 91a53f4073..33305263d8 100644 --- a/tools/patman/tout.py +++ b/tools/patman/tout.py @@ -171,6 +171,7 @@ def Init(_verbose=WARNING, stdout=sys.stdout): # TODO(sjg): Move this into Chromite libraries when we have them stdout_is_tty = hasattr(sys.stdout, 'isatty') and sys.stdout.isatty() + stderr_is_tty = hasattr(sys.stderr, 'isatty') and sys.stderr.isatty() def Uninit(): ClearProgress() |