summarylogtreecommitdiffstats
path: root/linux.install
diff options
context:
space:
mode:
Diffstat (limited to 'linux.install')
-rw-r--r--linux.install34
1 files changed, 18 insertions, 16 deletions
diff --git a/linux.install b/linux.install
index 7127469f1fb9..6c0c8e2d50d6 100644
--- a/linux.install
+++ b/linux.install
@@ -1,27 +1,29 @@
-display_requirements () {
-cat <<-EOF
+display_display_message () {
+ cat <<-EOF
- To get suspend working properly you must do the following:
+ To get suspend working properly you must do the following:
- Enable the macbook-wakeup service for suspend/resume on LID events:
- systemctl enable --now macbook-wakeup.service
+ Enable the macbook-wakeup service for suspend/resume on LID events:
+ systemctl enable --now macbook-wakeup.service
- Optionally, include the kernel boot option processor.ignore_ppc=1
- to allow frequency changing on battery power.
+ Optionally, include the kernel boot option processor.ignore_ppc=1
+ to allow frequency changing on battery power.
-EOF
+ EOF
+}
+
+post_install() {
+ display_message
}
post_upgrade() {
- if findmnt --fstab -uno SOURCE /boot &>/dev/null && ! mountpoint -q /boot; then
- echo "WARNING: /boot appears to be a separate partition but is not mounted."
- fi
- display_requirements
+ if findmnt --fstab -uno SOURCE /boot &>/dev/null && ! mountpoint -q /boot; then
+ echo "WARNING: /boot appears to be a separate partition but is not mounted."
+ fi
+ display_message
}
post_remove() {
- rm -f boot/initramfs-%PKGBASE%.img
- rm -f boot/initramfs-%PKGBASE%-fallback.img
+ rm -f boot/initramfs-%PKGBASE%.img
+ rm -f boot/initramfs-%PKGBASE%-fallback.img
}
-
-# vim:set ft=sh ts=8 sts=2 sw=2 et: