mirror of
https://codeberg.org/libreboot/lbmk.git
synced 2026-07-18 04:22:15 +02:00
705149a3e0
coreboot revision: d86260a134575b083f35103e1cd5c7c7ad883bce from 2 August 2023 The patches were updated. HP 8300 USDT has now been merged upstream, so that patch is no longer included in lbmk. SD card fix for E6400 merged upstream, so now it's removed in lbmk. The nvidia E6400 patch (devicetree.cb) has not yet merged upstream. The ifdtool --nuke option has been rebased. Patches as follow-ups to earlier patches removed; for example, patches that set VRAM to 352MB on GM45 have been removed, and replaced with patches that just set 256MB in the first place (this is more stable). This was mostly a clean rebase, of all the patches. It went smooth. I haven't updated cros/haswell yet; the 4.11_branch revision used on fam15h will also remain, for now. The coreboot configurations have been updated, for this new revision of coreboot. Signed-off-by: Leah Rowe <leah@libreboot.org>
39 lines
1.3 KiB
Diff
39 lines
1.3 KiB
Diff
From e5a6fac5b3c75c5aa4ae5106ec336a18083fbab0 Mon Sep 17 00:00:00 2001
|
|
From: Leah Rowe <leah@libreboot.org>
|
|
Date: Mon, 3 Jan 2022 19:06:22 +0000
|
|
Subject: [PATCH 11/19] 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 2e315d4521..3585cbd58b 100644
|
|
--- a/src/mainboard/lenovo/x230/cmos.default
|
|
+++ b/src/mainboard/lenovo/x230/cmos.default
|
|
@@ -15,5 +15,5 @@ trackpoint=Enable
|
|
backlight=Both
|
|
usb_always_on=Disable
|
|
f1_to_f12_as_primary=Enable
|
|
-me_state=Normal
|
|
+me_state=Disabled
|
|
gfx_uma_size=224M
|
|
--
|
|
2.39.2
|
|
|