Have you connected a software RAID 5 to your LibreELEC distribution from sky42 and gotten it working?
No, because I use a Synology NAS in the network with a hardware RAID6 configuration ![]()
Code
[Unit]
Description=RAID5 Service
After=network-online.target nss-lookup.target time-sync.target
Wants=network-online.target nss-lookup.target time-sync.target
[Service]
Type=oneshot
RemainAfterExit=yes
ExecStart=/usr/bin/mdadm --assemble --force /dev/md0 /dev/sda1 /dev/sdb1 /dev/sdc1 /dev/sdd1
ExecStart=/usr/bin/mkdir /media/RAID
ExecStart=/usr/bin/mount /dev/md0 /media/RAID
ExecStop=/usr/bin/umount /dev/md0
[Install]
WantedBy=multi-user.target
Display More
Create as /storage/.config/system.d/raid5.service and then enable/start the systemd service. If you can run the same commands over SSH to mount the array the sky42 image contains all the software bits needed. If you cannot then it doesn't. NB: Check the actual path for mdadm in the image, I've assumed it's in /usr/bin.