Core Update 168: Ship intel-microcodes and rebuild initrds

Signed-off-by: Peter Müller <peter.mueller@ipfire.org>
This commit is contained in:
Peter Müller 2022-05-08 11:41:09 +00:00
parent 822076e0c2
commit 3e2e9c1593
2 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1 @@
../../../../common/x86_64/intel-microcode

View File

@ -104,6 +104,20 @@ rm -vf \
chmod -v 750 /etc/sudoers.d
chmod -v 640 /etc/sudoers.d/*
# Rebuild initial ramdisk to apply microcode updates
dracut --regenerate-all --force
case "$(uname -m)" in
armv*)
mkimage -A arm -T ramdisk -C lzma -d /boot/initramfs-${KVER}-ipfire.img /boot/uInit-${KVER}-ipfire
rm /boot/initramfs-${KVER}-ipfire.img
;;
aarch64)
mkimage -A arm64 -T ramdisk -C lzma -d /boot/initramfs-${KVER}-ipfire.img /boot/uInit-${KVER}-ipfire
# dont remove initramfs because grub need this to boot.
;;
esac
# Start services
/etc/init.d/fcron restart
/etc/init.d/sshd restart