summarylogtreecommitdiffstats
path: root/raspberry-overlayroot.install
blob: 6289316f059244905090a84b40ad200fd7c63438 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
post_install() {
  echo " > Please add 'overlayroot' to your HOOKS array in /etc/mkinitcpio.conf and run mkinitcpio -P."
}

post_remove() {
  if grep -qs 'overlayroot' /proc/cmdline; then
    echo " > Please remove 'overlayroot' from your kernel commandline."
  fi
  if grep -qs 'overlayroot' /etc/mkinitcpio.conf; then
    echo " > Please remove 'overlayroot' from your HOOKS array in /etc/mkinitcpio.conf and run mkinitcpio -P."
  fi
}