Skip to content

Commit

Permalink
Fix: Kodi no longer started with older config.txt format on Raspberry…
Browse files Browse the repository at this point in the history
… Pi's < 4
  • Loading branch information
mkreisl committed Mar 17, 2022
1 parent 4e4c43c commit 90109c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion content/etc/init/xbmc-preload.conf
Expand Up @@ -69,7 +69,7 @@ pre-start script

[ ! -e /etc/default/xbmc ] || . /etc/default/xbmc
rev=$(xbian-arch revision | sed "s/^r//g")
vcc=$(grep -A2 "\[$rev\]$" /boot/config.txt)
vcc=$(grep -A2 "\[$rev\]$" /boot/config.txt) || vcc="[$rev]"
[ -n "$DEBUG" ] && echo "Debug: vcc=$vcc"

case $rev in
Expand Down

0 comments on commit 90109c0

Please sign in to comment.