summaryrefslogtreecommitdiff
path: root/libre-testing/linux-libre-pck/linux.install
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@parabola.nu>2017-01-28 03:40:05 -0300
committerAndré Fabian Silva Delgado <emulatorman@parabola.nu>2017-01-28 03:40:15 -0300
commitbddbc9bbfa52fd8fe70b598f12e932eef45f7b15 (patch)
treeea9cf262268fa156b55430d542b9fa4ddd30bba3 /libre-testing/linux-libre-pck/linux.install
parent434bce83e8ab67d59e12596c44e2abe8e0cb0b9d (diff)
downloadabslibre-bddbc9bbfa52fd8fe70b598f12e932eef45f7b15.tar.gz
abslibre-bddbc9bbfa52fd8fe70b598f12e932eef45f7b15.tar.bz2
abslibre-bddbc9bbfa52fd8fe70b598f12e932eef45f7b15.zip
linux-libre-pck-4.9.6_gnu.pck1-1: updating version
Diffstat (limited to 'libre-testing/linux-libre-pck/linux.install')
-rw-r--r--libre-testing/linux-libre-pck/linux.install33
1 files changed, 0 insertions, 33 deletions
diff --git a/libre-testing/linux-libre-pck/linux.install b/libre-testing/linux-libre-pck/linux.install
deleted file mode 100644
index 97a2a8133..000000000
--- a/libre-testing/linux-libre-pck/linux.install
+++ /dev/null
@@ -1,33 +0,0 @@
-post_install () {
- # updating module dependencies
- echo ">>> Updating module dependencies. Please wait ..."
- depmod %KERNVER%
- if [ "$(uname -m)" = "armv7l" ]; then
- echo ">>> WARNING: Using this kernel requires an updated U-Boot!"
- fi
-}
-
-post_upgrade() {
- # updating module dependencies
- echo ">>> Updating module dependencies. Please wait ..."
- depmod %KERNVER%
- 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
-
- 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
- fi
-}
-
-if [ "$(uname -m)" = "x86_64" ] || [ "$(uname -m)" = "i686" ]; then
-post_remove() {
- # also remove the compat symlinks
- rm -f boot/initramfs-%PKGBASE%.img
- rm -f boot/initramfs-%PKGBASE%-fallback.img
-}
-fi