9 lines
153 B
Bash
9 lines
153 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
#%stage: boot
|
||
|
#%depends: udev
|
||
|
|
||
|
if [ -w /sys/devices/system/cpu/microcode/reload ];then
|
||
|
echo 1 >/sys/devices/system/cpu/microcode/reload
|
||
|
fi
|