2
0
forked from Ivasoft/openwrt

Revert "x86: add amd microcode entries to grub config"

This reverts commit a822283c7e.

Signed-off-by: John Crispin <john@phrozen.org>
This commit is contained in:
John Crispin
2018-11-27 18:58:35 +01:00
parent 30f30d3e11
commit 8ead5a735d
3 changed files with 16 additions and 14 deletions

View File

@@ -0,0 +1,12 @@
#!/bin/sh
# Copyright (C) 2018 OpenWrt.org
do_load_x86_ucode() {
if grep -q AuthenticAMD /proc/cpuinfo; then
if [ -e "/sys/devices/system/cpu/microcode/reload" ]; then
echo 1 > /sys/devices/system/cpu/microcode/reload
fi
fi
}
boot_hook_add preinit_main do_load_x86_ucode