0010-soc-intel-skylake-Don-t-compress-FSP-S.patch 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. From f08dbaacf747eb198bbc8f83e0220ca803f19116 Mon Sep 17 00:00:00 2001
  2. From: Leah Rowe <info@minifree.org>
  3. Date: Thu, 26 Dec 2024 19:45:20 +0000
  4. Subject: [PATCH 10/11] soc/intel/skylake: Don't compress FSP-S
  5. Build systems like lbmk need to reproducibly insert
  6. certain vendor files on release images.
  7. Compression isn't always reproducible, and making it
  8. so costs a lot more time than simply disabling compression.
  9. With this change, the FSP-S module will now be inserted
  10. without compression, which means that there will now be
  11. about 40KB of extra space used in the flash.
  12. Signed-off-by: Leah Rowe <info@minifree.org>
  13. ---
  14. src/soc/intel/skylake/Kconfig | 2 +-
  15. 1 file changed, 1 insertion(+), 1 deletion(-)
  16. diff --git a/src/soc/intel/skylake/Kconfig b/src/soc/intel/skylake/Kconfig
  17. index c24df2ef75..8e25f796ed 100644
  18. --- a/src/soc/intel/skylake/Kconfig
  19. +++ b/src/soc/intel/skylake/Kconfig
  20. @@ -12,7 +12,7 @@ config SOC_INTEL_COMMON_SKYLAKE_BASE
  21. select CPU_SUPPORTS_PM_TIMER_EMULATION
  22. select DRIVERS_USB_ACPI
  23. select EDK2_CPU_TIMER_LIB if PAYLOAD_EDK2
  24. - select FSP_COMPRESS_FSP_S_LZ4
  25. +# select FSP_COMPRESS_FSP_S_LZ4
  26. select FSP_M_XIP
  27. select GENERIC_GPIO_LIB
  28. select HAVE_FSP_GOP
  29. --
  30. 2.39.5