qubes-core-admin-linux/system-config/kernel-grub2.install
Marek Marczykowski-Górecki bc3c9fa422
Generate initramfs in kernel-install hook
The default one generates initramfs in location expected by Boot Loader
Specification, which as noted before, isn't useful for Qubes.

(cherry picked from commit fddeb4a23c)
2015-10-01 11:50:52 +02:00

15 lines
241 B
Bash
Executable File

#!/bin/sh
COMMAND="$1"
KVER="$2"
case "$COMMAND" in
add)
dracut -f "/boot/initramfs-${KVER}.img" "$KVER"
;;
remove)
rm -f "/boot/initramfs-${KVER}.img"
;;
esac
grub2-mkconfig -o /boot/grub2/grub.cfg