summarylogtreecommitdiffstats
path: root/linux.install
diff options
context:
space:
mode:
authorTony Lambiris2017-11-22 23:57:44 -0500
committerTony Lambiris2017-11-23 00:00:11 -0500
commiteae85ae397cc33d8d0eec2c19cce2031a84dc109 (patch)
tree0cdaa4947be801f23c8eaac2718e27b471aac860 /linux.install
parent7d090451fb7dc3ea4afc1e37fa22bcef756c83fb (diff)
downloadaur-eae85ae397cc33d8d0eec2c19cce2031a84dc109.tar.gz
Sync to linux 4.14
Add .SRCINFO
Diffstat (limited to 'linux.install')
-rw-r--r--linux.install30
1 files changed, 5 insertions, 25 deletions
diff --git a/linux.install b/linux.install
index da6dcfa7b760..c8e5a68d75ba 100644
--- a/linux.install
+++ b/linux.install
@@ -1,45 +1,25 @@
display_requirements () {
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
}
-post_install () {
- # updating module dependencies
- echo ">>> Updating module dependencies. Please wait ..."
- depmod %KERNVER%
-
- display_requirements
-}
-
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
-
- # updating module dependencies
- echo ">>> Updating module dependencies. Please wait ..."
- depmod %KERNVER%
-
- if [ $(vercmp $2 3.13) -lt 0 ]; then
- echo ">>> WARNING: AT keyboard support is no longer built into the kernel."
- echo ">>> In order to use your keyboard during early init, you MUST"
- echo ">>> include the 'keyboard' hook in your mkinitcpio.conf."
- fi
-
display_requirements
}
post_remove() {
- # also remove the compat symlinks
rm -f boot/initramfs-%PKGBASE%.img
rm -f boot/initramfs-%PKGBASE%-fallback.img
}