mirror of
https://codeberg.org/libreboot/lbmk.git
synced 2026-07-11 05:52:36 +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>
37 lines
1.2 KiB
Diff
37 lines
1.2 KiB
Diff
From 81360b8c28293856e964934d1f356b1312b39ff2 Mon Sep 17 00:00:00 2001
|
|
From: Leah Rowe <info@minifree.org>
|
|
Date: Thu, 26 Dec 2024 19:45:20 +0000
|
|
Subject: [PATCH 32/40] soc/intel/skylake: Don't compress FSP-S
|
|
|
|
Build systems like lbmk need to reproducibly insert
|
|
certain vendor files on release images.
|
|
|
|
Compression isn't always reproducible, and making it
|
|
so costs a lot more time than simply disabling compression.
|
|
|
|
With this change, the FSP-S module will now be inserted
|
|
without compression, which means that there will now be
|
|
about 40KB of extra space used in the flash.
|
|
|
|
Signed-off-by: Leah Rowe <info@minifree.org>
|
|
---
|
|
src/soc/intel/skylake/Kconfig | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/src/soc/intel/skylake/Kconfig b/src/soc/intel/skylake/Kconfig
|
|
index 493a2d835a..42af82a5d8 100644
|
|
--- a/src/soc/intel/skylake/Kconfig
|
|
+++ b/src/soc/intel/skylake/Kconfig
|
|
@@ -12,7 +12,7 @@ config SOC_INTEL_COMMON_SKYLAKE_BASE
|
|
select CPU_SUPPORTS_PM_TIMER_EMULATION
|
|
select DRIVERS_USB_ACPI
|
|
select EDK2_CPU_TIMER_LIB if PAYLOAD_EDK2
|
|
- select FSP_COMPRESS_FSP_S_LZ4
|
|
+# select FSP_COMPRESS_FSP_S_LZ4
|
|
select FSP_M_XIP
|
|
select GENERIC_GPIO_LIB
|
|
select HAVE_FSP_GOP
|
|
--
|
|
2.47.3
|
|
|