diff options
author | Jack Mitchell <ml@embed.me.uk> | 2019-12-10 13:07:21 +0000 |
---|---|---|
committer | Kever Yang <kever.yang@rock-chips.com> | 2019-12-27 14:26:13 +0800 |
commit | 6d06ea34239ab5099783ce588ad4aead96e1fccb (patch) | |
tree | 0f3627cf3acdc26928c39540f6342248cf6e9788 /arch | |
parent | 29a4e355822a3ae2c546f328758e2785368f9266 (diff) | |
download | u-boot-6d06ea34239ab5099783ce588ad4aead96e1fccb.tar.gz u-boot-6d06ea34239ab5099783ce588ad4aead96e1fccb.tar.xz u-boot-6d06ea34239ab5099783ce588ad4aead96e1fccb.zip |
rockchip: make_fit_atf: explicitly use python3
On a distribution with no python2 installed and no
python->python3 symlink the script will fail to execute.
Specify python3 explicitly as it's already a requirement
to build u-boot.
Signed-off-by: Jack Mitchell <ml@embed.me.uk>
Reviewed-by: Kever Yang <kever.yang@rock-chips.com>
Diffstat (limited to 'arch')
-rwxr-xr-x | arch/arm/mach-rockchip/make_fit_atf.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-rockchip/make_fit_atf.py b/arch/arm/mach-rockchip/make_fit_atf.py index 3c045a5e17..c79317d6c5 100755 --- a/arch/arm/mach-rockchip/make_fit_atf.py +++ b/arch/arm/mach-rockchip/make_fit_atf.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 """ # SPDX-License-Identifier: GPL-2.0+ # |