Commit 94b13bbae90bfb94204b8fe9c531bc163e746a9f

Authored by Masahiro Yamada
Committed by Tom Rini
1 parent 56d1dded62

host-tools: use python2 explicitly for shebang

All of these host tools are apparently written for Python2,
not Python3.

Use 'python2' in the shebang line according to PEP 394
(https://www.python.org/dev/peps/pep-0394/).

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Reviewed-by: Simon Glass <sjg@chromium.org>

Showing 8 changed files with 8 additions and 8 deletions Side-by-side Diff

scripts/dtc/pylibfdt/setup.py
1   -#!/usr/bin/env python
  1 +#!/usr/bin/env python2
2 2  
3 3 """
4 4 setup.py file for SWIG libfdt
1   -#!/usr/bin/env python
  1 +#!/usr/bin/env python2
2 2 #
3 3 # Copyright (C) 2014, Masahiro Yamada <yamada.m@jp.panasonic.com>
4 4 #
1   -#!/usr/bin/env python
  1 +#!/usr/bin/env python2
2 2  
3 3 # Copyright (c) 2015 Stephen Warren
4 4 # Copyright (c) 2015-2016, NVIDIA CORPORATION. All rights reserved.
tools/buildman/buildman.py
1   -#!/usr/bin/env python
  1 +#!/usr/bin/env python2
2 2 #
3 3 # Copyright (c) 2012 The Chromium OS Authors.
4 4 #
1   -#!/usr/bin/python
  1 +#!/usr/bin/env python2
2 2 #
3 3 # Copyright (C) 2016 Google, Inc
4 4 # Written by Simon Glass <sjg@chromium.org>
tools/microcode-tool.py
1   -#!/usr/bin/env python
  1 +#!/usr/bin/env python2
2 2 #
3 3 # Copyright (c) 2014 Google, Inc
4 4 #
tools/patman/patman.py
1   -#!/usr/bin/env python
  1 +#!/usr/bin/env python2
2 2 #
3 3 # Copyright (c) 2011 The Chromium OS Authors.
4 4 #
1   -#!/usr/bin/python
  1 +#!/usr/bin/env python2
2 2  
3 3 # Script to create enums from datasheet register tables
4 4 #