diff options
author | Predrag Ivanović <predivan@mts.rs> | 2018-02-22 17:52:23 +0100 |
---|---|---|
committer | Predrag Ivanović <predivan@mts.rs> | 2018-02-22 17:52:23 +0100 |
commit | 25f5adccc6ef2c98fa689788820f877560eea742 (patch) | |
tree | 81afb49eec8c32da81b6d8598645b30376196f51 /intel-ucode | |
parent | c3f48df94b97cdf5b99e41c1b30a406bb9315746 (diff) | |
download | contrib-25f5adccc6ef2c98fa689788820f877560eea742.tar.gz contrib-25f5adccc6ef2c98fa689788820f877560eea742.tar.xz |
intel-ucode: add README
Diffstat (limited to 'intel-ucode')
-rw-r--r-- | intel-ucode/README | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/intel-ucode/README b/intel-ucode/README new file mode 100644 index 000000000..99b43d0e3 --- /dev/null +++ b/intel-ucode/README @@ -0,0 +1,34 @@ +post-install +--- +Enabling Intel microcode updates + +Microcode must be loaded by the bootloader. +These updates must be enabled by adding /boot/early-ucode.cpio as the *FIRST* initrd in the bootloader config file. +This is in addition to the normal initrd file, if you are using one. + +GRUB2 +--- +- Automatic method + +grub-mkconfig will automatically detect the microcode update and configure GRUB appropriately. +After installing the intel-ucode package, regenerate the GRUB config to activate loading the microcode update by running: + +# grub-mkconfig -o /boot/grub/grub.cfg + + +- Manual method + +Alternatively, manually add /boot/early-ucode.cpio to grub.cfg, so +it looks similar to below: + +echo 'Loading Linux 4.15.3 ...' +linux /boot/vmlinuz-4.15.3 root=/dev/sdb1 ro rootfstype=ext4 rootfstype=ext4 quiet +echo 'Loading intel microcode ...' +initrd /boot/early-ucode.cpio $OTHER_INITRD + +You'll have to do it for every kernel you have, +so the use of the automagic method is reccomended. + +OTHER BOOTLOADERS +--- +Patches to add them to the README welcome :) |