* libCEC: Update to 6.0.2
* L4T: Switch-bsp: Fix typos
* Switch: Fix all permission issues with running kodi as a non-root user.
* L4T: Switch: Minor code cleanups
* Add upower and libgudev so kodi can get battery stats
Upower was removed from libreELEC in 2013 with this commit: 3a130cd500
This was a stupid choice as it is the only option in kodi for supplying any battery statitistics. Currently broken.
This patchset: https://github.com/xbmc/xbmc/pull/17327/commits for kodi seemingliy wants to fix the issue(Doesnt, is more of a new way to deal with dbus in general), but will still require that upower be available for battery.
* Switch: LibreELEC: Peripheral.Joystick: Fix Add Patches from PR's upstream to fix issues with udev devices
* Switch: LibreElec: Peripheral.Joystick: Add Nintendo Switch udev joystick mappings
* Switch: LibreELEC: Peripheral.Joystick: Force Udev controller driver as default.
We included it to give easy access to the zachmorris repo, but
kodi.game repo hasn't been updated in ages and the ancient zachmorris
repo referenced by it is now defunct and results in errors in kodi.log
error <general>: Repository add-on repository.zachmorris uses old schema definition for the repository extension point! This is no longer supported, please update your addon to use <dir> definitions.
error <general>: Repository add-on repository.zachmorris does not have any directory and won't be able to update/serve addons! Please fix the addon.xml definition
Let's just drop it, anyone who wants to use the zachmorris repo can
easily install it from ZIP.
Signed-off-by: Matthias Reichl <hias@horus.com>
Commit 98a96ef1f7 ("kodi: use cmake")
incorrectly switched kodi's internal ccache usage from off to on,
resulting in the compiler being double-wrapped in ccache.
As our gcc ccache wrappers will get a new timestamp on each clean
rebuild this also meant ccache was practically disabled (as the
"compiler"'s mtime changed), leading to about 1400 cache misses,
unnecessary rebuilds, about 1GB of data being added to the cache
and rather long rebuild times.
Fix this by configuring kodi with -DENABLE_CCACHE=ON matching the
previous --disable-ccache we had before switching to cmake.
Signed-off-by: Matthias Reichl <hias@horus.com>