• 1
  • 63
  • 64
  • 65(current)
  • 66
  • 67
  • 70
v19 LibreELEC Testbuilds for x86_64 (Kodi 19.0)
@Milhouse with last build Amazon Vod plugin doesn't work anymore

Reverted back to 1/06 build fix it

Log: http://ix.io/2oWs
Reply
(2020-06-12, 19:56)Roby77 Wrote: @Milhouse with last build Amazon Vod plugin doesn't work anymore

Reverted back to 1/06 build fix it

Log: http://ix.io/2oWs
Looks like its related to the the inputstreamaddon class being deprecated.
https://forum.kodi.tv/showthread.php?tid=353560

This will fix it
https://github.com/Sandmann79/xbmc/blob/...layback.py

change line 390 from 
listitem.setProperty('inputstreamaddon', g.is_addon)
to 
listitem.setProperty('inputstream', g.is_addon)
Reply
Thank you will try asap

Will crosslink your solution to addon maintainer
Reply
(2020-06-12, 21:25)Roby77 Wrote: Thank you will try asap

Will crosslink your solution to addon maintainer
 
I tested it, works fine for me now with that change.
Reply
yes i confirm thank you!
Reply
Double post - deleted.
Reply
@Milhouse I gathered some logs, looks like it happens on the first build with 5.7 kernel.

Sleep/resume working - 5.6 - 601 - http://ix.io/2p9k
Not working - 5.7 - 609 - http://ix.io/2p9m
Not working - 5.7 - 0413x http://ix.io/2p9o
 
(2020-06-11, 20:06)xxxnelly Wrote: Hi Milhouse,

