diff options
author | Tony Lambiris | 2016-07-05 19:28:38 -0400 |
---|---|---|
committer | Tony Lambiris | 2016-07-05 19:28:38 -0400 |
commit | f9da30a5aa361ec24db25875a9fe254f72d4a9c3 (patch) | |
tree | edfe92cad38d16b18d5296a12365d4ee9703ab2d /linux.install | |
parent | 78a8b2e91463f7e66ad55bcd362ab25728e80b79 (diff) | |
download | aur-f9da30a5aa361ec24db25875a9fe254f72d4a9c3.tar.gz |
Renaming linux-macbook-pro to linux-macbook
Diffstat (limited to 'linux.install')
-rw-r--r-- | linux.install | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/linux.install b/linux.install deleted file mode 100644 index dd2fa5c7aac..00000000000 --- a/linux.install +++ /dev/null @@ -1,37 +0,0 @@ -# arg 1: the new package version -# arg 2: the old package version - -KERNEL_NAME= -KERNEL_VERSION= - -post_install () { - # updating module dependencies - echo ">>> Updating module dependencies. Please wait ..." - depmod ${KERNEL_VERSION} - echo ">>> Generating initial ramdisk, using mkinitcpio. Please wait..." - mkinitcpio -p linux${KERNEL_NAME} -} - -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 ${KERNEL_VERSION} - echo ">>> Generating initial ramdisk, using mkinitcpio. Please wait..." - mkinitcpio -p linux${KERNEL_NAME} - - 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 -} - -post_remove() { - # also remove the compat symlinks - rm -f boot/initramfs-linux${KERNEL_NAME}.img - rm -f boot/initramfs-linux${KERNEL_NAME}-fallback.img -} |