summaryrefslogtreecommitdiff
path: root/tools/binman
diff options
context:
space:
mode:
authorJörg Krause <joerg.krause@embedded.rocks>2017-03-06 20:07:11 (GMT)
committerTom Rini <trini@konsulko.com>2017-03-12 03:30:28 (GMT)
commit66a7a2464870700b17d7235ff247c45d705ed5f7 (patch)
tree3f072e16ed85ce1e6a4889325899b6291c479b68 /tools/binman
parent50075153fe66d8f9a859191132e8f23f11ba57d4 (diff)
downloadu-boot-fsl-qoriq-66a7a2464870700b17d7235ff247c45d705ed5f7.tar.xz
tools: binman: change shebang from python into python2
This tool does not work with Python 3. Change the shebang to make sure the script is run by a Python 2 interpreter. Signed-off-by: Jörg Krause <joerg.krause@embedded.rocks>
Diffstat (limited to 'tools/binman')
-rwxr-xr-xtools/binman/binman.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/binman/binman.py b/tools/binman/binman.py
index e1cb2fb..857d698 100755
--- a/tools/binman/binman.py
+++ b/tools/binman/binman.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python2
# Copyright (c) 2016 Google, Inc
# Written by Simon Glass <sjg@chromium.org>