2016-05-01, 14:34
I think this is a core issue, either with the inputstream.* addons, or the addon system, or both.
We're seeing it in LibreELEC too now that the 8.0 repository is online.
It appears that when the 8.0 repository is being processed by Kodi (ie. updated), the inputstream.mpd and inputstream.smoothstream addons are being loaded/initialised, even when they're not installed. Since your #0415 build includes inputstream.mpd, the former is not a problem and the shared library is available, however inputstream.smoothstream isn't installed in your system and when it is loaded/initialised, it crashes Kodi.
With a plain LibreELEC 8.0 master build that doesn't have any inputstream addons, Kodi is crashing when initialising inputstream.mpd - presumably they're processed in alphabetical order, mpd before smoothstream.
My guess is, that the OpenELEC 8.0 repository has now come online in the last few days/week, and since it contains inputstream.mpd and inputstream.smoothstream, the #0415 build has started crashing.
A quick hack to avoid the problem is to run the following:
When the system comes up, this "clean" Kodi should start normally.
The only issue is that you no longer have access to the OpenELEC repository.
Alternatively upgrade to a LibreELEC 8.0 test build as this includes both inputstream.mpd and inputstream.smoothstream, and is so far immune from the problem...
We're seeing it in LibreELEC too now that the 8.0 repository is online.
It appears that when the 8.0 repository is being processed by Kodi (ie. updated), the inputstream.mpd and inputstream.smoothstream addons are being loaded/initialised, even when they're not installed. Since your #0415 build includes inputstream.mpd, the former is not a problem and the shared library is available, however inputstream.smoothstream isn't installed in your system and when it is loaded/initialised, it crashes Kodi.
With a plain LibreELEC 8.0 master build that doesn't have any inputstream addons, Kodi is crashing when initialising inputstream.mpd - presumably they're processed in alphabetical order, mpd before smoothstream.
My guess is, that the OpenELEC 8.0 repository has now come online in the last few days/week, and since it contains inputstream.mpd and inputstream.smoothstream, the #0415 build has started crashing.
A quick hack to avoid the problem is to run the following:
Code:
echo "127.0.0.1 openelec.tv" >> /storage/.config/hosts.conf
systemctl stop kodi
mv .kodi .kodi.bak
reboot
The only issue is that you no longer have access to the OpenELEC repository.
Alternatively upgrade to a LibreELEC 8.0 test build as this includes both inputstream.mpd and inputstream.smoothstream, and is so far immune from the problem...