OpenElec VNSI4 test builds (Gotham & Frodo)
#16
Thanks for info charlie.. wouldt have recognized that because he only did compile with vnsi3 before.. will try out today after work.
Reply
#17
Just to be clear, the pi build is here:

http://forum.xbmc.org/showthread.php?tid...pid1406640

I think its the only build he did (mentions) with vnsi4
Guide to building an all in one Ubuntu Server - TV(vdr),File,Music,Web

Server Fractal Designs Define XL, Asus P5QL/EPU, Dual Core E5200, 4gb, L4M-Twin S2 v6.2, Supermicro AOC-USAS-L8I, 1*SSD & 13*HDD drives (24TB total) - Ubuntu Server
XBMC 1 ASRock Z77E-ITX, G850, 8GB RAM, SSD, BD - Ubuntu / OpenElec frodo
XBMC 2 Revo 3700 - OpenElec frodo
XBMC 3 Raspb Pi
Reply
#18
Ive tried out that one and ive encountered only some slight problems. When starting a channel from channellist with stopped playback i got one black screen. When switching around everything worked flawless. I also couldnt reproduce that blackscreen-issue. Happend only one time in the morning. I hope rbej is compiling the build with vnsi4 everytime. the featurelist of vnsi4 makes vnsi3 kind of "outdated" :-)
Reply
#19
Were all waiting for opdenkamp to merge vnsi4 into the pvr-addons
Guide to building an all in one Ubuntu Server - TV(vdr),File,Music,Web

Server Fractal Designs Define XL, Asus P5QL/EPU, Dual Core E5200, 4gb, L4M-Twin S2 v6.2, Supermicro AOC-USAS-L8I, 1*SSD & 13*HDD drives (24TB total) - Ubuntu Server
XBMC 1 ASRock Z77E-ITX, G850, 8GB RAM, SSD, BD - Ubuntu / OpenElec frodo
XBMC 2 Revo 3700 - OpenElec frodo
XBMC 3 Raspb Pi
Reply
#20
Hey charlie, will there be any newer openelec-builds with vnsi4 for RPi?
Rbej is focused on Frodo-Builds without the nice features of vnsi4.
Reply
#21
Will try and do one this wknd for you
Guide to building an all in one Ubuntu Server - TV(vdr),File,Music,Web

Server Fractal Designs Define XL, Asus P5QL/EPU, Dual Core E5200, 4gb, L4M-Twin S2 v6.2, Supermicro AOC-USAS-L8I, 1*SSD & 13*HDD drives (24TB total) - Ubuntu Server
XBMC 1 ASRock Z77E-ITX, G850, 8GB RAM, SSD, BD - Ubuntu / OpenElec frodo
XBMC 2 Revo 3700 - OpenElec frodo
XBMC 3 Raspb Pi
Reply
#22
Thats cool. thanks for your help. tried it myself but with not so much luck..
Reply
#23
here you go:

new Rpi build here - again untested but it compiled fine.
Guide to building an all in one Ubuntu Server - TV(vdr),File,Music,Web

Server Fractal Designs Define XL, Asus P5QL/EPU, Dual Core E5200, 4gb, L4M-Twin S2 v6.2, Supermicro AOC-USAS-L8I, 1*SSD & 13*HDD drives (24TB total) - Ubuntu Server
XBMC 1 ASRock Z77E-ITX, G850, 8GB RAM, SSD, BD - Ubuntu / OpenElec frodo
XBMC 2 Revo 3700 - OpenElec frodo
XBMC 3 Raspb Pi
Reply
#24
@charlie0440
could you post your compile settings/commands that we can compile our own versions (branch pull request ...)?
Reply
#25
@Namerp sure its good to have it documentated as it had been so long I couldn't remember what to do earlier!

Here goes for gotham (for frodo you need to change the frodo files instead and not build against master). This is from a fresh clone with no previous BUILDS!

1) clone openelec git

Code:
git clone git://github.com/OpenELEC/OpenELEC.tv.git clonedOE

that will clone master if you wanted to clone another branch you would issue:

Code:
git clone --branch branchNameHere git://github.com/OpenELEC/OpenELEC.tv.git clonedOE

2) now we have to make some changes to this file "mkpkg_xbmc-pvr-addons" ie use fernets git and vnsi branch.
You can just delete this file and wget my one:

Code:
cd tools/mkpkg/
rm mkpkg_xbmc-pvr-addons
wget https://dl.dropboxusercontent.com/u/12367642/mkpkg_xbmc-pvr-addons
chmod a+x mkpkg_xbmc-pvr-addons

now run the script

Code:
./mkpkg_xbmc-pvr-addons

