mirror of
https://codeberg.org/libreboot/lbmk.git
synced 2026-07-20 15:03:44 +02:00
c716341c13
I realised that the Dell OptiPlex 3050 Micro has NVRAM available. Use that backend, and hardcode power_on_after_fail to Disable, which is already done in cmos.default. The Lenovo ThinkPad T480 currently has no option table in coreboot, besides the CBFS one. For this, the CBFS option table has been enabled, and the build system has been modified to insert a relevant config for power_on_after_fail. Nicholas Chin informs me that Kabylake generally has legacy NVRAM, so enabling it for the T480/T480s should work, but we'll need to use it in the future anyway; better to just use CBFS now. I *could* use the CBFS backend on 3050micro as well. Signed-off-by: Leah Rowe <leah@libreboot.org>
38 lines
1.3 KiB
Diff
38 lines
1.3 KiB
Diff
From 61051fbf9f1da48932930b512527626d1cf5bfbd Mon Sep 17 00:00:00 2001
|
|
From: Leah Rowe <leah@libreboot.org>
|
|
Date: Mon, 3 Jan 2022 19:06:22 +0000
|
|
Subject: [PATCH 03/40] lenovo/x230: set me_state=Disabled in cmos.default
|
|
|
|
I only recently found out about this. It's possible to use me_cleaner to
|
|
do the same thing, but some people might just flash coreboot and not do
|
|
anything with the ME region
|
|
|
|
With this change, the ME is set to disabled. It's my understanding that this
|
|
will accomplish more or less the same thing as me_cleaner, without actually
|
|
using that. Of course, I still recommend using me_cleaner
|
|
|
|
I saw this when I audited coreboot's git history, and saw this:
|
|
|
|
commit 833e9bad4762e0dca6c867d3a18dbaf6d5166be8
|
|
Author: Evgeny Zinoviev <me@ch1p.io>
|
|
Date: Thu Nov 21 21:47:31 2019 +0300
|
|
|
|
sb/intel/bd82x6x: Support ME Soft Temporary Disable Mode
|
|
---
|
|
src/mainboard/lenovo/x230/cmos.default | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/src/mainboard/lenovo/x230/cmos.default b/src/mainboard/lenovo/x230/cmos.default
|
|
index 732e214b32..8454f0eac0 100644
|
|
--- a/src/mainboard/lenovo/x230/cmos.default
|
|
+++ b/src/mainboard/lenovo/x230/cmos.default
|
|
@@ -17,4 +17,4 @@ trackpoint=Enable
|
|
backlight=Both
|
|
usb_always_on=Disable
|
|
f1_to_f12_as_primary=Enable
|
|
-me_state=Normal
|
|
+me_state=Disabled
|
|
--
|
|
2.47.3
|
|
|