novalis, try it. Just download jre from sun, extract it and set some java environment variable and run kodi. Maybe it would work
I would try it but don't have any appropriate sample to test.
novalis, try it. Just download jre from sun, extract it and set some java environment variable and run kodi. Maybe it would work
I would try it but don't have any appropriate sample to test.
is the source still around (google doesn't find anything)
Well, technically speaking it was not independent addon but part of JDownloader. And not whole java but just jre. Sources are somewhere in my backups...
Java as addon was already done (for Generic only).
I think both are console only application.
You have lftp and ncftp ftp clients in network-tools addon.
Hey vpeter can you please release an update for 8.2.3?
Which one?
as you have a package and a version that is not at our git tree at all
I assume he is using GitHub - shantigilbert/LibreELEC.tv at Sx05RE ?
I think when screensaver is active first button press only stops it and doesn't do anything else. For example pressing Enter on selected movie file doesn't actually start playing it but only disable screensaver. That's why you need to press Enter again to start playing.
I think your problem is the same and not sure for a workaround.
What happen if you press Power button twice? Doesn't help?
I did try to comment this return xbmc/InputManager.cpp at master · xbmc/xbmc · GitHub and it changes this behaviour (key press activate acion even if screensaver is active). But have no idea if this is good or bad
strangely the plugin is really big - no idea if this is normal
whole Tvheadend is around ~6-7Mb (with much more functions then VDR can provide even with plugins), just the epg2vdr plugin is around 8mb ...
My zip is 6.1 MB, unzipped 18MB.
libvdr-epg2vdr.so.2.3.8 is 5 MB.
Install system tools addon and you will have it.
it will be overwritten when there is a new release of Libreelec
No, those two files will stay after update. Only after complete reinstall you need to create them.
Just select all the code I wrote above and paste it in ssh terminal. It will create both files and reload service. After that usb disk should be mounted readonly.
But in case you like to make file by hand here is the content
/storage/.config/udev.rules.d/96-enforce-usb-ro.rules
/storage/.config/system.d/enforce-usb-ro\@.service
[Unit]
Description=Enforce read-only mode on USB storage device
BindsTo=dev-%i.device
[Service]
Type=simple
ExecStart=/usr/bin/mount -o remount,ro /dev/%I
One other option to make device read only is to use hdparm
Quote-r Get/set read-only flag for the device. When set, Linux disallows write operations on the device
This remounts USB in read-only mode.
Create two files
/storage/.config/udev.rules.d/96-enforce-usb-ro.rules
/storage/.config/system.d/enforce-usb-ro\@.service
and reload rules and services or just reboot.
cat >/storage/.config/udev.rules.d/96-enforce-usb-ro.rules <<EOL
SUBSYSTEMS=="usb",ACTION=="add",KERNEL=="sd*",ENV{SYSTEMD_WANTS}="enforce-usb-ro@%k"
EOL
cat >/storage/.config/system.d/enforce-usb-ro\@.service <<EOL
[Unit]
Description=Enforce read-only mode on USB storage device
BindsTo=dev-%i.device
[Service]
Type=simple
ExecStart=/usr/bin/mount -o remount,ro /dev/%I
EOL
udevadm control --reload
systemctl daemon-reload
Display More
From Compile problem
QuoteUbuntu 16.04 works, Ubuntu 17.10/18.04 is only working with LE9/master
And you are building LE8.
In function make_target() use
and remove those 3 lines for CFLAGS from pre_make_target() I suggested above.
Better option is to use pre_configure_target() function and then make_target() doesn't need changes.