2021-02-22 17:09:23 +00:00
|
|
|
_message() {
|
2021-02-20 14:17:55 +00:00
|
|
|
echo "-> Remove any tweaks made to /boot/config.txt now!"
|
|
|
|
echo "-> This includes lines such as gpu_mem=..."
|
|
|
|
echo "-> Add the following to /boot/config.txt or else kodi will not work."
|
|
|
|
echo " [all]"
|
|
|
|
echo " include kodi.config.txt"
|
2020-12-09 21:44:39 +00:00
|
|
|
}
|
|
|
|
|
2021-02-22 17:09:23 +00:00
|
|
|
post_install() {
|
|
|
|
_config=/boot/config.txt
|
|
|
|
if [ -f "$_config" ]; then
|
|
|
|
if ! grep -q 'include kodi.config.txt' "$_config"; then
|
|
|
|
_message
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
post_upgrade() {
|
|
|
|
post_install
|
|
|
|
}
|
|
|
|
|
2020-12-09 21:44:39 +00:00
|
|
|
post_remove() {
|
|
|
|
echo "==> Optionally remove /var/lib/kodi/"
|
|
|
|
}
|