2021-02-22 17:09:23 +00:00
|
|
|
_message() {
|
2021-03-29 13:21:42 +00:00
|
|
|
cat <<END
|
|
|
|
|
2021-04-06 13:39:56 +00:00
|
|
|
>>> Remove any manual tweaks made to /boot/config.txt particulary a line such
|
|
|
|
as gpu_mem=xxx. Driver setup for Kodi is stored in /boot/kodi.config.txt
|
2021-03-29 13:21:42 +00:00
|
|
|
|
2021-04-06 13:39:56 +00:00
|
|
|
Manually append the following to /boot/config.txt to make them active:
|
|
|
|
[all]
|
|
|
|
include kodi.config.txt
|
2021-03-29 13:21:42 +00:00
|
|
|
|
2021-04-06 13:39:56 +00:00
|
|
|
A reboot will be required to activate them if this is a fresh install.
|
2021-03-29 13:21:42 +00:00
|
|
|
|
|
|
|
END
|
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/"
|
|
|
|
}
|