yaVDR+Reelbox Avantgarde

  • Hello to everybody:


    First of all I want to say thank you for your great job. It's a pretty impressive work you have done with this VDR mod.


    My name is markrankin and this is my first post. I'm mod of the site:


    www.tododream.com


    You're wellcome everytime you want.



    The post title is about how to integrate this image on the Avantgarde :


    http://www.reel-multimedia.com/de/index.html


    As you know this machine uses the dvbloop patch to connect to the multitunner board (NETCEIVER). Some of us are trying to built our own machine starting from 0 and we could connect VDR to the multituner system via this way :


    http://www.tododream.com/foro/…1-xbmc-pvr-netceiver.html


    My question is if you're planning to add dvbloop to your repositories or config. And if negative, how do we compile your yaVDR to connect to the netceiver multitunner system.


    Thanks in advance and regards:
    Marky.

  • Zitat


    This link is useless without registration, I don't speak the language so I wouldn't like to create an account there.


    Zitat

    Original von markrankin
    My question is if you're planning to add dvbloop to your repositories or config.


    We have no plans into this direction, nobody of us owns a reelbox.

    Zitat

    Original von markrankin
    And if negative, how do we compile your yaVDR to connect to the netceiver multitunner system.


    We use normal Ubuntu packages. So if you want to patch the vdr package, add the deb-src repository to your apt sources.list, do an "apt-get update", download the source with "apt-get source vdr", apply your patches and build the package with "dpkg-buildpackage".


    Gerald


    HP Proliant MicroServer Gen8, Xeon E3-1230, 12 GB RAM, 3xWD red 2TB im RAID 5, 2xSundtek MediaTV Home DVB-C/T, L4M TWIN-C/T, Ubuntu Server 14.04.1, Plex Media Server
    Samsung UE55H6470

  • Thanks for the answer.


    Here is the post:



    xbmc pvr netceiver


    Bueno esto es una pequeña guia para instalar xbmc-pvr con nvidia-vdpau y el netceiver.
    Es la primera vez que hago un tutorial, asi que seguro que algun fallo tendra.
    Lo primero que hay que hacer es bajarse de aqui https://help.ubuntu.com/community/In...tion/MinimalCD ubuntu karmic minimal cd yo me he descargado el de 32 bits pc.


    hacemos la instalacion minima de ubuntu en una particion del disco duro, aqui os dejo un pdf con algunas capturas de mi instalacion por si teneis alguna duda lo podeis consultar;


    RapidShare: 1-CLICK Web hosting - Easy Filehosting
    para el que quiera hacerlo mediante ssh (es mas comodo ya que es copiar y pegar) les recuerdo la forma de hacerlo.


    ssh usuario@ipdelxbmc-pvr


    Empezamos


    sudo apt-get update
    sudo apt-get install ssh
    Código PHP:
    sudo su
    apt-get install build-essential linux-headers-generic mercurial subversion libncurses-dev
    apt-get install libpng12-dev
    apt-get install screen
    cd /usr/src
    hg clone http://mercurial.intuxication.org/hg/s2-liplianin/
    descargar de aquí el siguiente parche; dvbloop-s2api_v3.patch.gz
    VDR Portal | Andere Hardware | [HOWTO] Netceiver im externen Geh


    pasarlo por ftp o ssh y seguimos


    mv /home/vdr/dvbloop-s2api_v3.patch.gz .
    cd s2-liplianin
    zcat ../dvbloop-s2api_v3.patch.gz | patch -p1
    make menuconfig
    y en el menu que nos sale vamos a Multimedia support, luego a DVB/ATSC adapters y buscamos firedTV and Floppy DTV pulsamos “n” para desmarcar y exit, exit, exit yes ya estamos fuera, ahora;
    nano linux/drivers/media/dvb/Makefile
    quitamos esta linea


    obj-y := dvb-core/ frontends/ ttpci/ ttusb-dec/ ttusb-budget/ b2c2/ bt8xx/ dvb-usb/ pluto2/ siano/ dm1105/ mantis/
    y ponemos esta otra;


    obj-y := dvb-core/ frontends/ ttpci/ ttusb-dec/ ttusb-budget/ b2c2/ bt8xx/ dvb-usb/ pluto2/ siano/ dm1105/ mantis/ dvbloop/
    guardamos y salimos con control+o y control +x


    make
    make install
    depmod -a


    nano /etc/network/interfaces
    y añadimos lo siguiente


    auto eth0
    iface eth0 inet dhcp
    guardamos y salimos con control+o y control +x
    ahora esto


    cd /usr/local/src
    wget http://www.baycom.de/download/…tools_static_20081113.tgz
    tar xzvf netceiver_tools_static_20081113.tgz
    cd netceiver_20081113
    mv mcli-static mcli
    modprobe dvbloop
    ifconfig eth0 up
    ./mcli --ca-enable 3 --ifname eth0


    nos deben de salir los tunners que tenemos en el netceiver
    control + c
    hacemos que se inicie solo;


    mv mcli /usr/local/sbin
    nano /etc/init.d/netceiver
    y pegamos lo siguiente;


    #!/bin/sh


    PATH=/bin:/usr/bin:/sbin:/usr/sbin:/usr/local/sbin
    case "$1" in
    start)
    modprobe dvbloop
    /usr/local/sbin/mcli --ca-enable 3 --ifname eth0
    ;;
    stop)
    ;;
    *)
    echo "Usage: /etc/init.d/netceiver {start|stop}"
    exit 1
    esac


    exit 0



    guardamos


    chmod +x /etc/init.d/netceiver
    update-rc.d netceiver defaults 30
    continuamos;


    cd /usr/src/s2-liplianin/linux/include/linux/
    ln -s /usr/src/linux-headers-$(uname -r)/include/linux/compiler.h compiler.h
    cd /usr/local/src/
    wget ftp://ftp.tvdr.de/vdr/Developer/vdr-1.7.10.tar.bz2
    tar -xjf vdr-1.7.10.tar.bz2
    ln -s vdr-1.7.10 vdr
    wget http://xbmc.svn.sourceforge.ne…10_extensionsAndXBMC.diff
    cd vdr
    patch -p1 < ../vdr-1.7.10_extensionsAndXBMC.diff
    cp Make.config.template Make.config
    nano Make.config


    descomentar DVBDIR y añadir;


    /usr/src/s2-liplianin/linux
    control + o para guardar y control + x para salir


    cd PLUGINS/src/
    rm -r *
    apt-get install cvs autoconf libtool automake pkg-config gettext
    apt-get install libfreetype6-dev libfontconfig1-dev libjpeg62-dev libcap-dev libncurses5-dev libncursesw5-dev
    cvs -d:pserver:anoncvs@vdr-developer.org:/var/cvsroot login
    pulsamos enter


    cvs -d:pserver:anoncvs@vdr-developer.org:/var/cvsroot co -D 4/22/09 streamdev
    apt-get install libssl-dev
    erased due to administrator rules
    nano Makefile
    buscamos esta linea


    CSAFLAGS ?= -Wall -fPIC -g -O3 -mmmx -fomit-frame-pointer -fexpensive-optimizations -funroll-loops
    eliminamos -03 y la dejamos asi


    CSAFLAGS ?= -Wall -fPIC -g -mmmx -fomit-frame-pointer -fexpensive-optimizations -funroll-loops
    guardamos y salimos


    cd ../../../
    make
    make plugins
    mkdir /video
    cp *.conf /video/
    ./vdr -P'erased due to administrator rules -B1' -Pstreamdev-server
    nano /video/plugins/streamdev/streamdevhosts.conf
    y pegamos lo siguiente


    # streamdevhosts This file describes a number of host addresses that
    # are allowed to connect to the streamdev server running
    # with the Video Disk Recorder (VDR) on this system.
    # Syntax:
    #
    # IP-Address[/Netmask]
    #


    127.0.0.1 # always accept localhost
    #192.168.100.0/24 # any host on the local net
    #204.152.189.113 # a specific host
    0.0.0.0/0 # any host on any net (USE THIS WITH CARE!)
    ahora xbmc-pvr



    echo deb http://ppa.launchpad.net/henningpingel/xbmc/ubuntu karmic main >> /etc/apt/sources.list.d/xbmc-pvr.list
    echo deb-src http://ppa.launchpad.net/henningpingel/xbmc/ubuntu karmic main >> /etc/apt/sources.list.d/xbmc-pvr.list
    apt-key adv --****erver ****erver.ubuntu.com --recv-**** 299F360A
    apt-get update
    echo deb http://ppa.launchpad.net/nvidia-vdpau/ppa/ubuntu karmic main >> /etc/apt/sources.list.d/nvidia-vdpau.list
    echo deb-src http://ppa.launchpad.net/nvidia-vdpau/ppa/ubuntu karmic main >> /etc/apt/sources.list.d/nvidia-vdpau.list
    apt-key adv --****erver ****erver.ubuntu.com --recv-**** CEC06767
    apt-get update
    apt-get install linux-sound-base alsa-base alsa-utils
    apt-get install linux-headers-generic nvidia-glx-195
    apt-get install xinit x11-xserver-utils fluxbox
    apt-get install xbmc xbmc-eventclients-*
    apt-get install xbmc-live python-apt
    ahora el inicio un poco mas bonito


    echo deb http://ppa.launchpad.net/team-xbmc/ppa/ubuntu karmic main >> /etc/apt/sources.list.d/xbmc.usplash.list
    apt-key adv --****erver ****erver.ubuntu.com --recv-**** 91E7EE5E
    apt-get update
    apt-get install usplash-theme-xbmc-*
    update-alternatives --set usplash-artwork.so /usr/lib/usplash/xbmc-splash-spinner-black.so
    echo xres=1920 >> /etc/usplash.conf
    echo yres=1080 >> /etc/usplash.conf
    update-initramfs -u
    nvidia-xconfig -s --no-logo --force-generate
    sed -i '40i\ Option "HWCursor" "False"' /etc/X11/xorg.conf
    sed -i '50i\ Option "DynamicTwinView" "False"' /etc/X11/xorg.conf
    rm -r /etc/apt/sources.list.d/xbmc.usplash.list
    apt-get update
    reboot
    esto es todo faltaria un script de inicio para vdr, en cuanto tenga un rato lo añado para hacer pruebas se puede lanzar manualmente por ssh.


    Un saludo



    Thanks again:
    Marky.

  • please take out the reference to the ** plugin immediatly ...


    Other then that i don't speak spain (?) - a few points:
    - nvidia driver and usplash don't like to play with each other
    - if dvb-loop is integrated in s2-liplianin - or only patch required - we can activate.
    - netceiver tools is binary only ? No way to integrate that if its true
    - mcli start skript should be upstart skript for yavdr - but thats fairly easy
    - sed -i '40i\ Option "HWCursor" "False"' /etc/X11/xorg.conf
    sed -i '50i\ Option "DynamicTwinView" "False"' /etc/X11/xorg.conf should be template ... what is this for ??


    else i need to agree with gda - if we get information and it can be integrated - i don't see an issue, if no information - no integration. tests can not be done by us - tester required. I can not discuss in a language , where i don't understand the language ;)

    VDR User: 87 - LaScala LC14B - LG/Phillipps 6,4" VGA Display | Asrock H61/U3S3 | G630T | 1x 16GB Mobi Mtron 3035 1x WD 750GB 2,5" |1x L4m DVB-S2 Version 5.4

  • It is only a patch to the dvb-s2-liplianin package. Should be not that hard. I don't expect that you will have many problems doing it, despite finding the right version of the driver.


    Gerald


    HP Proliant MicroServer Gen8, Xeon E3-1230, 12 GB RAM, 3xWD red 2TB im RAID 5, 2xSundtek MediaTV Home DVB-C/T, L4M TWIN-C/T, Ubuntu Server 14.04.1, Plex Media Server
    Samsung UE55H6470


  • If you could aply the patch to s2-liplianin that could be great.
    NETCEIVER is a multituner system with linux embeded in a flash memory ready to be used by a frontend. Maybe these links are useful:
    http://www.vdr-wiki.de/wiki/index.php/Netceiver
    http://wiki.reel-multimedia.com/index.php/NetCeiver


    Zitat


    - sed -i '40i\ Option "HWCursor" "False"' /etc/X11/xorg.conf
    sed -i '50i\ Option "DynamicTwinView" "False"' /etc/X11/xorg.conf should be template ... what is this for ??


    This is just for better apperance to me.


    Zitat

    else i need to agree with gda - if we get information and it can be integrated - i don't see an issue, if no information - no integration. tests can not be done by us - tester required. I can not discuss in a language , where i don't understand the language ;)


    Don't worry for a tester we are ready for everything you need.


    Regards:
    Marky.

  • Zitat

    Original von markrankin
    Don't worry for a tester we are ready for everything you need.


    Only to prevent a misunderstanding, we need nothing, it is you that need something. We have no use for this change. It depends on steffen_b wether he has the mood to do it anyway.


    My idea was that you do it yourself in the way I had posted before and you give us the source of the working package for inclusion in the distribution, but if steffen_b wants to do it for you, so what. I am only afraid that after this will come more change requests for the reelbox that are useless for us.


    Gerald


    HP Proliant MicroServer Gen8, Xeon E3-1230, 12 GB RAM, 3xWD red 2TB im RAID 5, 2xSundtek MediaTV Home DVB-C/T, L4M TWIN-C/T, Ubuntu Server 14.04.1, Plex Media Server
    Samsung UE55H6470

  • Zitat

    Originally posted by gda


    Only to prevent a misunderstanding, we need nothing, it is you that need something. We have no use for this change. It depends on steffen_b wether he has the mood to do it anyway.


    I'm sorry if I've told something wrong but I think is a problem of understanding. I apologize if you understood that you need our help. I was just trying to say that we are here to do as a betatester if you could think this could happen. In Spain "we are ready for everything you need" means gratefull for something and if the other part demand something from you, with that phrase express to him you're ready for that. I apologize again if I expressed wrong.


    Zitat

    My idea was that you do it yourself in the way I had posted before and you give us the source of the working package for inclusion in the distribution, but if steffen_b wants to do it for you, so what. I am only afraid that after this will come more change requests for the reelbox that are useless for us.
    Gerald


    Ok, no problem, but I thought like the fathers of the creature you will know better how to do it and easier way as well.


    We come from DREAMBOX scene. Some of us are trying to build a REELBOX joining separate electronic pieces and building by our own, just for fun. Regarding information about compiling VDR I found the site yaVDR and this project. I tested it and I realized that was a great idea to get it into our "hand-made" reelbox.


    We are very sorry again if the contact to you has dissapointed you. If thats the thing, please let us know and won't happen again.


    Thanks in advance:
    Marky.

  • Zitat

    Original von markrankin
    We are very sorry again if the contact to you has dissapointed you. If thats the thing, please let us know and won't happen again.


    Sorry if I was a little bit harsh. Steffen_b is currently looking into the issue, so give him a little bit time.


    Gerald


    HP Proliant MicroServer Gen8, Xeon E3-1230, 12 GB RAM, 3xWD red 2TB im RAID 5, 2xSundtek MediaTV Home DVB-C/T, L4M TWIN-C/T, Ubuntu Server 14.04.1, Plex Media Server
    Samsung UE55H6470

  • Zitat

    Originally posted by gda


    Sorry if I was a little bit harsh. Steffen_b is currently looking into the issue, so give him a little bit time.


    Gerald


    OK Gerald. Thank you very much. We keep in contact then.


    Best regards:
    Marky.


    P.S. I've sent you a private.

  • Zitat

    Originally posted by markrankin
    Don't worry for a tester we are ready for everything you need.


    me too :)

    produktiv: intel dh67bl, sat>ip, octopusnet, 16gig boot-ssd, yavdr 0.6.1, cir lirc
    testing: zotac ion-f itx, 1x tt s2-3600 usb, 8gig boot-ssd, yavdr 0.5 testing
    tv: samsung 75" amp:denon avr-x1300

  • To be very honest: I don't care much about it - i wont go fetching informations from the different places, put something together which i can't test and wouldn't even like to have (except netceiver maybe :D ) . if its something like uploading s2-liplianin with another patch - thats easy and doesn't harm - if something else is required and doesn't harm provide the information and we will see.

    VDR User: 87 - LaScala LC14B - LG/Phillipps 6,4" VGA Display | Asrock H61/U3S3 | G630T | 1x 16GB Mobi Mtron 3035 1x WD 750GB 2,5" |1x L4m DVB-S2 Version 5.4

  • Zitat

    Originally posted by steffen_b
    To be very honest: I don't care much about it - i wont go fetching informations from the different places, put something together which i can't test and wouldn't even like to have (except netceiver maybe :D ) . if its something like uploading s2-liplianin with another patch - thats easy and doesn't harm - if something else is required and doesn't harm provide the information and we will see.


    i can easily unterstand your point of you, and truely agree. adding support for hardware that you don't own, doesn't only make no sense for you personally, but even worse, makes debugging impossible.


    i think i will try instructions from the spanish site, and see how far it will take me, and then make .debs which you may add to your repo. maybe ... as even for me, having the hardware in place, this is far from easy. if someone would like to join me, i'd be more than happy.

    produktiv: intel dh67bl, sat>ip, octopusnet, 16gig boot-ssd, yavdr 0.6.1, cir lirc
    testing: zotac ion-f itx, 1x tt s2-3600 usb, 8gig boot-ssd, yavdr 0.5 testing
    tv: samsung 75" amp:denon avr-x1300

    Einmal editiert, zuletzt von izeman ()

  • i have uploaded new s2-liplianin packages where the dvb-loop modul is included. I could also easily provide a dvb-loop only package - provided someone provides a matching .config for the required modules.

    VDR User: 87 - LaScala LC14B - LG/Phillipps 6,4" VGA Display | Asrock H61/U3S3 | G630T | 1x 16GB Mobi Mtron 3035 1x WD 750GB 2,5" |1x L4m DVB-S2 Version 5.4

  • Zitat

    Originally posted by izeman


    i can easily unterstand your point of you, and truely agree. adding support for hardware that you don't own, doesn't only make no sense for you personally, but even worse, makes debugging impossible.


    i think i will try instructions from the spanish site, and see how far it will take me, and then make .debs which you may add to your repo. maybe ... as even for me, having the hardware in place, this is far from easy. if someone would like to join me, i'd be more than happy.


    @ izeman


    I would like to help where possible, but unfortunately I have very little knowledge of programming :(


    I can help with what knowledege i do have from compiling and patching reelbox lite iso's and have a general idea of the source.


    @ steffen_b


    Thank you for adding this to the s2-liplianin package, I am not quite sure which .config you would like but AFAIK this can be copied from the relevant kernel.



    Please excuse me if I am looking for the wrong .config

Jetzt mitmachen!

Sie haben noch kein Benutzerkonto auf unserer Seite? Registrieren Sie sich kostenlos und nehmen Sie an unserer Community teil!