NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Public Kodi / XBMC v
« Previous 1 … 39 40 41 42 43 Next »
Linux Testing

 
  • 0 Vote(s) - 0 Average
Linux Testing
BrainStormer
Offline

Senior Member

Posts: 544
Threads: 38
Joined: Oct 2005
#21
2012-09-26, 09:27 PM
I'm using Frodo (v12) on my RPi.

on my RaspBMC one this is the error in the XBMC log:

Code:
14:11:48 T:1182696512   ERROR: ADDON: Dll NextPVR PVR Client - Client returned bad status (4) from Create and is not usable
14:11:48 T:1182696512    INFO: Called Add-on status handler for '4' of clientName:NextPVR PVR Client, clientID:pvr.nextpvr (same Thread=no)

Got any ideas on whats causing this?
Intel i5 3.2Ghz Quad Core, Windows 10 Pro 64Bit
12 GB RAM, Gigabit LAN,3TB SATA HD 8MB Cache Dedicated Recording Drive
SiliconDust Prime, PCH A-100 & C-200, Chromecast, FireTV
Raspberry Pi 3 Running OSMC, Samsung Smart TV UN32H5201AF
Cable Provider: Comcast in Oregon, USA
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,708
Threads: 767
Joined: Nov 2003
#22
2012-09-26, 10:40 PM
I cant tell exactly what's causing it, but I know the general area. You might need to edit the client.cpp in addon, and change the ADDON_Create() create function to return some different values for the different conditions. It has several XBMC-ish things, which could return ADDON_STATUS_UNKNOWN (4).

