mirror of
https://github.com/outbackdingo/ports.git
synced 2026-01-28 02:20:05 +00:00
15 lines
216 B
Plaintext
Executable File
15 lines
216 B
Plaintext
Executable File
post_install() {
|
|
if [ $(type -p mkinitramfs) ]; then
|
|
(
|
|
cd /boot
|
|
mkinitramfs 4.18.9-Venom
|
|
mv initrd-4.18.9-Venom.img initrd-venom.img
|
|
)
|
|
fi
|
|
}
|
|
|
|
post_upgrade() {
|
|
rm -f /boot/initrd-venom.img
|
|
post_install
|
|
}
|