I just updated to the latest build (#0609) and its causing my device to immediately resuming after sleeping. I returned back to #601 and it resolves the issue.
I have a few other devices and these do not suffer the same issue with #609, I expect its a hardware incompatibility with the latest 5.7.0 kernel and this specific device. 

Does a log help with this or do you need the dmesg output to take a look?

Thanks,
Neil
Reply
Since build #0527 my Music library is not working anymore. (Movie library is fine)
Main menu says "Library Empty", opening it makes Kodi crash.
Same when opening files section only > Kodi crash.
I'm using a MariaDB on another server for my libraries.

In build #0519 it's working fine.

Logs from build #0609:
kodi.log: http://ix.io/2pk3
kodi_crash.log: http://ix.io/2pk4
Reply
(2020-06-14, 09:52)xxxnelly Wrote: @Milhouse I gathered some logs, looks like it happens on the first build with 5.7 kernel.

Sleep/resume working - 5.6 - 601 - http://ix.io/2p9k
Not working - 5.7 - 609 - http://ix.io/2p9m
Not working - 5.7 - 0413x http://ix.io/2p9o

Can you suspend/resume #0601 and #0609, and after resuming upload the log from using the LibreELEC Settings addon as that will include the kernel log as well - this is the best chance of spotting what might be broken.
Texture Cache Maintenance Utility: Preload your texture cache for optimal UI performance. Remotely manage media libraries. Purge unused artwork to free up space. Find missing media. Configurable QA check to highlight metadata issues. Aid in diagnosis of library and cache related problems.
Reply
(2020-06-16, 12:27)wimb0 Wrote: Since build #0527 my Music library is not working anymore. (Movie library is fine)
Main menu says "Library Empty", opening it makes Kodi crash.
Same when opening files section only > Kodi crash.
I'm using a MariaDB on another server for my libraries.

In build #0519 it's working fine.

text:

2020-06-16 12:17:09.272 T:1765 DEBUG <general>: Initialize, updating databases...
2020-06-16 12:17:09.272 T:1765 INFO <general>: Running database version Addons27
2020-06-16 12:17:09.272 T:1765 INFO <general>: Running database version ViewModes6
2020-06-16 12:17:09.273 T:1765 INFO <general>: Running database version Textures13
2020-06-16 12:17:09.274 T:1765 INFO <general>: WakeOnAccess [192.168.1.4] trigged by accessing : MySQL : MyMusic77
2020-06-16 12:17:09.275 T:1765 INFO <general>: WakeOnAccess success exit, server already running
2020-06-16 12:17:09.276 T:1765 INFO <general>: MYSQL: Connected to version 10.4.13-MariaDB-1:10.4.13+maria~bionic-log
2020-06-16 12:17:09.278 T:1765 INFO <general>: Attempting to update the database MyMusic77 from version 75 to 77
2020-06-16 12:17:09.278 T:1765 DEBUG <general>: Mysql Start transaction
2020-06-16 12:17:09.279 T:1765 ERROR <general>: SQL: Can't determine list of routines to drop.
2020-06-16 12:17:09.279 T:1765 ERROR <general>: Exception updating database MyMusic77 from version 75 to 77
2020-06-16 12:17:09.279 T:1765 ERROR <general>: Error updating database MyMusic77 from version 75 to 77
2020-06-16 12:17:09.280 T:1765 DEBUG <general>: Mysql rollback transaction
2020-06-16 12:17:09.281 T:1765 INFO <general>: Old database found - updating from version 76 to 77
2020-06-16 12:17:09.282 T:1765 ERROR <general>: SQL: Can't create database for copy: 'MyMusic76' (1007)
2020-06-16 12:17:09.282 T:1765 ERROR <general>: Unable to copy old database MyMusic76 to new version MyMusic77
2020-06-16 12:17:09.284 T:1765 INFO <general>: Running database version MyVideos117
2020-06-16 12:17:09.285 T:1765 INFO <general>: Running database version TV36
2020-06-16 12:17:09.285 T:1765 INFO <general>: Running database version Epg13
2020-06-16 12:17:09.285 T:1765 DEBUG <general>: Initialize, updating databases... DONE

It looks like the database migration from MyMusic75 to MyMusic76 is failing for some reason - can you drop MyMusic77 and also MyMusic76 (if they exist), turn on debugging then upload a debug log after attempting another migration from MyMusic75 to MyMusic76?

Are you sure this issue started with #0527? Both #0527 and also #0519 are using MyMusic75, so #0527 should be your last working build (assuming there's nothing wrong with your MyMusic75 database, of course).

Build #0601 introduced MyMusic76 with PR17838, and build #0609 introduced MyMusic77 with PR17990, so probably best to test with #0601 until MyMusic76 has been migrated successfully.

The error you are seeing is in this piece of code: https://github.com/xbmc/xbmc/blob/941afd...t.cpp#L451 added by PR17838, which might suggest a permission problem of some kind in the MariaDB server, or possibly even a compatibility issue as the new code may not be compatible with MariaDB (either all, or only some MariaDB server versions - but that's a total guess).

Can you check if you are able to execute the following query against your MariaDB server while using the kodi sql user:
text:

SELECT routine_name
FROM information_schema.routines
WHERE routine_type = 'FUNCTION' and routine_schema = 'MyMusic76'

With a MySQL server 5.5.x, the above query returns the following:
text:

udfFirstNumberPos
udfNaturalSortFormat
udfSymbolShift

Please post any errors you see when executing the query.
Texture Cache Maintenance Utility: Preload your texture cache for optimal UI performance. Remotely manage media libraries. Purge unused artwork to free up space. Find missing media. Configurable QA check to highlight metadata issues. Aid in diagnosis of library and cache related problems.
Reply
thanks 
5.7 (#609) - http://ix.io/2pqc
5.6 (#601) - http://ix.io/2pqf
 
(2020-06-17, 17:01)Milhouse Wrote:
(2020-06-14, 09:52)xxxnelly Wrote: @Milhouse I gathered some logs, looks like it happens on the first build with 5.7 kernel.

Sleep/resume working - 5.6 - 601 - http://ix.io/2p9k
Not working - 5.7 - 609 - http://ix.io/2p9m
Not working - 5.7 - 0413x http://ix.io/2p9o

Can you suspend/resume #0601 and #0609, and after resuming upload the log from using the LibreELEC Settings addon as that will include the kernel log as well - this is the best chance of spotting what might be broken.
Reply
(2020-06-17, 20:37)xxxnelly Wrote: thanks 
5.7 (#609) - http://ix.io/2pqc
5.6 (#601) - http://ix.io/2pqf
 
(2020-06-17, 17:01)Milhouse Wrote:
(2020-06-14, 09:52)xxxnelly Wrote: @Milhouse I gathered some logs, looks like it happens on the first build with 5.7 kernel.

Sleep/resume working - 5.6 - 601 - http://ix.io/2p9k
Not working - 5.7 - 609 - http://ix.io/2p9m
Not working - 5.7 - 0413x http://ix.io/2p9o

Can you suspend/resume #0601 and #0609, and after resuming upload the log from using the LibreELEC Settings addon as that will include the kernel log as well - this is the best chance of spotting what might be broken.

Thanks. Not entirely sure, maybe a bluetooth issue?

From #0609:
text:

Jun 17 19:25:25 LibreELEC kernel: PM: suspend entry (deep)
Jun 17 19:25:25 LibreELEC systemd-sleep[872]: Suspending system...
Jun 17 19:25:25 LibreELEC kernel: Filesystems sync: 0.021 seconds
Jun 17 19:25:27 LibreELEC kernel: Bluetooth: hci0: command 0x200c tx timeout
Jun 17 19:25:28 LibreELEC systemd[1]: systemd-hostnamed.service: Succeeded.
Jun 17 19:25:29 LibreELEC kernel: Bluetooth: hci0: command 0x200c tx timeout
Jun 17 19:25:29 LibreELEC kernel: PM: suspend exit
Jun 17 19:25:29 LibreELEC kernel: PM: suspend entry (s2idle)
Jun 17 19:25:29 LibreELEC kernel: Filesystems sync: 0.005 seconds
Jun 17 19:25:31 LibreELEC kernel: Bluetooth: hci0: command 0x200b tx timeout
Jun 17 19:25:34 LibreELEC kernel: Bluetooth: hci0: command 0x200c tx timeout
Jun 17 19:25:34 LibreELEC systemd-sleep[872]: Failed to suspend system. System resumed again: Device or resource busy
Jun 17 19:25:34 LibreELEC kernel: PM: suspend exit

Not really sure when or if Generic kernels will be updated in future - fingers crossed a fix comes along eventually.
Texture Cache Maintenance Utility: Preload your texture cache for optimal UI performance. Remotely manage media libraries. Purge unused artwork to free up space. Find missing media. Configurable QA check to highlight metadata issues. Aid in diagnosis of library and cache related problems.
Reply
New LibreELEC.tv Matrix build #0617: Generic
(Supercedes previous build)

SHA256 Checksum: e017eee52e3a4817536ffcc8f6c010ae2ce9faa81020b32f39304fbd7012bbf9 (Generic)

text:
# uname -a
Linux NUC 5.7.2 #1 SMP Wed Jun 17 23:29:44 BST 2020 x86_64 GNU/Linux

# lsb_release
LibreELEC (Milhouse): devel-20200617232838-#0617-g89db20a [Build #0617]

# Kodi version
Starting Kodi (19.0-ALPHA1 (18.9.701) Git:513dae9). Platform: Linux x86 64-bit

Based on tip of LibreELEC.tv master (89db20a, changelog) and tip of XBMC master (513dae9, changelog) with the following modifications: Build Highlights:
  1. Updated intel-ucode
  2. New 5.7.2 kernel
  3. wait-time-sync: new package
  4. [Matrix] change to new C++ PVR interface way
Build Details:
  1. intel-ucode:
    • microcode-20200616 Release (0e4288f)
  2. LibreELEC.tv:
    • GCC 10 build fixes (PR:4402, 2 commits, 2 files changed)
    • ARM: add skeleton project with ARMv7/ARMv8 devices for add-on building (PR:4392, 1 commit, 6 files changed)
    • build fixes for ARMv7 (PR:4414, 2 commits, 2 files changed)
    • ffmpeg: update RPi HEVC patch to latest version (PR:4412, 1 commit, 1 file changed)
    • pulseaudio: fix depend target for glib (PR:4416, 1 commit, 1 file changed)
    • mesa: update to mesa-20.1.1 (PR:4415, 1 commit, 1 file changed)
    • linux (Generic/Allwinner): update to linux-5.6.13 (PR:4347, 7 commits, 4 files changed)
    • linux (Generic): update to linux-5.7 (PR:4320, 16 commits, 8 files changed)
    • linux (Generic): update to linux-5.7.2 (PR:4417, 1 commit, 1 file changed)
    • brcmfmac_sdio-firmware/rpi update (PR:4418, 2 commits, 2 files changed)
    • show config cleanup (PR:4387, 8 commits, 3 files changed)
    • Allwinner: Update patches for Linux 5.7 (PR:4385, 1 commit, 8 files changed)
    • chrome: add missing lib to addon (PR:4355, 2 commits, 7 files changed)
    • Rockchip: linux: update patches for 5.7 (PR:4400, 1 commit, 11 files changed)
    • wait-time-sync: new package to reliable detect ntp synchronized system time (PR:4413, 2 commits, 5 files changed)
    • kodi: update to 2020-06-14 (PR:4419, 13 commits, 90 files changed)
    • kodi-binary-addons: update to latest versions (PR:4424, 1 commit, 8 files changed)
    • ALSA: update to 1.2.3 (PR:4410, 5 commits, 5 files changed)
    • LE repo version bump (PR:4420, 6 commits, 14 files changed)
    • wireguard: bump packages and use wait-time-sync (PR:4422, 3 commits, 3 files changed)
    • vdr-plugin-xmltv2vdr: fix epgdata2xmltv static linking issue (PR:4425, 1 commit, 1 file changed)
    • libcec: update to libcec-next (PR:4283, 5 commits, 2 files changed)
  3. XBMC:
    • [buildsteps/tvos] remove deb target from make-xbmc step (PR:18037, 1 commit, 1 file changed)
    • [cmake] JsonSchemaBuilder warnings and install fix (PR:17880, 1 commit, 1 file changed)
    • Use HEVC_NAL_CRA_NUT as KeyFrame (PR:18038, 1 commit, 1 file changed)
    • [PeripheralBus] IOS GameController Support (PR:17675, 1 commit, 12 files changed)
    • [depends] bump libnfs to 4.0.0 (PR:17512, 2 commits, 1 file changed)
    • [Android] proper drain implementation (PR:18028, 1 commit, 2 files changed)
    • [NFS] Implement nfs timeout / advancedsettings (PR:15686, 1 commit, 10 files changed)
    • [Android] Make m_activityResultEvents access thread safe (PR:18040, 1 commit, 2 files changed)
    • [python] add DelayedCallGuard to xbmcgui.Dialog().info() (PR:17981, 1 commit, 1 file changed)
    • [Estuary] use new version infolabels in sysinfo (PR:17998, 1 commit, 1 file changed)
    • Allow original release date for albums to be scraped (PR:18030, 2 commits, 2 files changed)
    • [GUI] Fix ActivateWindow if 'return' is defined (PR:17893, 1 commit, 2 files changed)
    • [addons][pvr] change addon system to C++ style (PR:16485, 27 commits, 92 files changed)
    • Run CGUIDialogProgress ONLY in GUI thread (PR:18042, 2 commits, 9 files changed)
    • EDL comskip: support commercial at 0:00 (PR:18046, 1 commit, 1 file changed)
    • [settings] fix displaying integer / string values with dynamic options (PR:18027, 1 commit, 3 files changed)
    • [PVR] Fix EPG grid container crash (PR:18055, 2 commits, 1 file changed)
    • [addon] prevent publicate of C++ functions / classes from headers, fix old to new pvr update and cleanup General parts (PR:18054, 6 commits, 49 files changed)
    • [gui] cleanup: remove log spam / code improvements (PR:18050, 1 commit, 3 files changed)
    • Reinit binary addon manager when loading a profile; fixes non working pvr addons. (PR:18059, 1 commit, 3 files changed)
    • [Estuary] Improvements to Fullscreen Info/Seekbar for Video & Music (PR:17976, 1 commit, 4 files changed)
    • [docs] update Kodi banner in cmake/addons docs (PR:18033, 2 commits, 2 files changed)
    • [linux] TestSysfsPath: Use unique file name for every test (PR:18011, 1 commit, 1 file changed)
    • [docs][python] fixed typo (PR:18063, 1 commit, 1 file changed)
    • [addons] remove pvr from addoncache and improve addon manager addon check (PR:18064, 2 commits, 3 files changed)
    • [addons] fix PVR disable/enable handle (PR:18057, 8 commits, 54 files changed)
    • [cmake] remove very old no more needed part of addons (PR:18065, 1 commit, 1 file changed)
    • [Android] Support dvh1 codec (PR:17876, 1 commit, 1 file changed)
    • [Android] pause audio playback when headphone is disconnected (PR:17913, 1 commit, 1 file changed)
  4. inputstream.adaptive:
    • Support "tag:dolby.com...audio_channel_configuration" (PR:466, 2 commits, 1 file changed)
    • Refactor processEncryption & Regression Fix (PR:461, 1 commit, 1 file changed)
    • VUI: use framerate only if fixed_frame_rate_flag is set (9c6308e)
    • [DASH] Adjust timing calculation (dc7b427)
    • ctest implementation (1af70f8)
  5. inputstream.ffmpegdirect:
    • Other settings (PR:47, 9 commits, 7 files changed)
    • Changelog and version v1.14.1 (PR:49, 1 commit, 2 files changed)
  6. pvr.argustv:
    • [Matrix] change to new C++ PVR interface way (PR:102, 7 commits, 44 files changed)
    • rebuild for Ubuntu and version to 6.0.1 (PR:107, 1 commit, 2 files changed)
  7. pvr.demo:
    • Change to now C++ based addon interface (PR:65, 4 commits, 13 files changed)
  8. pvr.dvblink:
    • [Matrix] change to new C++ PVR interface way (PR:135, 6 commits, 22 files changed)
  9. pvr.dvbviewer:
    • [Matrix] change to new C++ PVR interface way (PR:90, 3 commits, 22 files changed)
  10. pvr.filmon:
    • [Matrix] change to new C++ PVR interface way (PR:103, 4 commits, 11 files changed)
  11. pvr.freebox:
    • [Matrix] change to new C++ PVR interface way (PR:53, 4 commits, 6 files changed)
  12. pvr.hdhomerun:
    • [Matrix] change to new C++ PVR interface way (PR:99, 5 commits, 14 files changed)
  13. pvr.hts:
    • [Matrix] change to new C++ PVR interface way (PR:455, 6 commits, 34 files changed)
    • [Matrix] fix problem with pvr instance thread, during destruct (PR:457, 3 commits, 4 files changed)
  14. pvr.iptvsimple:
    • [Matrix] change to new C++ PVR interface way (PR:365, 3 commits, 35 files changed)
    • API Bump (PR:396, 1 commit, 2 files changed)
  15. pvr.mediaportal.tvserver:
    • [Matrix] change to new C++ PVR interface way (PR:120, 3 commits, 56 files changed)
  16. pvr.mythtv:
    • [Matrix] change to new C++ PVR interface way (PR:152, 3 commits, 28 files changed)
    • improve hooks for status (b3bfb99)
    • not an error (36e753d)
    • bump version 7.0.1 (1fe37ab)
    • the recording serie bit was reversed (535ccdd)
  17. pvr.nextpvr:
    • C++ interface change WIP (#128) (33d255f)
  18. pvr.njoy:
    • [Matrix] change to new C++ PVR interface way (PR:60, 3 commits, 13 files changed)
  19. pvr.pctv:
    • C++ interface change WIP (PR:79, 6 commits, 21 files changed)
  20. pvr.sledovanitv.cz:
    • change point=xbmc.pvrclient to point=kodi.pvrclient (97338fc)
    • change interface system to C++ style (abdf5ed)
    • increase version to 4.0.0 (c7e5ca0)
    • Data: Enhance results moving (after big #62) (3900eda)
  21. pvr.stalker:
    • [Matrix] change to new C++ PVR interface way (PR:137, 5 commits, 30 files changed)
  22. pvr.teleboy:
    • [Matrix] change to new C++ PVR interface way (PR:54, 3 commits, 13 files changed)
  23. pvr.vbox:
    • [Matrix] change to new C++ PVR interface way (PR:239, 3 commits, 30 files changed)
  24. pvr.vdr.vnsi:
    • [Matrix] change to C++ interface way (PR:124, 6 commits, 76 files changed)
  25. pvr.vuplus:
    • [Matrix] change to new C++ PVR interface way (PR:282, 6 commits, 84 files changed)
    • Backend settings (PR:289, 2 commits, 5 files changed)
  26. pvr.waipu:
    • [Matrix] change to new C++ PVR interface way (PR:76, 3 commits, 11 files changed)
  27. pvr.wmc:
    • [Matrix] change to new C++ PVR interface way (PR:85, 8 commits, 21 files changed)
    • src/utilities.h: add cstdarg include (PR:86, 1 commit, 3 files changed)
  28. pvr.zattoo:
    • [Matrix] change to new C++ PVR interface way (PR:90, 2 commits, 17 files changed)
    • Fix replay (c40a291)
  29. Additional commits/pull requests/changes not yet merged upstream:
    • Updated: [env] PR:4288 (perma): RPi4: switch to KMS driver and enable v4l2 HEVC decoding
    • Updated: [env] PR:4399 (perma): linux (RPi): update to linux-5.4.42+
    • Added: [env] patch: linux (RPi): 5.4.47
    • Added: [pkg] PR:43 (perma): [Matrix] change to new C++ PVR interface way (pvr.octonet)
    • Added: [pkg] PR:18069 (perma): PeripheralCecAdapter: Only stop playback if currently playing
Texture Cache Maintenance Utility: Preload your texture cache for optimal UI performance. Remotely manage media libraries. Purge unused artwork to free up space. Find missing media. Configurable QA check to highlight metadata issues. Aid in diagnosis of library and cache related problems.
Reply
For anyone with Netflix "KeyError" errors, see this (temporary) solution.
Texture Cache Maintenance Utility: Preload your texture cache for optimal UI performance. Remotely manage media libraries. Purge unused artwork to free up space. Find missing media. Configurable QA check to highlight metadata issues. Aid in diagnosis of library and cache related problems.
Reply
Thanks @Milhouse.
Disabling Bluetooth (and I don't use it anyway as I have CEC with this setup) has fixed the issue.
I will check every few kernel builds to see if the bluetooth issue is fixed.
(2020-06-18, 00:55)Milhouse Wrote:
(2020-06-17, 20:37)xxxnelly Wrote: thanks 
5.7 (#609) - http://ix.io/2pqc
5.6 (#601) - http://ix.io/2pqf
 
(2020-06-17, 17:01)Milhouse Wrote: Can you suspend/resume #0601 and #0609, and after resuming upload the log from using the LibreELEC Settings addon as that will include the kernel log as well - this is the best chance of spotting what might be broken.

Thanks. Not entirely sure, maybe a bluetooth issue?

From #0609:
text:

Jun 17 19:25:25 LibreELEC kernel: PM: suspend entry (deep)
Jun 17 19:25:25 LibreELEC systemd-sleep[872]: Suspending system...
Jun 17 19:25:25 LibreELEC kernel: Filesystems sync: 0.021 seconds
Jun 17 19:25:27 LibreELEC kernel: Bluetooth: hci0: command 0x200c tx timeout
Jun 17 19:25:28 LibreELEC systemd[1]: systemd-hostnamed.service: Succeeded.
Jun 17 19:25:29 LibreELEC kernel: Bluetooth: hci0: command 0x200c tx timeout
Jun 17 19:25:29 LibreELEC kernel: PM: suspend exit
Jun 17 19:25:29 LibreELEC kernel: PM: suspend entry (s2idle)
Jun 17 19:25:29 LibreELEC kernel: Filesystems sync: 0.005 seconds
Jun 17 19:25:31 LibreELEC kernel: Bluetooth: hci0: command 0x200b tx timeout
Jun 17 19:25:34 LibreELEC kernel: Bluetooth: hci0: command 0x200c tx timeout
Jun 17 19:25:34 LibreELEC systemd-sleep[872]: Failed to suspend system. System resumed again: Device or resource busy
Jun 17 19:25:34 LibreELEC kernel: PM: suspend exit

Not really sure when or if Generic kernels will be updated in future - fingers crossed a fix comes along eventually.
Reply
  • 1
  • 63
  • 64
  • 65(current)
  • 66
  • 67
  • 70

Logout Mark Read Team Forum Stats Members Help
LibreELEC Testbuilds for x86_64 (Kodi 19.0)3