Code:
ADDON_STATUS ADDON_Create(void* hdl, void* props)
{
  if (!hdl || !props)
    return ADDON_STATUS_UNKNOWN;
  
  PVR_PROPERTIES* pvrprops = (PVR_PROPERTIES*)props;

  XBMC = new CHelper_libXBMC_addon;
  if (!XBMC->RegisterMe(hdl))
  {
    SAFE_DELETE(XBMC);
    return ADDON_STATUS_UNKNOWN;
  }

  PVR = new CHelper_libXBMC_pvr;
  if (!PVR->RegisterMe(hdl))
  {
    SAFE_DELETE(PVR);
    SAFE_DELETE(XBMC);
    return ADDON_STATUS_UNKNOWN;
  }
<snip>
You might need to temporarily change these to return different values so we can tell which one is failing.
BrainStormer
Offline

Senior Member

Posts: 544
Threads: 38
Joined: Oct 2005
#23
2012-09-26, 10:46 PM
It could also be RaspBMC is running an older alpha.. will check on that,

Even though the Openelec version works there are a lot of sql errors.

Logs attached:
Intel i5 3.2Ghz Quad Core, Windows 10 Pro 64Bit
12 GB RAM, Gigabit LAN,3TB SATA HD 8MB Cache Dedicated Recording Drive
SiliconDust Prime, PCH A-100 & C-200, Chromecast, FireTV
Raspberry Pi 3 Running OSMC, Samsung Smart TV UN32H5201AF
Cable Provider: Comcast in Oregon, USA
wileecoyote
Offline

Member

Posts: 121
Threads: 9
Joined: Sep 2012
#24
2012-09-27, 03:41 PM
I think I am going to give up on this venture. I found that my initial issue was I needed to run sudo apt-get install dh-autoreconf, but now I get errors on the 'make' from the pvr.mediaportal.tvserver project "libsmbclient.h" file or folder not found. I tried removing the include from the FileSMB.cpp file but that opened another can of worms.

I think I will just wait for someone to create a package. Smile
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,708
Threads: 767
Joined: Nov 2003
#25
2012-09-27, 04:25 PM
Yeah I understand. If you wanted to give it one more try, you could try editing Addons\Makefile.am, and delete the lines for the other pvr addons like pvr.mediaportal.tvserver, then back to the root and rerun ./bootstrap ./configure and make install.
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 52,940
Threads: 956
Joined: May 2006
#26
2012-09-27, 05:17 PM
Because of the state of Frodo right now, building for linux is a pain. I run XBMC linux on OpenElec on my ION, GeeXBox on my Cubox and davilla's custom work on my Pivos XS and they all use a different flavour of post-Eden. The unification process is going to make this so much easier, I really hope the request to merge https://github.com/opdenkamp/xbmc-pvr-addons/pull/33 takes place sooner then later.

Martin
wileecoyote
Offline

Member

Posts: 121
Threads: 9
Joined: Sep 2012
#27
2012-09-27, 05:35 PM
mvallevand Wrote:I really hope the request to merge https://github.com/opdenkamp/xbmc-pvr-addons/pull/33 takes place sooner then later.
Martin

I agree, I would like to start adding some information on NextPVR in the WiKi, but Im afraid its too soon and it will confuse people Sad
wileecoyote
Offline

Member

Posts: 121
Threads: 9
Joined: Sep 2012
#28
2012-09-27, 05:36 PM
sub Wrote:Yeah I understand. If you wanted to give it one more try, you could try editing Addons\Makefile.am, and delete the lines for the other pvr addons like pvr.mediaportal.tvserver, then back to the root and rerun ./bootstrap ./configure and make install.

Was there another change to make, something about the tinyxml.h include?
wileecoyote
Offline

Member

Posts: 121
Threads: 9
Joined: Sep 2012
#29
2012-09-27, 05:57 PM
sub Wrote:that tinyxml line? Yeah, its odd. I think it should have been like the Windows include, but for some reason I needed to do that slight Linux change to get it to build on my Ubuntu VM. I'm not sure why. I'll probably just change it in the way you suggested.

Can you point out the thread referred to on the tinyxml change?
BrainStormer
Offline

Senior Member

Posts: 544
Threads: 38
Joined: Oct 2005
#30
2012-09-27, 06:36 PM
wileecoyote Wrote:Can you point out the thread referred to on the tinyxml change?

Line 33 in pvrclient-nextpvr.cpp

#include "tinyxml/tinyxml.h"
Intel i5 3.2Ghz Quad Core, Windows 10 Pro 64Bit
12 GB RAM, Gigabit LAN,3TB SATA HD 8MB Cache Dedicated Recording Drive
SiliconDust Prime, PCH A-100 & C-200, Chromecast, FireTV
Raspberry Pi 3 Running OSMC, Samsung Smart TV UN32H5201AF
Cable Provider: Comcast in Oregon, USA
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

Pages (6): « Previous 1 2 3 4 5 6 Next »


Possibly Related Threads…
Thread Author Replies Views Last Post
  Kodi add-on not working (linux) Oempa 8 1,331 2023-07-30, 07:30 PM
Last Post: mvallevand
  Can I install Kodi and NextPVR (for testing) on a live WMC machine? markhamil94 1 1,451 2021-02-23, 11:14 AM
Last Post: Graham
  Issues with xbmc on linux and NPVR plugin playing fm channels tuxman 0 1,996 2014-12-20, 07:38 PM
Last Post: tuxman
  Download latest linux build of NPVR addon (for RPi) wheeliemonster 5 3,640 2014-09-05, 02:38 AM
Last Post: JavaWiz
  Linux noob bassic 3 2,417 2014-04-14, 09:34 PM
Last Post: CaptainQuack
  XBMC on Linux Mint Reddwarf 8 3,657 2013-05-23, 07:38 PM
Last Post: Reddwarf
  XBMC with Linux Mint and NPVR baj1 0 3,477 2013-03-12, 03:57 AM
Last Post: baj1

  • View a Printable Version
  • Subscribe to this thread
Forum Jump:

© Designed by D&D, modified by NextPVR - Powered by MyBB

Linear Mode
Threaded Mode