diff options
author | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2015-08-26 06:38:46 -0300 |
---|---|---|
committer | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2015-08-26 06:38:46 -0300 |
commit | 2095d81f0b2afe34cef32d8677d50351b97a1c36 (patch) | |
tree | 612508046f04dab25a4aca25e136607179cc337a /libre/linux-libre/linux.install | |
parent | 1f4f3aab51f982694d59bfd372233102aaa0b88d (diff) | |
download | abslibre-2095d81f0b2afe34cef32d8677d50351b97a1c36.tar.gz abslibre-2095d81f0b2afe34cef32d8677d50351b97a1c36.tar.bz2 abslibre-2095d81f0b2afe34cef32d8677d50351b97a1c36.zip |
linux-libre: fix issues for armv7h
Diffstat (limited to 'libre/linux-libre/linux.install')
-rw-r--r-- | libre/linux-libre/linux.install | 42 |
1 files changed, 27 insertions, 15 deletions
diff --git a/libre/linux-libre/linux.install b/libre/linux-libre/linux.install index 32514d892..2f90d8bf6 100644 --- a/libre/linux-libre/linux.install +++ b/libre/linux-libre/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 |