Kodi Community Forum

Full Version: LibreELEC Testbuilds for RaspberryPi (Kodi 18.0)
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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
(2017-07-20, 05:07)linkinsoldier Wrote: [ -> ]
(2017-07-19, 22:53)bite_your_idols Wrote: [ -> ]I have discovered an strange issue: after 0714 build my DS3 via bluetooth is assigned as Controller 2, so if I launch Retroarch with Gamestarter Addon I can not control the menus or play games... Maybe it is something related with retroplayer? anyone with the same problem? Any workaround?
Yes I had the same problem. I posted it a few days ago with a debug log but I am not sure whether this is worked on or further input is necessary!

@milhouse/@garbear: did you have any luck to get to the bottom of this?

First of all, we can't control what happens (or is broken) outside of Kodi. Second of all, the code to manage controllers and their ports doesn't exist. So you won't find a solution in Kodi. Hence, I've started creating a Player Manager so that troubleshooting and fixing this will be possible. Expect this feature within a week or two.

And third of all, no debug log, no problem.
(2017-07-20, 20:07)edit4ever Wrote: [ -> ]Did I miss something that changed in LE 9 with the way bash scripts work - or is it something to do with the new linux kernel?

Nothing to do with bash (and everything is ash in LibreELEC, anyway).

Your script is extracting the USERID and PASSWORD values from your addon settings XML file.

With the Settings Library changes in Kodi 18 the format of your addon settings xml file has changed so you'll need to update your script to work with the new settings format.

If you want to extract values from XML files in LibreELEC, you should use xmlstarlet, eg.
Code:
xmlstarlet sel -t -v "/settings/setting/@id=autoscroll" /storage/.kodi/userdata/addon_data/skin.estuary/settings.xml
would return the value of the "autoscroll" setting.
I have almost no font in the CEC adapter settings - > screenshot - http://imgur.com/a/N1Ejh
(2017-07-20, 21:21)Malocher Wrote: [ -> ]I have almost no font in the CEC adapter settings - > screenshot - http://imgur.com/a/N1Ejh

I'm working on a fix: PR12518
Thank you Milhouse - I missed the change in settings.xml - looks like I have some work to do to make my addons compatible with Leia.
@Milhouse any chance PR:12507 can be merged in the next build?


Sent from my iPhone
(2017-07-20, 22:19)weppa Wrote: [ -> ]@Milhouse any chance PR:12507 can be merged in the next build?

You mean the same PR12507 that merged 3 days ago and has been included since #0718?
(2017-07-20, 20:33)garbear Wrote: [ -> ]
(2017-07-20, 05:07)linkinsoldier Wrote: [ -> ]
(2017-07-19, 22:53)bite_your_idols Wrote: [ -> ]I have discovered an strange issue: after 0714 build my DS3 via bluetooth is assigned as Controller 2, so if I launch Retroarch with Gamestarter Addon I can not control the menus or play games... Maybe it is something related with retroplayer? anyone with the same problem? Any workaround?
Yes I had the same problem. I posted it a few days ago with a debug log but I am not sure whether this is worked on or further input is necessary!

@milhouse/@garbear: did you have any luck to get to the bottom of this?

First of all, we can't control what happens (or is broken) outside of Kodi. Second of all, the code to manage controllers and their ports doesn't exist. So you won't find a solution in Kodi. Hence, I've started creating a Player Manager so that troubleshooting and fixing this will be possible. Expect this feature within a week or two.

And third of all, no debug log, no problem.
@garbear: I am only trying to help + I did post a debug log - see my old post:

(2017-07-15, 09:59)linkinsoldier Wrote: [ -> ]
(2017-07-13, 21:44)Milhouse Wrote: [ -> ]
(2017-07-13, 21:40)linkinsoldier Wrote: [ -> ]Thx for the info! Will this change the stream resolution behaviour as well?

Errmm... possibly not - if it's still an issue after the next build please post again.

