mirror of
https://codeberg.org/libreboot/lbmk.git
synced 2026-03-27 14:51:15 +02:00
352MB VRAM causes stability issues, according to some reports users can still set it to the higher level when building, if they wish to
37 lines
1.3 KiB
Diff
37 lines
1.3 KiB
Diff
From 52acb9071bda297e9520107a0d0f996e9cba28fb 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/18] 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 f11ebee102..e4b151b524 100644
|
|
--- a/src/drivers/intel/fsp2_0/Makefile.inc
|
|
+++ b/src/drivers/intel/fsp2_0/Makefile.inc
|
|
@@ -88,7 +88,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.39.2
|
|
|