Jump to content


rossi2000

Member Since 10 Apr 2011
Offline Last Active 19 Oct 2018 14:04
-----

#799298 Recording, and cached PIDs in lamedb

Posted by rossi2000 on 18 November 2017 - 00:03

this patch also currently works

tested on OpenViX and OpenBH.

Attached Files




#531520 VU Solo 4k support

Posted by rossi2000 on 17 February 2016 - 11:00

Can you please try this test on open pli and the latest drivers. I do not have open pli flashed on mine atm whilst I've been testing other images.

Setup tuners as advanced unicable etc. In my case I have 4scrs which I have all linked to tuner a.

Set of some recordings on A, C, D, And view a channel on E, Then stop the recording on tuner A. This results in glitching and tune failed and this repeats.

Another test is just to set the preferred tuner Dvbs to C,D or E, then go to watch a channel, it should be using the preferred tuner you set, it will give the same results of tune failed, glitching etc.


These problems go away when using the previous driver set.


#452482 how to get this skin in my pli.

Posted by rossi2000 on 2 November 2014 - 19:03

if you want have a play

this "should" work on pli.

 

but fair abit will need to be adapted becuase of different converters/renderers etc.   widgets etc.

Attached Files




#255857 editing at source?

Posted by rossi2000 on 18 February 2012 - 20:26

i used to do the ipk way before i sussed more bits out.
edit the enigma2.bb to do it.:-

in your recipes folder, there is an enigma2 folder
inside this create another enigma2 folder
inside here create a folder for the box your making the image for, (eg dm800se)
put your spinner pngs into here.

now edit the enigma2.bb and add these sections:-

this section i add under this line
RADIOMVI = "${@base_contains("MACHINE_FEATURES", "hdtv", "radio-hd.mvi" , "radio-sd.mvi", d)}"



SRC_URI_append_dm800se = " \
file://wait1.png \
file://wait2.png \
file://wait3.png \
file://wait4.png \
file://wait5.png \
file://wait6.png \
file://wait7.png \
file://wait8.png \
"

then add this under this line:
addtask openpli_preinstall after do_compile before do_install


do_compile_prepend_dm800se() {
install -m 0644 ${WORKDIR}/wait1.png ${S}/data/skin_default/spinner
install -m 0644 ${WORKDIR}/wait2.png ${S}/data/skin_default/spinner
install -m 0644 ${WORKDIR}/wait3.png ${S}/data/skin_default/spinner
install -m 0644 ${WORKDIR}/wait4.png ${S}/data/skin_default/spinner
install -m 0644 ${WORKDIR}/wait5.png ${S}/data/skin_default/spinner
install -m 0644 ${WORKDIR}/wait6.png ${S}/data/skin_default/spinner
install -m 0644 ${WORKDIR}/wait7.png ${S}/data/skin_default/spinner
install -m 0644 ${WORKDIR}/wait8.png ${S}/data/skin_default/spinner

obviously edit it with how ever many spinner files u have.


now go into your build-dm800se dir and do

source env.source
then
bitbake -c clean enigma2
once this is done
bitbake openpli-enigma2-image

hopefully now your new image will have your spinners in place.