aboutsummarylogtreecommitdiffstats
path: root/linux.install
diff options
context:
space:
mode:
Diffstat (limited to 'linux.install')
-rw-r--r--linux.install12
1 files changed, 12 insertions, 0 deletions
diff --git a/linux.install b/linux.install
new file mode 100644
index 000000000000..43b8071cf8a4
--- /dev/null
+++ b/linux.install
@@ -0,0 +1,12 @@
+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
+}
+
+post_remove() {
+ rm -f boot/initramfs-%PKGBASE%.img
+ rm -f boot/initramfs-%PKGBASE%-fallback.img
+}
+
+# vim:set ft=sh ts=8 sts=2 sw=2 et: