summaryrefslogtreecommitdiff
path: root/tools/patman
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2020-07-10 03:39:40 +0300
committerSimon Glass <sjg@chromium.org>2020-07-20 20:37:47 +0300
commit13262c93626502873786067fcbe2e2ab5894b90f (patch)
treef4d6cdfb02fcfbec1bac60d33f11ef8e0e430f83 /tools/patman
parentf9793a12c5e76c50018d516cbaa011ac86c285fa (diff)
downloadu-boot-13262c93626502873786067fcbe2e2ab5894b90f.tar.xz
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.py1
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()