v17 LibreELEC Testbuilds for RaspberryPi (Kodi 17.0)
(2016-05-28, 00:29)santope Wrote: Many thanks for your patience and your comprehensive replies to my newbie question.
In the end I did it through the Raspberrian GUI file manager type of thing, but I had to change the permissions, from the command line. A good Linux exercise for me !

That's the spirit!

santope Wrote:But I will also try your suggestions, just to learn.
Another little question (this should be easy):
Can I (should I) run LibreELEC from NOOBS ?

Yes, I run from NOOBS, you can update openelec to libreelec.

I created a small bash script that will update LibreElec to the lastest Millhouse build. Run it on your PC/Laptop in your LAN, it uses SSH and lynx is needed (apt-get install lynx)

Code:
#!/bin/bash
# le_update.sh
DOMAIN="http://milhouse.libreelec.tv/builds/master/RPi2/"

if [ "$1" = "" ]; then
PATTERN="RPi2.arm"
else
PATTERN="#$1"
fi

URL=`lynx -dump -nolist $DOMAIN | egrep $PATTERN | tail -n 1 | awk '{print $1;}'`
URL=$DOMAIN${URL/\#/%23}
ssh [email protected] "wget -P .update ${URL} ; reboot"

You can also run it with a build number to revert to an older build.
Code:
le_update.sh 0522  // will revert to the #0522 build


Messages In This Thread
RE: LibreELEC Testbuilds for RaspberryPi (Kodi 17.0) - by ElectricPim - 2016-05-28, 13:28
RPi2: no DV-codec? - by bubi - 2016-07-10, 10:30
DV-video not working - by bubi - 2016-07-15, 19:48
Logout Mark Read Team Forum Stats Members Help
LibreELEC Testbuilds for RaspberryPi (Kodi 17.0)19