blob: 6baeb4ae71858e025d9574cff41b6f8069b34cd4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
post_upgrade() {
echo "If you haven't already, please manually add 'bcachefs' to mkinitcpio.conf variables 'MODULES=()' and 'HOOKS=()', and also add '/usr/bin/bcachefs' to 'BINARIES=()'"
echo "and then run 'mkinitcpio -p linux-bcachefs-git'"
}
post_install() {
echo "Please manually add 'bcachefs' to mkinitcpio.conf variables 'MODULES=()' and 'HOOKS=()', and also add '/usr/bin/bcachefs' to 'BINARIES=()'"
echo "and then run 'mkinitcpio -p linux-bcachefs-git'"
}
post_remove() {
echo "Please manually remove 'bcachefs' from mkinitcpio.conf variables 'MODULES=()' and 'HOOKS=()', and also remove '/usr/bin/bcachefs' from 'BINARIES=()'"
echo "and then run 'mkinitcpio -p linux-bcachefs-git'"
}
# vim:set ft=sh ts=8 sts=2 sw=2 et:
|