mirror of
https://codeberg.org/libreboot/lbmk.git
synced 2026-07-11 05:52:36 +02:00
c7569a6714
I also cherry-picked a patch from Heads, that fixes build issues caused by the hacks in the T480 port; several changes made by Mate are now ifdef'd based on whether a KabyLake ThinkPad is specified in defconfig. Signed-off-by: Leah Rowe <leah@libreboot.org>
29 lines
990 B
Diff
29 lines
990 B
Diff
From 7f650a19d30fe6157b150c5248d6086007323d72 Mon Sep 17 00:00:00 2001
|
|
From: Alper Nebi Yasak <alpernebiyasak@gmail.com>
|
|
Date: Thu, 22 Jun 2023 16:44:27 +0300
|
|
Subject: [PATCH 08/37] HACK: Disable coreboot related BL31 features
|
|
|
|
I don't know why, but removing this BL31 make argument lets gru-kevin
|
|
power off properly when shut down from Linux. Needs investigation.
|
|
---
|
|
src/arch/arm64/Makefile.mk | 3 ---
|
|
1 file changed, 3 deletions(-)
|
|
|
|
diff --git a/src/arch/arm64/Makefile.mk b/src/arch/arm64/Makefile.mk
|
|
index f54c6d22fc..b075abfd42 100644
|
|
--- a/src/arch/arm64/Makefile.mk
|
|
+++ b/src/arch/arm64/Makefile.mk
|
|
@@ -162,9 +162,6 @@ BL31_MAKEARGS += LOG_LEVEL=40
|
|
# Always enable crash reporting, even on a release build
|
|
BL31_MAKEARGS += CRASH_REPORTING=1
|
|
|
|
-# Enable coreboot-specific features like CBMEM console support
|
|
-BL31_MAKEARGS += COREBOOT=1
|
|
-
|
|
# Avoid build/release|build/debug distinction by overriding BUILD_PLAT directly
|
|
BL31_MAKEARGS += BUILD_PLAT="$(BL31_BUILD)"
|
|
|
|
--
|
|
2.39.5
|
|
|