diff options
author | Leah Rowe <leah@libreboot.org> | 2021-11-21 15:57:40 +0000 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2021-11-22 10:03:50 +0000 |
commit | eed25bd2209a4c9f7c21a15689b5c90bd3757a6c (patch) | |
tree | e0f7711b5a2f6ffb241f408d59f55fca7fc231c1 /resources/coreboot/default/patches/0010-Fix-missing-include.patch | |
parent | fd586c8f307d56075b6335920a5d3e13a0c6897b (diff) |
update coreboot and nuke tianocore20211122
tianocore is a liability for the libreboot project. it's a bloated mess, and
unreliable, broken on many boards, and basically impossible to audit.
i don't trust tianocore, so i'm removing it.
Diffstat (limited to 'resources/coreboot/default/patches/0010-Fix-missing-include.patch')
-rw-r--r-- | resources/coreboot/default/patches/0010-Fix-missing-include.patch | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/resources/coreboot/default/patches/0010-Fix-missing-include.patch b/resources/coreboot/default/patches/0010-Fix-missing-include.patch new file mode 100644 index 00000000..aaa3805c --- /dev/null +++ b/resources/coreboot/default/patches/0010-Fix-missing-include.patch @@ -0,0 +1,63 @@ +From e6960dec197491941254af48b60f1cf1592bcb2b Mon Sep 17 00:00:00 2001 +From: Rodrigo <rm@firemail.cc> +Date: Mon, 23 Aug 2021 03:51:21 -0300 +Subject: [PATCH 10/11] Fix missing include + +--- + src/cpu/intel/model_1067x/model_1067x_init.c | 1 + + src/cpu/intel/model_106cx/model_106cx_init.c | 1 + + src/cpu/intel/model_6ex/model_6ex_init.c | 1 + + src/cpu/intel/model_6fx/model_6fx_init.c | 1 + + 4 files changed, 4 insertions(+) + +diff --git a/src/cpu/intel/model_1067x/model_1067x_init.c b/src/cpu/intel/model_1067x/model_1067x_init.c +index ca3ce274fc..cc7a5edca9 100644 +--- a/src/cpu/intel/model_1067x/model_1067x_init.c ++++ b/src/cpu/intel/model_1067x/model_1067x_init.c +@@ -9,6 +9,7 @@ + #include <cpu/x86/cache.h> + #include <cpu/x86/name.h> + #include <cpu/intel/smm_reloc.h> ++#include <cpu/intel/common/common.h> + + #include "chip.h" + +diff --git a/src/cpu/intel/model_106cx/model_106cx_init.c b/src/cpu/intel/model_106cx/model_106cx_init.c +index a0917045dd..7b88f19ee0 100644 +--- a/src/cpu/intel/model_106cx/model_106cx_init.c ++++ b/src/cpu/intel/model_106cx/model_106cx_init.c +@@ -8,6 +8,7 @@ + #include <cpu/intel/speedstep.h> + #include <cpu/x86/cache.h> + #include <cpu/x86/name.h> ++#include <cpu/intel/common/common.h> + + #define HIGHEST_CLEVEL 3 + static void configure_c_states(void) +diff --git a/src/cpu/intel/model_6ex/model_6ex_init.c b/src/cpu/intel/model_6ex/model_6ex_init.c +index 36cfd51f01..793474ffa5 100644 +--- a/src/cpu/intel/model_6ex/model_6ex_init.c ++++ b/src/cpu/intel/model_6ex/model_6ex_init.c +@@ -8,6 +8,7 @@ + #include <cpu/intel/speedstep.h> + #include <cpu/x86/cache.h> + #include <cpu/x86/name.h> ++#include <cpu/intel/common/common.h> + + #define HIGHEST_CLEVEL 3 + static void configure_c_states(void) +diff --git a/src/cpu/intel/model_6fx/model_6fx_init.c b/src/cpu/intel/model_6fx/model_6fx_init.c +index 6f2d6ef599..d0031ad741 100644 +--- a/src/cpu/intel/model_6fx/model_6fx_init.c ++++ b/src/cpu/intel/model_6fx/model_6fx_init.c +@@ -8,6 +8,7 @@ + #include <cpu/intel/speedstep.h> + #include <cpu/x86/cache.h> + #include <cpu/x86/name.h> ++#include <cpu/intel/common/common.h> + + #define HIGHEST_CLEVEL 3 + static void configure_c_states(void) +-- +2.25.1 + |