summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Reinauer <stefan.reinauer@coreboot.org>2019-09-22 10:39:36 -0700
committerCommit Bot <commit-bot@chromium.org>2019-10-01 11:16:43 +0000
commit68c9a2870ead8a3306a2601c4f5689656d49c6a8 (patch)
tree87f42e176655e1458ec732e6ddd5bcb9e21335ab
parentaee33d5c90f8a1c754dc7651a9c8aad20bb063ec (diff)
downloadchrome-ec-68c9a2870ead8a3306a2601c4f5689656d49c6a8.tar.gz
Unify #! use in python scripts
Right now we have several different versions of #! in our python scripts. Unify them all and specify that we are using python2. Signed-off-by: Stefan Reinauer <reinauer@chromium.org> BUG=none BRANCH=none TEST=make buildall Change-Id: Iab33a3f5d4b827451a55542bcee8837b00da7867 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/1817948 Commit-Queue: Stefan Reinauer <reinauer@chromium.org> Tested-by: Stefan Reinauer <reinauer@chromium.org> Reviewed-by: Daisuke Nojiri <dnojiri@chromium.org>
-rwxr-xr-xchip/mchp/util/pack_ec.py2
-rwxr-xr-xchip/mec1322/util/pack_ec.py2
-rwxr-xr-xcts/cts.py2
-rw-r--r--extra/cr50_rma_open/cr50_rma_open.py2
-rwxr-xr-xextra/tigertool/tigertool.py2
-rw-r--r--extra/usb_power/convert_power_log_board.py2
-rwxr-xr-xextra/usb_power/convert_servo_ina.py2
-rwxr-xr-xextra/usb_power/powerlog.py2
-rwxr-xr-xextra/usb_serial/console.py2
-rwxr-xr-xextra/usb_spi/stm32spi.py2
-rwxr-xr-xextra/usb_updater/fw_update.py2
-rwxr-xr-xextra/usb_updater/servo_updater.py2
-rw-r--r--test/tpm_test/crypto_test.py2
-rw-r--r--test/tpm_test/ecc_test.py2
-rw-r--r--test/tpm_test/ecies_test.py2
-rw-r--r--test/tpm_test/genvectors.py2
-rw-r--r--test/tpm_test/hash_test.py2
-rw-r--r--test/tpm_test/hkdf_test.py2
-rw-r--r--test/tpm_test/rsa_test.py2
-rw-r--r--test/tpm_test/subcmd.py2
-rwxr-xr-xtest/tpm_test/tpmtest.py2
-rw-r--r--test/tpm_test/upgrade_test.py2
-rw-r--r--test/tpm_test/utils.py2
-rw-r--r--util/chargen2
-rwxr-xr-xutil/config_option_check.py2
-rwxr-xr-xutil/ec3po/console.py2
-rwxr-xr-xutil/ec3po/console_unittest.py2
-rwxr-xr-xutil/ec3po/interpreter_unittest.py2
-rwxr-xr-xutil/flash_pd.py2
-rwxr-xr-xutil/inject-keys.py2
-rwxr-xr-xutil/run_host_test2
-rwxr-xr-xutil/unpack_ftb.py2
32 files changed, 32 insertions, 32 deletions
diff --git a/chip/mchp/util/pack_ec.py b/chip/mchp/util/pack_ec.py
index cd8c550e09..c7fe74d028 100755
--- a/chip/mchp/util/pack_ec.py
+++ b/chip/mchp/util/pack_ec.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python2
# Copyright 2013 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff --git a/chip/mec1322/util/pack_ec.py b/chip/mec1322/util/pack_ec.py
index 13f5f31010..8cbeb57c1b 100755
--- a/chip/mec1322/util/pack_ec.py
+++ b/chip/mec1322/util/pack_ec.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python2
# Copyright 2013 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff --git a/cts/cts.py b/cts/cts.py
index 0ef862d996..7bcd6cac77 100755
--- a/cts/cts.py
+++ b/cts/cts.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/env python2
#
# Copyright 2016 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff --git a/extra/cr50_rma_open/cr50_rma_open.py b/extra/cr50_rma_open/cr50_rma_open.py
index 4a83232911..1cc90dca5d 100644
--- a/extra/cr50_rma_open/cr50_rma_open.py
+++ b/extra/cr50_rma_open/cr50_rma_open.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python2
+#!/usr/bin/env python2
# Copyright 2018 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
diff --git a/extra/tigertool/tigertool.py b/extra/tigertool/tigertool.py
index c4ce86f01f..a3c25e3ad6 100755
--- a/extra/tigertool/tigertool.py
+++ b/extra/tigertool/tigertool.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python2
+#!/usr/bin/env python2
# Copyright 2017 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
diff --git a/extra/usb_power/convert_power_log_board.py b/extra/usb_power/convert_power_log_board.py
index 3f0cfec014..b970d86cd7 100644
--- a/extra/usb_power/convert_power_log_board.py
+++ b/extra/usb_power/convert_power_log_board.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/env python2
# Copyright 2018 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
diff --git a/extra/usb_power/convert_servo_ina.py b/extra/usb_power/convert_servo_ina.py
index 188bae8799..aabe4967da 100755
--- a/extra/usb_power/convert_servo_ina.py
+++ b/extra/usb_power/convert_servo_ina.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/env python2
# Copyright 2017 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
diff --git a/extra/usb_power/powerlog.py b/extra/usb_power/powerlog.py
index 44754ad663..e079ca1188 100755
--- a/extra/usb_power/powerlog.py
+++ b/extra/usb_power/powerlog.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/env python2
# Copyright 2016 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
diff --git a/extra/usb_serial/console.py b/extra/usb_serial/console.py
index bc03ea869e..75879fb99c 100755
--- a/extra/usb_serial/console.py
+++ b/extra/usb_serial/console.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/env python2
# Copyright 2016 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
diff --git a/extra/usb_spi/stm32spi.py b/extra/usb_spi/stm32spi.py
index ecd4edb8e9..a8948c0002 100755
--- a/extra/usb_spi/stm32spi.py
+++ b/extra/usb_spi/stm32spi.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python2
+#!/usr/bin/env python2
# Copyright 2016 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
diff --git a/extra/usb_updater/fw_update.py b/extra/usb_updater/fw_update.py
index 8a73070ccf..3755ba9d20 100755
--- a/extra/usb_updater/fw_update.py
+++ b/extra/usb_updater/fw_update.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/env python2
# Copyright 2016 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
diff --git a/extra/usb_updater/servo_updater.py b/extra/usb_updater/servo_updater.py
index 2a01ea7069..c819230f21 100755
--- a/extra/usb_updater/servo_updater.py
+++ b/extra/usb_updater/servo_updater.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/env python2
# Copyright 2016 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
diff --git a/test/tpm_test/crypto_test.py b/test/tpm_test/crypto_test.py
index 5790c1ee1c..36253952c5 100644
--- a/test/tpm_test/crypto_test.py
+++ b/test/tpm_test/crypto_test.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/env python2
# Copyright 2015 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
diff --git a/test/tpm_test/ecc_test.py b/test/tpm_test/ecc_test.py
index 65b0b5fdb7..155a497b98 100644
--- a/test/tpm_test/ecc_test.py
+++ b/test/tpm_test/ecc_test.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/env python2
# Copyright 2016 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
diff --git a/test/tpm_test/ecies_test.py b/test/tpm_test/ecies_test.py
index f6b3029ac3..96620c14b5 100644
--- a/test/tpm_test/ecies_test.py
+++ b/test/tpm_test/ecies_test.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/env python2
# Copyright 2016 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
diff --git a/test/tpm_test/genvectors.py b/test/tpm_test/genvectors.py
index abab788efc..593a6aab71 100644
--- a/test/tpm_test/genvectors.py
+++ b/test/tpm_test/genvectors.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/env python2
# Copyright 2016 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
diff --git a/test/tpm_test/hash_test.py b/test/tpm_test/hash_test.py
index 29b2214fc6..8bdfb16bdd 100644
--- a/test/tpm_test/hash_test.py
+++ b/test/tpm_test/hash_test.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/env python2
# Copyright 2015 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
diff --git a/test/tpm_test/hkdf_test.py b/test/tpm_test/hkdf_test.py
index 5de0b3879a..3330d50105 100644
--- a/test/tpm_test/hkdf_test.py
+++ b/test/tpm_test/hkdf_test.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/env python2
# Copyright 2016 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
diff --git a/test/tpm_test/rsa_test.py b/test/tpm_test/rsa_test.py
index b98d3306c5..e411df57b0 100644
--- a/test/tpm_test/rsa_test.py
+++ b/test/tpm_test/rsa_test.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/env python2
# Copyright 2015 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
diff --git a/test/tpm_test/subcmd.py b/test/tpm_test/subcmd.py
index 59c45d2516..d6aeb6722f 100644
--- a/test/tpm_test/subcmd.py
+++ b/test/tpm_test/subcmd.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/env python2
# Copyright 2015 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
diff --git a/test/tpm_test/tpmtest.py b/test/tpm_test/tpmtest.py
index 2f915a09d9..823c3013e7 100755
--- a/test/tpm_test/tpmtest.py
+++ b/test/tpm_test/tpmtest.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/env python2
# Copyright 2015 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
diff --git a/test/tpm_test/upgrade_test.py b/test/tpm_test/upgrade_test.py
index 69e8630358..35f8405ba7 100644
--- a/test/tpm_test/upgrade_test.py
+++ b/test/tpm_test/upgrade_test.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/env python2
# Copyright 2016 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
diff --git a/test/tpm_test/utils.py b/test/tpm_test/utils.py
index 233a97eeff..38cda2a1e2 100644
--- a/test/tpm_test/utils.py
+++ b/test/tpm_test/utils.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/env python2
# Copyright 2015 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
diff --git a/util/chargen b/util/chargen
index d9260fcb0b..42c40f13e4 100644
--- a/util/chargen
+++ b/util/chargen
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python2
# Copyright 2019 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
diff --git a/util/config_option_check.py b/util/config_option_check.py
index 95bb72a1f6..46b0c5b922 100755
--- a/util/config_option_check.py
+++ b/util/config_option_check.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python2
+#!/usr/bin/env python2
# Copyright 2015 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
diff --git a/util/ec3po/console.py b/util/ec3po/console.py
index a730d3d8ec..3643ea498a 100755
--- a/util/ec3po/console.py
+++ b/util/ec3po/console.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python2
+#!/usr/bin/env python2
# Copyright 2015 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
diff --git a/util/ec3po/console_unittest.py b/util/ec3po/console_unittest.py
index 72565ca510..3c194d8419 100755
--- a/util/ec3po/console_unittest.py
+++ b/util/ec3po/console_unittest.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python2
+#!/usr/bin/env python2
# Copyright 2015 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
diff --git a/util/ec3po/interpreter_unittest.py b/util/ec3po/interpreter_unittest.py
index 57c9abf4ae..de2335158b 100755
--- a/util/ec3po/interpreter_unittest.py
+++ b/util/ec3po/interpreter_unittest.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python2
+#!/usr/bin/env python2
# Copyright 2015 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
diff --git a/util/flash_pd.py b/util/flash_pd.py
index 71a7ca9b19..f39af7f06d 100755
--- a/util/flash_pd.py
+++ b/util/flash_pd.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python2
# Copyright 2014 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
diff --git a/util/inject-keys.py b/util/inject-keys.py
index ef87bb14b6..380fc34729 100755
--- a/util/inject-keys.py
+++ b/util/inject-keys.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/env python2
# -*- coding: utf-8 -*-
#
# Copyright 2016 The Chromium OS Authors. All rights reserved.
diff --git a/util/run_host_test b/util/run_host_test
index 0baaabcd06..db3345845d 100755
--- a/util/run_host_test
+++ b/util/run_host_test
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python2
# Copyright 2013 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
diff --git a/util/unpack_ftb.py b/util/unpack_ftb.py
index 1777d5eec6..105f7044ec 100755
--- a/util/unpack_ftb.py
+++ b/util/unpack_ftb.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python2
# Copyright 2018 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.