Jump to content


takitr

Member Since 10 Apr 2018
Offline Last Active 12 Apr 2020 17:10
-----

Posts I've Made

In Topic: Howto build unofficial pli for your unsupported receiver

31 August 2018 - 09:06

For linux 4.9 add dvb
Modify file “Makefile” in folder “hardware\aml-4.9\amlogic\media_modules\drivers\stream_input”, and add the path
of demodulation driver. the demodulation driver is porting by yourself.

Look pdf

http://openlinux.aml...s_V20170814.pdf

In Topic: Howto build unofficial pli for your unsupported receiver

19 August 2018 - 18:09

:)
Look bb files
https://github.com/o...amlogic_r6p1.bb

https://github.com/o...amlogic_r4p1.bb
https://github.com/o...amlogic_r4p1.bb

S905 d w series use mali450 opengl driver for GUI
enigma need OpenGL driver for GUI( no need opengl video hw acceleration)
No puplic S912 linux fb t820 DRİVER
S912 use android mali t820 drivers

In Topic: Howto build unofficial pli for your unsupported receiver

18 August 2018 - 13:02

S912 no OpenGL driver for linux thus at this time dont work with pli. İf Some body adaptive libhybrit driver. May be works or wait dreambox s912 out openatv source

In Topic: Howto build unofficial pli for your unsupported receiver

14 August 2018 - 11:22

K3 pro has mali t830 GPU. Have to be add package libhybrit and t820 OpenGL driver
https://github.com/L...engl-meson-t82x
https://github.com/L...kages/libhybris

In Topic: Howto build unofficial pli for your unsupported receiver

13 August 2018 - 19:04

#!/bin/sh
#
# Start Neutrino
#

. /etc/profile

export PATH=$PATH:/storage/vitmod/neutrino/bin
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/storage/vitmod/neutrino/bin:/storage
export HAL_DEBUG=0xff

enable_video() {
echo 0 > /sys/class/video/disable_video
echo "0 0 0 0" > /sys/class/video/axis
echo 0 > /sys/class/graphics/fb0/blank
echo 1 > /sys/class/graphics/fb1/blank
# for new kernel
echo "dmx0" > /sys/class/stb/source
echo "ts0" > /sys/class/stb/demux0_source
echo "ts0" > /sys/class/stb/demux1_source
echo "ts0" > /sys/class/stb/demux2_source
echo "dmx1" > /sys/class/stb/dsc0_source
}

tv_on() {
echo "10 04" > /sys/class/cec/cmd
}

tv_off() {
echo "0f 36" > /sys/class/cec/cmd
}

wait_network() {
/usr/sbin/connmand-wait-online --timeout=15
}

while true; do
tv_on
rm -f /tmp/.halt /tmp/.reboot /tmp/.timer
remotecfg /storage/vitmod/neutrino/var/tuxbox/config/remote-neu.conf > /dev/null
enable_video
wait_network
/storage/vitmod/neutrino/bin/neutrino;
exit_value=$?
case "$exit_value" in
0) echo "Neutrino exit with shutdown" >&2
tv_off
poweroff
;;
1) echo "Neutrino exit with reboot" >&2
reboot
;;
50) echo "Neutrino exit with start Kodi"
/storage/vitmod/run/kodi.start
;;
60) echo "Neutrino exit with start Android"
/storage/vitmod/run/android.start
;;
esac
exit $exit_value
done