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.
This commit is contained in:
Marek Marczykowski-Górecki 2015-07-11 14:20:04 +02:00
parent f056e0341e
commit fddeb4a23c
No known key found for this signature in database
GPG Key ID: 063938BA42CFA724

View File

@ -1,3 +1,14 @@
#!/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