Kodi Community Forum
v18 LibreELEC Testbuilds for RaspberryPi (Kodi 18.0) - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: General Support (https://forum.kodi.tv/forumdisplay.php?fid=111)
+---- Forum: Raspberry Pi (https://forum.kodi.tv/forumdisplay.php?fid=166)
+---- Thread: v18 LibreELEC Testbuilds for RaspberryPi (Kodi 18.0) (/showthread.php?tid=298461)

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495


RE: LibreELEC Testbuilds for RaspberryPi (Kodi 18.0) - SpokV - 2017-08-24

Hi. I'm using netflix addon and for a minute or two it seems ok.but after that I'm experiencing buffering alot.
Is there any special configuration to the inputstream or anything else?
Thanks


RE: LibreELEC Testbuilds for RaspberryPi (Kodi 18.0) - dascoco - 2017-08-24

(2017-08-24, 09:32)HiassofT Wrote:
(2017-08-23, 20:55)HiassofT Wrote:
(2017-08-23, 19:02)dascoco Wrote: Is there already something new?
Not yet, the last few days I have been busy finding out why the tests I had planned you to run did crash the RPi2: https://github.com/raspberrypi/linux/issues/2166

Fortunately the underlying issue has just been resolved and I've PRed the changes that'll allow you to run the next tests. PR1917 should be included in the next milhouse build, if it is please do the following steps:

Add the following to the end of /flash/cmdline.txt:
Code:
trace_event=module:* ftrace=function ftrace_filter=__request_module

Your cmdline.txt should then look like this (everything must be in a single line):
Code:
boot=/dev/mmcblk0p1 disk=/dev/mmcblk0p2 quiet trace_event=module:* ftrace=function ftrace_filter=__request_module

Now power off the RPi, connect the HDD, power it up, then ssh in and post the outputs of these 2 commands:
Code:
dmesg | paste
cat /sys/kernel/debug/tracing/trace | paste

This should hopefully give us some more clues what's happening on your system.

so long,

Hias

Milhouse build 0823 contains the PR needed to run these tests. Can you give it a try?

It would also be good to know if you added some custom configuration (modprobe, systemd, udev etc). Please also post the output of the following command:
Code:
ls -lR /storage/.config /storage/.cache | paste

so long,

Hias


# dmesg | paste
http://sprunge.us/cRHj
# cat /sys/kernel/debug/tracing/trace | paste
http://sprunge.us/fcdg
# ls -lR /storage/.config /storage/.cache | paste
http://sprunge.us/KFdO


RE: LibreELEC Testbuilds for RaspberryPi (Kodi 18.0) - HiassofT - 2017-08-24

(2017-08-24, 18:05)dascoco Wrote:
(2017-08-24, 09:32)HiassofT Wrote:
(2017-08-23, 20:55)HiassofT Wrote: Not yet, the last few days I have been busy finding out why the tests I had planned you to run did crash the RPi2: https://github.com/raspberrypi/linux/issues/2166

Fortunately the underlying issue has just been resolved and I've PRed the changes that'll allow you to run the next tests. PR1917 should be included in the next milhouse build, if it is please do the following steps:

Add the following to the end of /flash/cmdline.txt:
Code:
trace_event=module:* ftrace=function ftrace_filter=__request_module

Your cmdline.txt should then look like this (everything must be in a single line):
Code:
boot=/dev/mmcblk0p1 disk=/dev/mmcblk0p2 quiet trace_event=module:* ftrace=function ftrace_filter=__request_module

Now power off the RPi, connect the HDD, power it up, then ssh in and post the outputs of these 2 commands:
Code:
dmesg | paste
cat /sys/kernel/debug/tracing/trace | paste

This should hopefully give us some more clues what's happening on your system.

so long,

Hias

Milhouse build 0823 contains the PR needed to run these tests. Can you give it a try?

It would also be good to know if you added some custom configuration (modprobe, systemd, udev etc). Please also post the output of the following command:
Code:
ls -lR /storage/.config /storage/.cache | paste

so long,

Hias


# dmesg | paste
http://sprunge.us/cRHj
# cat /sys/kernel/debug/tracing/trace | paste
http://sprunge.us/fcdg
# ls -lR /storage/.config /storage/.cache | paste
http://sprunge.us/KFdO

ftrace=function and ftrace_filter=__request_module are missing from your kernel command line:
Code:
[    0.000000] Kernel command line: 8250.nr_uarts=0 bcm2708_fb.fbwidth=1440 bcm2708_fb.fbheight=900 bcm2708_fb.fbswap=1 vc_mem.mem_base=0x3ec00000 vc_mem.mem_size=0x40000000  boot=/dev/mmcblk0p1 disk=/dev/mmcblk0p2 quiet trace_event=module:* root=/dev/ram0 rdinit=/init BOOT_IMAGE=/kernel.img usbcore.autosuspend=-1

Could you setup cmdline.txt as described above and rerun the test?

so long,

Hias


RE: LibreELEC Testbuilds for RaspberryPi (Kodi 18.0) - Milhouse - 2017-08-24

New LibreELEC.tv Leia build #0824: RPi / RPi2
(Supercedes previous build)

Code:
# uname -a
Linux rpi512 4.12.8 #1 Thu Aug 24 21:58:07 BST 2017 armv6l GNU/Linux

# vcgencmd version
Aug 22 2017 14:20:40
Copyright (c) 2012 Broadcom
version eb51b8b84ec11d98562dfbb7be53cdd216c0ea4c (clean) (release)

# lsb_release
LibreELEC (Milhouse): devel-20170824215656-#0824-gab9d8bf [Build #0824]

# Kodi version
(18.0-ALPHA1 Git:beb2913). Platform: Linux ARM 32-bit

Based on tip of LibreELEC.tv master (ab9d8bf1, changelog) and tip of XBMC master (beb29133, changelog) with the following modifications:
  • Includes newclock5 patches
  • Excludes the LibreELEC linux-01-RPi_support patch in favour of sourcing these and possibly more recent patches directly from kernel branch rpi-4.12.y
  • Includes latest bcm2835-driver master (8fe001ec, ahead +6)
  • Includes latest kodi-platform master (36fb4937)
  • Includes latest libcec master (8adc786b, ahead +26)
  • Includes latest libnfs master (df94ae93, ahead +56)
  • Includes latest p8-platform master (a822e196)
  • Includes latest addons: inputstream.adaptive (be77f9f8, +55), inputstream.rtmp (e094fa38, +1), peripheral.joystick (cc14287c, +3), pvr.argustv (310737e2), pvr.demo (f07d898c, +1), pvr.dvblink (0b66c640, +4), pvr.dvbviewer (313339bf, +8), pvr.filmon (1c9d2ebe), pvr.hdhomerun (b89c2be4, +9), pvr.hts (a1de6329, +1), pvr.iptvsimple (260434e4, +5), pvr.mediaportal.tvserver (f5ee2000, +5), pvr.mythtv (a17a3a4f, +1), pvr.nextpvr (03a3b714), pvr.njoy (79e8e653), pvr.octonet (a77cf111), pvr.pctv (00b76689), pvr.stalker (df492d27, +1), pvr.vbox (44f3d04e), pvr.vdr.vnsi (07172ed0, +1), pvr.vuplus (921b14f6, +5), pvr.wmc (1d655540)
  • Include [env] compare: kodi: updates for September
  • Include [env] compare: brcmfmac_sdio-firmware-rpi: set BT MAC as new firmware uses a fixed MAC
  • Include [env] patch: libcec: don't link non-existant libtinfo
  • Include [env] patch: rev hack for kodi
  • Include [env] patch: tvheadend42: fixup ffmpeg patch
  • Include [env] patch: tvheadend42: add bzip dependency when transcoding
  • Include [env] patch: inputstream.adaptive: don't build it twice...
  • Include [env] patch: Add experimental splash video for RPi
  • Include [env] patch: Bump included addon versions to prevent online updates
  • Include [env] patch: HACK: Disable multiple PVR addons during migration. Always enable inputstream.* and os.*
  • Include [env] patch: Add kodi binary addons (pvr, adsp, inputstream, vfs, other)
  • Include [env] patch: pvr addons: disable broken addons
  • Include [env] PR:1773: init: make break after behaviour really break after
  • Include [env] PR:1776: Don't cause system to hang on halt/reboot when net-booting
  • Include [env] PR:1791: nss/nspr: include in main image [rfc]
  • Include [env] PR:1835: add support for optional kernel modules in image and from addons
  • Include [env] PR:1876: linux: update to linux-4.12.8
  • Include [env] PR:1915: xf86-video-nvidia: update to xf86-video-nvidia-384.69
  • Include [env] PR:1917: linux: enable ftrace
  • Include [env] PR:1918: Package Updates: intel-vaapi-driver, libva and libva-utils to 1.8.3
  • Include [pkg] patch: Pre-release RPi0W/RPi3 Bluetooth firmware (details) (brcmfmac_sdio-firmware-rpi)
  • Include [pkg] patch: Pre-release RPi0W/RPi3 WiFi firmware (details) (kernel-firmware)
  • Include [pkg] patch: Pre-release RPi0W/RPi3 WiFi firmware (details) (wlan-firmware)
  • Include [pkg] patch: skin.estuary: reduce system info font size (kodi)
  • Include [pkg] PR:12311: FIX: ensure real filename from videodb in playlists
  • Include [pkg] PR:12710: [DemuxClient] transport flags
Build Highlights:
  1. New 4.12.8 kernel
  2. inputstream.adaptive: add search list for libssd_wv.so
  3. inputstream.adaptive: sort impaired (audio description) streams last (ping @Pienoet)
  4. inputstream.adaptive: build improvements
Build Details:
  1. LibreELEC.tv:
    • oscam: update to 11391 (PR:1912, 1 commit, 2 files changed)
  2. XBMC:
    • [depends] bump libcdio-gplv3 to 0.94 (PR:12709, 1 commit, 2 files changed)
  3. inputstream.adaptive:
    • Change search path logiv for decrypter (b856defb)
    • Change search path logiv for decrypter (2) (5adc0312)
    • [DASH] Support SegmentList in AdaptationSets (fd103b8c)
    • New adaptationset sorting order (impaired last) (be77f9f8)
  4. kernel 4.12.y:
    • Commits no longer in build:
      • mm: Remove the PFN busy warning (857b93a8)
  5. Additional commits/pull requests/changes not yet merged upstream:
    • Added: [env] patch: tvheadend42: add bzip dependency when transcoding
    • Added: [env] patch: inputstream.adaptive: don't build it twice...
    • Added: [env] PR:1876: linux: update to linux-4.12.8
    • Added: [env] PR:1918: Package Updates: intel-vaapi-driver, libva and libva-utils to 1.8.3
    • Added: [pkg] PR:12710: [DemuxClient] transport flags



RE: LibreELEC Testbuilds for RaspberryPi (Kodi 18.0) - Pienoet - 2017-08-25

(2017-08-24, 23:34)Milhouse Wrote: Build Highlights:
  1. New 4.12.8 kernel
  2. inputstream.adaptive: add search list for libssd_wv.so
  3. inputstream.adaptive: sort impaired (audio description) streams last (ping @Pienoet)
  4. inputstream.adaptive: build improvements

Thank you Milhouse,

Installed #824 and the issue with the Audio Description in the netflix addon is fixed!Wink

Thanks for pinging me!


RE: LibreELEC Testbuilds for RaspberryPi (Kodi 18.0) - Milhouse - 2017-08-25

Weekly Linux 4.13-rc6 build #0824x: RPi / RPi2


RE: LibreELEC Testbuilds for RaspberryPi (Kodi 18.0) - HiassofT - 2017-08-25

@dascoco I found out why exfat didn't work, a fix for that should be in tonight's build. No need for any more logs, but please report back when the issue is fixed.

so long,

Hias


RE: LibreELEC Testbuilds for RaspberryPi (Kodi 18.0) - J_E_F_F - 2017-08-25

my ISP replaced a modem/router today which has caused all kinds of issues with my network, the least of which includes IP address changed everywhere.
My 2 RPI3s were up and running on new IPs, but my MySQL server IP changed, so I had to edit the advancedsettings.xml file through SSH. Upon reboot, neither RPi3 would boot into kodi, or if they did, all I get is a black screen. I don't see a crashlog from today, just an old one
http://sprunge.us/GZGK

Here is a debug log from build 0824 (both started on 0815, updated one as a test)
http://sprunge.us/gESK

Both have the same problem, on a reboot, I see the libreelec logo, a quick flash of the kodi logo, then a black screen, nothing more. Both are using a wireless connection too.


RE: LibreELEC Testbuilds for RaspberryPi (Kodi 18.0) - Milhouse - 2017-08-25

Wouldn't it have been easier to reconfigure your new router to use the same IP settings as your old router? Smile

If Kodi is starting but hanging on a blank screen (and there is no crash log) then it's probably not crashing. You should be able to tell that by running "pgrep kodi.bin" over the course of a couple of minutes - if the number returned (the process id) is always the same then Kodi isn't crashing in a loop, it's just stuck.

Why is it stuck? Probably "wait for network" or some wake-on-lan configuration would be my guess. Maybe the MySQL server on "192.168.0.7" is not accessible?


RE: LibreELEC Testbuilds for RaspberryPi (Kodi 18.0) - J_E_F_F - 2017-08-25

(2017-08-25, 22:42)Milhouse Wrote: Wouldn't it have been easier to reconfigure your new router to use the same IP settings as your old router? Smile

you would think so, but no. They provide a modem/router combo, the last one I was able to turn off DHCP and run it bridged so I could use my own wireless router as the DHCP server with all my settings/forwards for cameras etc. The new modem/router they provided is not allowing a bridged mode.

I reconfigured MySQL, that didn't help, I just updated MySQL and reconfigured, and that seems to have done the trick. Very odd indeed.

-----

Well that didn't work either, I could see the MySQL library, but not play anything.
Turns out it appears the change in DHCP servers disabled network discovery on the WIN10 file server. Once that was re-enabled, I was able to play content.


RE: LibreELEC Testbuilds for RaspberryPi (Kodi 18.0) - Milhouse - 2017-08-26

New LibreELEC.tv Leia build #0825: RPi / RPi2
(Supercedes previous build)

Code:
# uname -a
Linux rpi512 4.12.9 #1 Fri Aug 25 22:24:25 BST 2017 armv6l GNU/Linux

# vcgencmd version
Aug 22 2017 14:20:40
Copyright (c) 2012 Broadcom
version eb51b8b84ec11d98562dfbb7be53cdd216c0ea4c (clean) (release)

# lsb_release
LibreELEC (Milhouse): devel-20170825222320-#0825-g1ca3686 [Build #0825]

# Kodi version
(18.0-ALPHA1 Git:e35491d). Platform: Linux ARM 32-bit

Based on tip of LibreELEC.tv master (1ca3686d, changelog) and tip of XBMC master (e35491d8, changelog) with the following modifications:
  • Includes newclock5 patches
  • Excludes the LibreELEC linux-01-RPi_support patch in favour of sourcing these and possibly more recent patches directly from kernel branch rpi-4.12.y
  • Includes latest bcm2835-driver master (7f7df25d)
  • Includes latest kodi-platform master (36fb4937)
  • Includes latest libcec master (8adc786b, ahead +26)
  • Includes latest libnfs master (df94ae93, ahead +56)
  • Includes latest p8-platform master (a822e196)
  • Includes latest addons: inputstream.adaptive (be77f9f8, +55), inputstream.rtmp (e094fa38, +1), peripheral.joystick (cc14287c, +3), pvr.argustv (310737e2), pvr.demo (97d9462f, +2), pvr.dvblink (386088b5, +5), pvr.dvbviewer (d88ef8b3, +9), pvr.filmon (1c9d2ebe), pvr.hdhomerun (af02b933, +12), pvr.hts (ecab985b, +2), pvr.iptvsimple (1b803470, +6), pvr.mediaportal.tvserver (f327ab96, +6), pvr.mythtv (b46e5be2, +2), pvr.nextpvr (03a3b714), pvr.njoy (79e8e653), pvr.octonet (a77cf111), pvr.pctv (00b76689), pvr.stalker (df492d27, +1), pvr.vbox (44f3d04e), pvr.vdr.vnsi (7e6e3854, +2), pvr.vuplus (b8316b4c, +6), pvr.wmc (1d655540)
  • Include [env] compare: kodi: updates for September
  • Include [env] patch: libcec: don't link non-existant libtinfo
  • Include [env] patch: rev hack for kodi
  • Include [env] patch: tvheadend42: fixup ffmpeg patch
  • Include [env] patch: tvheadend42: add bzip dependency when transcoding
  • Include [env] patch: inputstream.adaptive: don't build it twice...
  • Include [env] patch: Add experimental splash video for RPi
  • Include [env] patch: Bump included addon versions to prevent online updates
  • Include [env] patch: HACK: Disable multiple PVR addons during migration. Always enable inputstream.* and os.*
  • Include [env] patch: Add kodi binary addons (pvr, adsp, inputstream, vfs, other)
  • Include [env] patch: pvr addons: disable broken addons
  • Include [env] patch: samba: only hup if pid available
  • Include [env] PR:1773: init: make break after behaviour really break after
  • Include [env] PR:1776: Don't cause system to hang on halt/reboot when net-booting
  • Include [env] PR:1791: nss/nspr: include in main image [rfc]
  • Include [env] PR:1835: add support for optional kernel modules in image and from addons
  • Include [env] PR:1876: linux: update to linux-4.12.9
  • Include [env] PR:1917: linux: enable ftrace
  • Include [env] PR:1918: Package Updates: intel-vaapi-driver, libva and libva-utils to 1.8.3
  • Include [env] PR:1919: samba: don't restart smbd in samba-autoshare
  • Include [env] PR:1922: brcmfmac_sdio-firmware-rpi: Consolidate firmware files
  • Include [env] PR:1923: mesa: update to 17.2.0-rc5
  • Include [pkg] patch: skin.estuary: reduce system info font size (kodi)
  • Include [pkg] PR:12311: FIX: ensure real filename from videodb in playlists
  • Include [pkg] PR:12710: [DemuxClient] transport flags
Build Highlights:
  1. New 4.12.9 kernel
  2. Fix for FUSE when mounting exFAT
  3. Avoid restarting Samba when auto-sharing
  4. Consolidate RPi0W/RPi3 WiFI & BT firmware files - drop brcmfmac43430-sdio.{bin,txt} from non-RPi builds
  5. PVR Addon API 5.7.0: New functions for EPG tags
  6. pvr.octonet joins pvr.argustv/filmon/nextpvr/njoy/pctv/stalker/vbox/wmc on the "not building" step.
  7. omxplayer: Avoid hang when skipping to next video
Build Details:
  1. LibreELEC.tv:
    • xf86-video-nvidia: update to xf86-video-nvidia-384.69 (PR:1915, 1 commit, 2 files changed)
    • inadyn: update to 2.2 (PR:1894, 3 commits, 4 files changed)
    • build system: drop .img extension for the open virtual appliance (PR:1893, 1 commit, 1 file changed)
  2. XBMC:
    • Explicitly disable guile in GnuTLS build (PR:12638, 1 commit, 1 file changed)
    • [PVR][addons][guiinfo][Estuary] PVR Addon API 5.7.0: New functions for EPG tags. (PR:12689, 6 commits, 35 files changed)
    • FIX: [droid] update avail stream during state update (PR:12712, 1 commit, 1 file changed)
    • Game OSD: New dialog for video settings (PR:12639, 13 commits, 51 files changed)
  3. pvr.demo:
    • PVR API 5.7.0: Add IsEPGTagRecordable, IsEPGTagPlayable, GetEPGTagStr (PR:54, 1 commit, 3 files changed)
  4. pvr.dvblink:
    • PVR API 5.7.0: Add IsEPGTagRecordable, IsEPGTagPlayable, GetEPGTagStr (PR:96, 1 commit, 4 files changed)
  5. pvr.dvbviewer:
    • Final PVR API 5.7.0 (PR:69, 1 commit, 3 files changed)
  6. pvr.hdhomerun:
    • update to PVR API 5.7.0 (PR:58, 1 commit, 4 files changed)
    • Set libhdhomerun git tree to master (PR:59, 2 commits, 1 file changed)
  7. pvr.hts:
    • PVR API 5.7.0: Add IsEPGTagRecordable, IsEPGTagPlayable, GetEPGTagStr (PR:324, 1 commit, 5 files changed)
  8. pvr.iptvsimple:
    • PVR API 5.7.0: Add IsEPGTagRecordable, IsEPGTagPlayable, GetEPGTagStr (PR:155, 1 commit, 4 files changed)
  9. pvr.mediaportal.tvserver:
    • PVR API 5.7.0: Add IsEPGTagRecordable, IsEPGTagPlayable, GetEPGTagStr (PR:75, 1 commit, 4 files changed)
  10. pvr.mythtv:
    • PVR API 5.7.0: Add IsEPGTagRecordable, IsEPGTagPlayable, GetEPGTagStr (PR:83, 1 commit, 4 files changed)
  11. pvr.vdr.vnsi:
    • PVR API 5.7.0: Add IsEPGTagRecordable, IsEPGTagPlayable, GetEPGTagStr (PR:8, 1 commit, 3 files changed)
  12. pvr.vuplus:
    • PVR API 5.7.0: Add IsEPGTagRecordable, IsEPGTagPlayable, GetEPGTagStr (PR:73, 1 commit, 4 files changed)
  13. newclock5:
    • New commits in this build:
      • omxplayer: Avoid hang when skipping to next video (b9420679)
  14. kernel 4.12.y:
    • New commits in this build:
      • mm: Remove the PFN busy warning (c87fbef6)
      • cache: export clean and invalidate (48d090ab)
      • vcsm: Provide new ioctl to clean/invalidate a 2D block (ef79e7bb)
  15. Additional commits/pull requests/changes not yet merged upstream:
    • Updated: [env] patch: pvr addons: disable broken addons
    • Added: [env] patch: samba: only hup if pid available
    • Added: [env] PR:1919: samba: don't restart smbd in samba-autoshare
    • Added: [env] PR:1922: brcmfmac_sdio-firmware-rpi: Consolidate firmware files
    • Added: [env] PR:1923: mesa: update to 17.2.0-rc5



RE: LibreELEC Testbuilds for RaspberryPi (Kodi 18.0) - thent - 2017-08-26

Slighty offtopic: I'd like to update my Pi2 via script, would it be possible to provide a static link which always points to the very latest release of yours?
Thank you!
regards


RE: LibreELEC Testbuilds for RaspberryPi (Kodi 18.0) - dascoco - 2017-08-26

(2017-08-25, 14:24)HiassofT Wrote: @dascoco I found out why exfat didn't work, a fix for that should be in tonight's build. No need for any more logs, but please report back when the issue is fixed.

so long,

Hias

Now it's working well.
Thank you very much for solving this issue and invest much time on it.


RE: LibreELEC Testbuilds for RaspberryPi (Kodi 18.0) - SpokV - 2017-08-26

(2017-08-24, 15:46)SpokV Wrote: Hi. I'm using netflix addon and for a minute or two it seems ok.but after that I'm experiencing buffering alot.
Is there any special configuration to the inputstream or anything else?
Thanks

Although no one here responded just wanted to note that what solved my buffering issues was changing the advancedsettings format (changed on kodi 17).


RE: LibreELEC Testbuilds for RaspberryPi (Kodi 18.0) - Milhouse - 2017-08-26

(2017-08-26, 09:10)thent Wrote: Slighty offtopic: I'd like to update my Pi2 via script, would it be possible to provide a static link which always points to the very latest release of yours?
Thank you!
regards

Sorry, no. You could always parse the forum post - that's quite easily done in a shell script.

Or retrieve http://milhouse.libreelec.tv/builds/master/RPi2/releases.json and determine the latest file from its contents.