3) We now need to upload the tar.xz of xbmc-pvr-addons to a webserver ie Dropbox (I think this step can be skipped but I don't know how):

Code:
cd ../../sources/xbmc-pvr-addons/

You need to make a note of the URL where the file is uploaded to and the commit number within the file
ie xbmc-pvr-addons-00a56e9.tar.xz = commit 00a56e9

4) tell openelec to use our new tar.xz file (replace below with the correct filename/commit) :
Code:
nano xbmc-pvr-addons-00a56e9.tar.xz.url

delete the text in this file and paste the url. Save ( Ctrl + X )

Code:
nano ../../packages/mediacenter/xbmc-pvr-addons/meta

replace the PKG_VERSION with the commit you made a note of eg

Code:
if [ "$XBMC" = "master" ]; then
  PKG_VERSION="00a56e9"
fi

replace the PKG_URL with the URL of your tar.xz eg
Code:
PKG_URL="https://yourDropboxURL/xbmc-pvr-addons-00a56e9.tar.xz"

6) Build

Code:
cd ../../..

Using the above sets everthing up for gotham so you have to build with
PROJECT=RPi ARCH=arm XBMC=master make release

Wait many hours and then enjoyWink

I think that was everything. Please link to any new builds you make (especially the Generic ones for me)

If you found this useful, consider adding to my rep
Guide to building an all in one Ubuntu Server - TV(vdr),File,Music,Web

Server Fractal Designs Define XL, Asus P5QL/EPU, Dual Core E5200, 4gb, L4M-Twin S2 v6.2, Supermicro AOC-USAS-L8I, 1*SSD & 13*HDD drives (24TB total) - Ubuntu Server
XBMC 1 ASRock Z77E-ITX, G850, 8GB RAM, SSD, BD - Ubuntu / OpenElec frodo
XBMC 2 Revo 3700 - OpenElec frodo
XBMC 3 Raspb Pi
Reply
#26
Thanks for the quick help. Will try out that package right now.
Reply
#27
Thx trying later today. Build instructions are very rare these days Smile
Reply
#28
Ive tried out and the vnsi4-addon is not loading. Its getting marked as a bad addon and disabled. "unknown error"
Reply
#29
Its been a while since I made one of these builds. But I don't think I left anything out. I'll have a think. If fernetmenta reads this could you just confirm there has been no changes to xbmc/oe which would cause this not to install? I'm guessing its something I've done wrong compiling?
Guide to building an all in one Ubuntu Server - TV(vdr),File,Music,Web

Server Fractal Designs Define XL, Asus P5QL/EPU, Dual Core E5200, 4gb, L4M-Twin S2 v6.2, Supermicro AOC-USAS-L8I, 1*SSD & 13*HDD drives (24TB total) - Ubuntu Server
XBMC 1 ASRock Z77E-ITX, G850, 8GB RAM, SSD, BD - Ubuntu / OpenElec frodo
XBMC 2 Revo 3700 - OpenElec frodo
XBMC 3 Raspb Pi
Reply
#30
(2013-05-26, 20:45)PeaceMkr Wrote: Ive tried out and the vnsi4-addon is not loading. Its getting marked as a bad addon and disabled. "unknown error"

https://www.dropbox.com/sh/60lbplg4z413to2/klEBIQRAp1

Generic i386
OpenElec 6eadb8b70d (latest 27.05.13)
XBMC Gotham Master + VNSI4

------------EDIT--------------

Runs ok, but the VDR Client isn´t working because he wont fit to the new api.

Quote:ERROR: AddOnLog: VDR VNSI Client: Login - Protocol versions do not match
ERROR: ADDON: Dll VDR VNSI Client - Client returned bad status (1) from Create and is not usable
WARNING: UpdateAndInitialiseClients - failed to create add-on VDR VNSI Client, status = 1
NOTICE: Thread AddonStatus pvr.vdr.vnsi start, auto delete: true

If compiled the vdr-client-addon from source, also wont work :-)

The Client isn´t up-to-date, but i don´t know where a working versions is Sad
I also cant find the VDR GUI, maybe we need also the XBMC additions from FernetMenta (i lost long time ago the overview who is where what doing ... Wink )



(2013-04-03, 00:50)charlie0440 Wrote: OpenElec builds with VNSI are available for download from my dropbox:

https://www.dropbox.com/sh/57biit039oyxq2c/1flNEvl1U4

Gotham 32bit Generic build
vicbitter/OpenElec master git: 5e13077
XBMC Gotham alpha 3, git: 2ecbad7
PVR addons: fernets vnsi4 branch git: f905251

same problem Smile
Reply

Logout Mark Read Team Forum Stats Members Help
OpenElec VNSI4 test builds (Gotham & Frodo)1