summarylogtreecommitdiffstats
path: root/linux.install
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado2015-09-22 23:22:08 -0300
committerAndré Fabian Silva Delgado2015-09-22 23:22:08 -0300
commit07b9ad4834ef9ae1a9d44ce3ee595da0958003c6 (patch)
tree47fe342b9179114992fc19e38fe1d25d27caef25 /linux.install
parent8f513eae47fa10a1b5dabb6ee952f0877c557c0e (diff)
downloadaur-07b9ad4834ef9ae1a9d44ce3ee595da0958003c6.tar.gz
Add armv7h support
Diffstat (limited to 'linux.install')
-rw-r--r--linux.install42
1 files changed, 27 insertions, 15 deletions
diff --git a/linux.install b/linux.install
index 32514d8926c9..2f90d8bf6583 100644
--- a/linux.install
+++ b/linux.install
@@ -8,30 +8,42 @@ 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-libre${KERNEL_NAME}
+ if [ $(uname -m) != armv7h ]; then
+ echo ">>> Generating initial ramdisk, using mkinitcpio. Please wait..."
+ mkinitcpio -p linux-libre${KERNEL_NAME}
+ else
+ echo "NOTE: Using this kernel requires an updated U-Boot!"
+ fi
}
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
+ if [ $(uname -m) != armv7h ]; 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
- # updating module dependencies
- echo ">>> Updating module dependencies. Please wait ..."
- depmod ${KERNEL_VERSION}
- echo ">>> Generating initial ramdisk, using mkinitcpio. Please wait..."
- mkinitcpio -p linux-libre${KERNEL_NAME}
+ # updating module dependencies
+ echo ">>> Updating module dependencies. Please wait ..."
+ depmod ${KERNEL_VERSION}
+ echo ">>> Generating initial ramdisk, using mkinitcpio. Please wait..."
+ mkinitcpio -p linux-libre${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
+ 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
+ else
+ # updating module dependencies
+ echo ">>> Updating module dependencies. Please wait ..."
+ depmod ${KERNEL_VERSION}
+ fi
}
+if [ $(uname -m) != armv7h ]; then
post_remove() {
# also remove the compat symlinks
rm -f boot/initramfs-linux-libre${KERNEL_NAME}.img
rm -f boot/initramfs-linux-libre${KERNEL_NAME}-fallback.img
}
+fi