Maybe write in this thread? LibreELEC 9.X / Kodi 18.X for Minix X8,X8H,X8H+
I think you got image there.
Maybe write in this thread? LibreELEC 9.X / Kodi 18.X for Minix X8,X8H,X8H+
I think you got image there.
On Windows it intentionally list only removable devices: usb-sd-creator/deviceenumerator_windows.cpp at master · LibreELEC/usb-sd-creator · GitHub
If you have problem writing image to your USB drive then try to use different program like Rufus. Maybe it will show your fixed device.
BUT, it hasn't, which is the odd thing...
And what is the difference? In both cases /flash/KERNEL and /flash/SYSTEM files are updated.
CoreELEC is focusing their efforts on the old SDK instead...
And what is wrong with that? Completely nothing! They keep old devices still in use with kodi 18 with this old sdk. Because mainline is currently not usable for generic use. If you confess that or not. And when mainline will be in shape they will use it too.
Are you a provocateur or want to look like the smartest?
CE has linux 4.9, here going development of 5.0. What are you want to say?...
It is about telling users that there is alternative which is currently better than LibreELEC. Most users wants working device right? Why the hell would any regular user install a build which doesn't have a sound? To tell developer that? I'm sure they already knows that.
It was the same when LE fork happen - there were telling on OE forum about it.
I don't understand what is happening in your case but as soon password is changed from addons settings and get back to home menu mysql server is restarted and password is changed:
LibreELEC.tv/mariadb.start at master · LibreELEC/LibreELEC.tv · GitHub
Anyway, password is set in file /storage/.kodi/userdata/addon_data/service.mariadb/settings.xml.
Changing password directly from mysql could have some side effects (like changing it to something else after restart). I newer even tested such
scenario.
I personally newer had start problem.
Check log file if you see anything useful there: /storage/.kodi/userdata/addon_data/service.mariadb/mysqld.log
If not try to reinstall addon.
@things are not supported in cron from busybox.
More crontab @reboot command in LE
In autostart.sh just add sleep command for few seconds or make better way until network is really up (like loop until file is succcesfully downloaded) and then download file. Don't put this commands in background.
Loop like
for i in $(seq 1 120); do
curl -m 5 --retry 2 --retry-max-time 5 -o /storage/downloads/file.m3u8.tmp http://server/path/file.m3u8
if [ "$?" = "0" ]; then
# dl ok
mv /storage/downloads/file.m3u8.tmp /storage/downloads/file.m3u8
sync
break
fi
rm -f /storage/downloads/file.m3u8.tmp
sleep 1
done
Display More
(
sleep 5
) &
/storage/.kodi/myscript.sh &
This doesn't make much sense because sleep is executed in background and myscript is executed at the same time.
True, PATH can't be set here because it is overwritten later.
But bin folder from addon is automatically add to it. So move everything under /storage/.kodi/addons/node.js folder.
My all commands to make it happen:
mkdir -p /storage/.kodi/addons/node.js/profile.d
cd /storage/.kodi/addons/node.js
echo "export NODEJS_HOME=/storage/.kodi/addons/node.js" >profile.d/node.js.profile
wget https://nodejs.org/dist/v10.15.3/node-v10.15.3-linux-armv6l.tar.xz
tar --strip-components=1 -xf node-v10.15.3-linux-armv6l.tar.xz
rm node-v10.15.3-linux-armv6l.tar.xz
# exit terminal and login again
LibreELEC:~ # node -v
v10.15.3
LibreELEC:~ # ls -al $NODEJS_HOME
total 153
drwxr-xr-x 7 root root 1024 Apr 17 08:35 .
drwxr-xr-x 45 root root 3072 Apr 17 08:35 ..
drwxrwxr-x 2 500 500 1024 Apr 17 08:35 bin
-rw-rw-r-- 1 500 500 53097 Mar 5 16:53 CHANGELOG.md
drwxrwxr-x 3 500 500 1024 Apr 17 08:35 include
drwxrwxr-x 3 500 500 1024 Apr 17 08:35 lib
-rw-rw-r-- 1 500 500 65839 Mar 5 16:53 LICENSE
drwxr-xr-x 2 root root 1024 Apr 17 08:35 profile.d
-rw-rw-r-- 1 500 500 26697 Mar 5 16:53 README.md
drwxrwxr-x 5 500 500 1024 Apr 17 08:35 share
Display More
The usb creator creates an installation usb not an OS. Then you boot from it and install to the HDD.
If you change in file syslinux.cfg line DEFAULT installer to DEFAULT run it will run from this same stick. and no need to install it anywhere.
Create file /storage/.kodi/addons/http://node.js/profile.d/node.js.profile and put both export variables NODEJS_HOME and PATH inside.