mirror of
https://codeberg.org/libreboot/lbmk.git
synced 2026-07-13 23:09:40 +02:00
2edd583aee
Courtesy of Kat Inskip who ported this board. Headphone output doesn't work at the moment, due to incorrect verb. Intel VBT is also wrong. Both are taken from another board. This will be amended later with the correct verb and VBT. Signed-off-by: Leah Rowe <leah@libreboot.org>
29 lines
990 B
Diff
29 lines
990 B
Diff
From 0e2fa472354b2e68ffbfc01d5bb225ca9d8973f0 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/48] 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 efd628fee7..6c4f3d702e 100644
|
|
--- a/src/arch/arm64/Makefile.mk
|
|
+++ b/src/arch/arm64/Makefile.mk
|
|
@@ -156,9 +156,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.47.3
|
|
|