initial srpm import
This commit is contained in:
parent
64ba2e5ffd
commit
7a32965a10
84 changed files with 51448 additions and 0 deletions
24
neuter_intel_microcode_load.patch
Normal file
24
neuter_intel_microcode_load.patch
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
diff --git a/arch/x86/kernel/microcode_intel.c b/arch/x86/kernel/microcode_intel.c
|
||||
index ebd193e..c57024a 100644
|
||||
--- a/arch/x86/kernel/microcode_intel.c
|
||||
+++ b/arch/x86/kernel/microcode_intel.c
|
||||
@@ -453,9 +453,18 @@ static void microcode_fini_cpu(int cpu)
|
||||
uci->mc = NULL;
|
||||
}
|
||||
|
||||
+/* we don't ship the broken out files...
|
||||
+ * instead, we'll just fail here, and load it with microcode_ctl
|
||||
+ */
|
||||
+static enum ucode_state noop_request_microcode_fw(int cpu,
|
||||
+ struct device *device)
|
||||
+{
|
||||
+ return UCODE_NFOUND;
|
||||
+}
|
||||
+
|
||||
static struct microcode_ops microcode_intel_ops = {
|
||||
.request_microcode_user = request_microcode_user,
|
||||
- .request_microcode_fw = request_microcode_fw,
|
||||
+ .request_microcode_fw = noop_request_microcode_fw,
|
||||
.collect_cpu_info = collect_cpu_info,
|
||||
.apply_microcode = apply_microcode,
|
||||
.microcode_fini_cpu = microcode_fini_cpu,
|
||||
Loading…
Add table
Add a link
Reference in a new issue