x86: add preinit hook to reload microcode
Signed-off-by: Zoltan HERPAI <wigyori@uid0.hu>
This commit is contained in:
parent
01020bc74d
commit
1ba6d59f2b
1 changed files with 10 additions and 0 deletions
10
target/linux/x86/base-files/lib/preinit/02_load_x86_ucode
Normal file
10
target/linux/x86/base-files/lib/preinit/02_load_x86_ucode
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
#!/bin/sh
|
||||||
|
# Copyright (C) 2018 OpenWrt.org
|
||||||
|
|
||||||
|
do_load_x86_ucode() {
|
||||||
|
if [ -e "/sys/devices/system/cpu/microcode/reload" ]; then
|
||||||
|
echo 1 > /sys/devices/system/cpu/microcode/reload
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
boot_hook_add preinit_main do_load_x86_ucode
|
Loading…
Reference in a new issue