2013-05-10 23:40:59 +00:00
|
|
|
# arg 1: the new package version
|
|
|
|
# arg 2: the old package version
|
|
|
|
|
2013-05-14 08:57:13 +00:00
|
|
|
KERNEL_NAME=-raspberrypi-latest
|
2014-11-16 00:24:43 +00:00
|
|
|
KERNEL_VERSION=3.17.3-1-ARCH
|
2013-05-10 23:40:59 +00:00
|
|
|
|
2014-05-23 02:59:12 +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
|
|
|
|
}
|
|
|
|
|
2013-05-10 23:40:59 +00:00
|
|
|
post_install () {
|
|
|
|
# updating module dependencies
|
|
|
|
echo ">>> Updating module dependencies. Please wait ..."
|
|
|
|
depmod ${KERNEL_VERSION}
|
2014-05-23 02:59:12 +00:00
|
|
|
disable_cma
|
2013-05-10 23:40:59 +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 seperate partition but is not mounted."
|
|
|
|
echo " You probably just broke your system. Congratulations."
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
# updating module dependencies
|
|
|
|
echo ">>> Updating module dependencies. Please wait ..."
|
|
|
|
depmod ${KERNEL_VERSION}
|
2014-05-23 02:59:12 +00:00
|
|
|
disable_cma
|
2013-05-10 23:40:59 +00:00
|
|
|
}
|