this build is based off kodi v19 beta1?
Yes, current Kodi master
this build is based off kodi v19 beta1?
Yes, current Kodi master
You can use the image from post #258.
I compiled a build with new LSPCON patches and new Kodi drmprime stuff from lrusak's branch. Maybe worth a try.
I assume that by using Windows and full drivers it should work.
I suppose it will work in Windows.
Regarding Linux - it's not yet clear when HDR will work on LSPCON.
Buy something that have native HDMI 2.0 e.g. Intel Gemini Lake or Tiger Lake. The new Tiger Lake SoCs look very promising for HTPC usage.
and gives HDR10 output?
No.
Thanks! I tried to build from both branches.
Commits · lrusak/xbmc · GitHub built successfully
Commits · lrusak/xbmc · GitHub build failure:
ADDON_PROJECT is set to Generic for the GBM device in my build and "Install from repository" works as expected.
I don't expect all addons that were built for x11/GL to work on GBM/GLES though.
Do you have a fork with your commits?
No.
Please make suret if you post builds you post your sources as well!
The sources are LE master branch + patches from Kwiboo.
Commits · Kwiboo/xbmc · GitHub
Commits · Kwiboo/FFmpeg · GitHub
Had to use an older version of Kodi (from before recent changes in drm prime) because Kwiboo's patches don't apply anymore.
https://www.dropbox.com/s/f2uqcvustv93….1.4.1.zip?dl=1
This version have drm does this mean it will might have support for netflix 4k with inputhelper ?
No. DRM = Direct Rendering Manager.
I did compile. I suppose pre-compiled Kodi 19 addons from other sources may not work with this build, especially the binary ones.
vfs.rar didnt find my rar files like Millhouse build did.
You need to reboot or restart kodi after installing vfs.rar.
Do you also have vfs.libarchive that i can try with?
But i have a question how do i get my vfs unrar back?
You mean the vfs.rar addon? https://www.dropbox.com/s/3yd99q2fg802….0.0.1.zip?dl=1
How to get wifi Module 5A Working ?
Try this - https://www.dropbox.com/s/xdbwurzpga0i…d42.img.gz?dl=1
I know nothing about osx but I doubt it will work natively. You can use a VM with a Linux as a guest OS.
Yes.
I forgot to mention that if you want to compile a custom 9.2.6 (stable) build run
"git checkout libreelec-9.2" before making changes.
Otherwise it will compile from a master branch (kodi 19).
You can add the rtl88x2bu driver to the LE build system and compile an image.
e.g.:
cd ~
git clone https://github.com/LibreELEC/LibreELEC.tv
cd LibreELEC.tv/packages/linux-drivers
mkdir RTL88x2BU
cd RTL88x2BU
touch package.mk
add this to package.mk:
PKG_NAME="RTL88x2BU"
PKG_VERSION="439c7dbd9e43acd91d5704a50b68647716c52505"
PKG_LICENSE="GPL"
PKG_SITE="https://github.com/cilynx/rtl88x2bu"
PKG_URL="https://github.com/cilynx/rtl88x2bu/archive/$PKG_VERSION.tar.gz"
PKG_DEPENDS_TARGET="toolchain linux"
PKG_NEED_UNPACK="$LINUX_DEPENDS"
PKG_LONGDESC="Realtek RTL88x2BU Linux driver"
PKG_IS_KERNEL_PKG="yes"
pre_make_target() {
unset LDFLAGS
}
make_target() {
make V=1 \
ARCH=$TARGET_KERNEL_ARCH \
KSRC=$(kernel_path) \
CROSS_COMPILE=$TARGET_KERNEL_PREFIX \
CONFIG_POWER_SAVING=n
}
makeinstall_target() {
mkdir -p $INSTALL/$(get_full_module_dir)/$PKG_NAME
cp *.ko $INSTALL/$(get_full_module_dir)/$PKG_NAME
}
Display More
Edit distributions/LibreELEC/options file, add RTL88x2BU to "ADDITIONAL_DRIVERS=" :
ADDITIONAL_DRIVERS="RTL8192CU RTL8192DU RTL8192EU RTL8188EU RTL8812AU RTL88x2BU"
Build an image:
cd ~/LibreELEC.tv
PROJECT=RPi ARCH=arm DEVICE=RPi2 make image