Unfortunately issue (https://github.com/peak3d/inputstream.ad.../issues/38 ) is still present with 714!
https://pastebin.com/kR1Ah9XU

Unfortunately with this build I get another bug:
I try to connect my bluetooth controller (PS3) but unfortunately it is connected as player 2 (instead of 1) and I cant controller kodi with it (has been working flawlessly since month!)
Going back to 711 everything works great!
See above debug log for more information.

(2017-07-15, 04:47)weppa Wrote: [ -> ]
(2017-07-15, 00:13)Milhouse Wrote: [ -> ]The LibreELEC Retroplayer repository has been updated with compatible addons for anyone that wishes to give them a go.

Add-on couldn't be loaded.

Can't load shared library.

I second this: when I try to start gbc or snes emulator I still get the "can load shared library" error for the emulators!
See above debug log for more information.
(2017-07-20, 22:22)Milhouse Wrote: [ -> ]
(2017-07-20, 22:19)weppa Wrote: [ -> ]@Milhouse any chance PR:12507 can be merged in the next build?

You mean the same PR12507 that merged 3 days ago and has been included since #0718?


Apologies, did not notice. @garbear, still experiencing black screen during emulations.


Sent from my iPhone
New LibreELEC.tv Leia build #0720: RPi / RPi2
(Supercedes previous build)

Code:
# uname -a
Linux rpi512 4.12.2 #1 Thu Jul 20 21:04:51 BST 2017 armv6l GNU/Linux

# vcgencmd version
Jun 28 2017 18:11:44
Copyright (c) 2012 Broadcom
version f12b2b59ba808a52650d85a33a0ac528aa717bb0 (tainted) (release)

# lsb_release
LibreELEC (Milhouse): devel-20170720210344-#0720-g69a9671 [Build #0720]

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

Based on tip of LibreELEC.tv master (69a9671c, changelog) and tip of XBMC master (ebce474f, changelog) with the following modifications: Build Highlights:
  1. samba/heimdal: update to samba-4.6.6 and heimdal-7.4.0, fixes Orpheus' Lyre vulnerability
  2. inputstream.adaptive: HDCPOVERRIDE temporary added
    Quote:When enabled should allow playback of HDCP protected HD streams, such as Amazon movies.

    https://github.com/peak3d/inputstream.ad.../issues/38
Build Details:
  1. LibreELEC.tv:
    • samba/heimdal: update to samba-4.6.6 and heimdal-7.4.0 (PR:1817, 2 commits, 2 files changed)
  2. XBMC:
    • [AddonVideoCodec] Set aspect / fps in processInfo (PR:12530, 1 commit, 1 file changed)
    • [github] add improvement as new type of change (PR:12532, 1 commit, 1 file changed)
    • [screensaver] add doxygen documentation (PR:12497, 1 commit, 2 files changed)
  3. inputstream.adaptive:
    • Change search path / credits @xhaggi (212abc36)
    • [DASH] allow timeadjustments in SegmentTimeLine (4a8b8b6c)
    • [Win] unicode for complete project / remove _Debug / remove stdgnu0x (f82ffb67)
    • HDCPOVERRIDE temporary added (0a32275a)
Thanks, with this build stream select now works for me thanks to hdcp override!
Weekly Linux 4.13-rc1 build #0720x: RPi / RPi2
Can't seem to figure this one out on my own, I'm got a Raspberry Pi3 running the latest available version. Using IARL the games launch but no video, whenever I stop the game Kodi crashes. See crash log:
http://sprunge.us/NTjX

If anyone can help, at least to get some video going!
I really don't like the TV channel switching behavior in latest builds - a flash of black screen after the channel switch. I think this is the cause - "VideoPlayer: flush renderer on channel switch (PR:12472, 1 commit, 1 file changed)"
(2017-07-20, 21:21)Malocher Wrote: [ -> ]I have almost no font in the CEC adapter settings - > screenshot - http://imgur.com/a/N1Ejh

The same with # 0720
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