diff options
author | Leah Rowe <leah@libreboot.org> | 2022-11-19 03:33:38 +0000 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2022-11-19 03:33:38 +0000 |
commit | 60793c552fa0eb1066adcf5e8eec3d5a4bcb7efd (patch) | |
tree | 3867f9fff8b6e298d66d7c411296bb58c76a8bcb /resources/coreboot/default/patches/0013-specifically-use-python3-in-scripts.patch | |
parent | 6114c34988d9f5768aac0b56cc4137ebaad81fd4 (diff) |
fix gnat build issue on coreboot repositories
backported from newer coreboot revisions, see patch
coreboot/default/patches/0014-coreboot-default-fix-crossgcc-build.patch
Diffstat (limited to 'resources/coreboot/default/patches/0013-specifically-use-python3-in-scripts.patch')
-rw-r--r-- | resources/coreboot/default/patches/0013-specifically-use-python3-in-scripts.patch | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/resources/coreboot/default/patches/0013-specifically-use-python3-in-scripts.patch b/resources/coreboot/default/patches/0013-specifically-use-python3-in-scripts.patch new file mode 100644 index 00000000..2e5f53dc --- /dev/null +++ b/resources/coreboot/default/patches/0013-specifically-use-python3-in-scripts.patch @@ -0,0 +1,36 @@ +From 4106d0163987ae926a7f4261dec06e3e8bf85ff0 Mon Sep 17 00:00:00 2001 +From: Leah Rowe <leah@libreboot.org> +Date: Sun, 13 Mar 2022 18:04:55 +0000 +Subject: [PATCH 13/14] specifically use python3, in scripts + +--- + src/drivers/intel/fsp2_0/Makefile.inc | 2 +- + util/spdtool/spdtool.py | 2 +- + 2 files changed, 2 insertions(+), 2 deletions(-) + +diff --git a/src/drivers/intel/fsp2_0/Makefile.inc b/src/drivers/intel/fsp2_0/Makefile.inc +index eaf99d1492..9e82172c9e 100644 +--- a/src/drivers/intel/fsp2_0/Makefile.inc ++++ b/src/drivers/intel/fsp2_0/Makefile.inc +@@ -84,7 +84,7 @@ endif + + ifeq ($(CONFIG_FSP_FULL_FD),y) + $(obj)/Fsp_M.fd: $(call strip_quotes,$(CONFIG_FSP_FD_PATH)) $(DOTCONFIG) +- python 3rdparty/fsp/Tools/SplitFspBin.py split -f $(CONFIG_FSP_FD_PATH) -o "$(obj)" -n "Fsp.fd" ++ python3 3rdparty/fsp/Tools/SplitFspBin.py split -f $(CONFIG_FSP_FD_PATH) -o "$(obj)" -n "Fsp.fd" + + $(obj)/Fsp_S.fd: $(call strip_quotes,$(CONFIG_FSP_FD_PATH)) $(obj)/Fsp_M.fd + true +diff --git a/util/spdtool/spdtool.py b/util/spdtool/spdtool.py +index 89976eac59..2cd7027377 100644 +--- a/util/spdtool/spdtool.py ++++ b/util/spdtool/spdtool.py +@@ -1,4 +1,4 @@ +-#!/usr/bin/env python ++#!/usr/bin/env python3 + # spdtool - Tool for partial deblobbing of UEFI firmware images + # SPDX-License-Identifier: GPL-3.0-or-later + # +-- +2.25.1 + |