Files
ports/extra/linux/linux.install
2018-10-05 22:25:26 +08:00

15 lines
204 B
Plaintext
Executable File

post_install() {
if [ $(type -p mkinitramfs) ]; then
(
cd /boot
mkinitramfs 4.18.9
mv initrd-4.18.9.img initrd-venom.img
)
fi
}
post_upgrade() {
rm -f /boot/initrd-venom.img
post_install
}