PKGBUILDs/core/linux-raspberrypi/linux-raspberrypi.install

47 lines
1.6 KiB
Plaintext
Raw Normal View History

2014-05-23 02:57:51 +00:00
disable_cma() {
if [[ -f /boot/config.txt && $(grep '^cma' /boot/config.txt) != '' ]]; then
echo ">>> You appear to have dynamic memory (CMA) enabled, which is currently broken"
echo ">>> in newer kernels and will cause many issues if left enabled."
echo ">>> Disabling that for you now."
sed -i 's/^cma_/#cma_/g' /boot/config.txt
fi
}
2012-03-17 02:49:52 +00:00
post_install () {
2014-05-23 02:57:51 +00:00
disable_cma
2012-03-17 02:49:52 +00:00
}
post_upgrade() {
if grep "^[^#]*[[:space:]]/boot" etc/fstab 2>&1 >/dev/null; then
if ! grep "[[:space:]]/boot" etc/mtab 2>&1 >/dev/null; then
echo "WARNING: /boot appears to be a separate partition but is not mounted."
2012-03-17 02:49:52 +00:00
echo " You probably just broke your system. Congratulations."
fi
fi
2014-05-23 02:57:51 +00:00
disable_cma
2015-01-24 04:38:37 +00:00
if [ "$(vercmp $2 3.18.3)" -lt 0 ]; then
echo "________________________________________________________________________________"
echo ""
echo "WARNING: This kernel provides updated config.txt and cmdline.txt files."
echo " Check for pacnew files in /boot and merge or replace the existing files"
echo " with the new versions."
echo "________________________________________________________________________________"
echo ""
fi
2019-08-17 02:28:03 +00:00
if [[ $(grep 'Raspberry Pi 4' /sys/firmware/devicetree/base/model) ]]; then
echo "________________________________________________________________________________"
echo ""
echo "WARNING: You must switch to a different kernel for the Raspberry Pi 4:"
echo " pacman -S linux-raspberrypi4"
echo "________________________________________________________________________________"
echo ""
fi
2012-03-17 02:49:52 +00:00
}
2017-02-21 03:14:27 +00:00
post_remove() {
rm -f boot/initramfs-linux.img
}