diff options
author | Anthony Nandaa <profnandaa@gmail.com> | 2024-07-02 12:22:50 +0200 |
---|---|---|
committer | Wei Liu <wei.liu@kernel.org> | 2024-08-03 02:01:55 +0200 |
commit | c6e2b45a544b45ce1a26858ded61a0dc4896d54a (patch) | |
tree | 2a69f37aa3165555f611fd9f7c5e515e5cf8caba /tools/hv | |
parent | x86/hyperv: Set X86_FEATURE_TSC_KNOWN_FREQ when Hyper-V provides frequency (diff) | |
download | linux-c6e2b45a544b45ce1a26858ded61a0dc4896d54a.tar.xz linux-c6e2b45a544b45ce1a26858ded61a0dc4896d54a.zip |
tools: hv: lsvmbus: change shebang to use python3
In many modern Linux distros, running `lsvmbus` returns the error:
```
/usr/bin/env: 'python': No such file or directory
```
because 'python' doesn't point anywhere.
Now that python2 has reached EOL as of January 1, 2020 and is no longer
maintained[1], these distros have python3 instead.
Also, the script isn't executable by default because the permissions are
set to mode 644.
Fix this by updating the shebang in the `lsvmbus` to use python3 instead
of python. Also fix the permissions to be 755 so that is executable by
default, which matches other similar scripts in `tools/hv`.
The script is also tested and verified that is compatible with
python3.
[1] https://www.python.org/doc/sunset-python-2/
Signed-off-by: Anthony Nandaa <profnandaa@gmail.com>
Reviewed-by: Michael Kelley <mhklinux@outlook.com>
Link: https://lore.kernel.org/r/20240702102250.13935-1-profnandaa@gmail.com
Signed-off-by: Wei Liu <wei.liu@kernel.org>
Message-ID: <20240702102250.13935-1-profnandaa@gmail.com>
Diffstat (limited to 'tools/hv')
-rwxr-xr-x[-rw-r--r--] | tools/hv/lsvmbus | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/hv/lsvmbus b/tools/hv/lsvmbus index 099f2c44dbed..f83698f14da2 100644..100755 --- a/tools/hv/lsvmbus +++ b/tools/hv/lsvmbus @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # SPDX-License-Identifier: GPL-2.0 import os |