summaryrefslogtreecommitdiff
path: root/kernels/linux-libre-x86_64/linux.install
diff options
context:
space:
mode:
authorDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2018-12-23 02:18:01 +0100
committerDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2018-12-23 02:22:52 +0100
commit08f5ca5b50661258964f7b36b6cc0892bf8c65e5 (patch)
treea67bbe7b8240dd6d3aac054ec2f081a8effba7eb /kernels/linux-libre-x86_64/linux.install
parent8a09f6f6da7126a778b2ec93310d75e39b664c73 (diff)
downloadabslibre-08f5ca5b50661258964f7b36b6cc0892bf8c65e5.tar.gz
abslibre-08f5ca5b50661258964f7b36b6cc0892bf8c65e5.tar.bz2
abslibre-08f5ca5b50661258964f7b36b6cc0892bf8c65e5.zip
Add kernels/linux-libre-x86_64
With this kernel, on machines with an x86_64 compatible CPU, you can run an i686 userspace with an x86_64 kernel. This for instance enables to use the same i686 rootfs on computers with 32bit and 64bit CPUs, while still being able to take advantage of a 64bit kernel on the machines that supports it. The users will then need to force i686 in pacman.conf like that: [options] Architecture = i686 They will also need to select the right kernel at boot. Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Diffstat (limited to 'kernels/linux-libre-x86_64/linux.install')
-rw-r--r--kernels/linux-libre-x86_64/linux.install14
1 files changed, 14 insertions, 0 deletions
diff --git a/kernels/linux-libre-x86_64/linux.install b/kernels/linux-libre-x86_64/linux.install
new file mode 100644
index 000000000..19a43a524
--- /dev/null
+++ b/kernels/linux-libre-x86_64/linux.install
@@ -0,0 +1,14 @@
+post_upgrade() {
+ if [ "$(uname -m)" = "x86_64" ] || [ "$(uname -m)" = "i686" ]; then
+ 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
+ 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: