Posts by zarusz

    The black screen on boot issue is now resolved on the test build. From good things:

    * DTS pass-through seems to be working fine with my Yamaha AVR.

    * The overal UI and video playback seems to be more smooth (compared to the Raybuntu's release from couple of months back).

    Next problem:

    * Cannot add the Docker addon (no where to be found). I need to add other home services here (openHAB, syncthing)

    * Also going into Addons > Browse Repositories > LibreELEC Repository gives some error and shortly after entire OS reboots

    Hello,

    First of all thank you for the work on LibreELEC.

    I have few HDD attached via the USB interface to my Rock64. I would want to be able spin down all disks after some inactivity. Two disks spin down fine using the pre-installed hdparm. However, my 3rd disk (Segate) requires sdparm to spin it down (this disk has SCSI interface). As I understand for LibreELEC packages cannot be installed by the user.

    Can the sdparm be added to the distribution as well with your next release?

    Right now, my workaround is to run a docker debian container in privileged mode to be able to install sdparm and spin down the disk:

    Code
    sdparm --flexible -6 -l --save --set SCT=54000 /dev/sdb
    sdparm --flexible -6 -l --save --set STANDBY=1 /dev/sdb

    (54000 * 0.1s) = 1.5h

    Docker:

    Code
    docker run --rm --privileged --device=/dev/sda:/dev/sda -it arm64v8/debian
    
    apt-get update
    apt-get install sdparm -y

    Version:

    Code
    Linux Rock64 4.4.103 #1 SMP Fri Dec 22 08:22:26 CET 2017 aarch64 GNU/Linux