NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Public NextPVR Other Clients Old Stuff (legacy) MVP & NMT MVPMC dongle v
« Previous 1 2 3 4 5 … 10 Next »
Config not loading

 
  • 0 Vote(s) - 0 Average
Config not loading
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 52,940
Threads: 956
Joined: May 2006
#11
2008-09-27, 12:18 AM
To use NFS to load the config file you still would need to compile the dongle. If you are looking at options with cygwin you could install a tftp server to serve dongle.bin.config

Martin
Khurram
Offline

Member

Posts: 112
Threads: 19
Joined: May 2008
#12
2008-09-27, 07:07 PM
mvallevand Wrote:To use NFS to load the config file you still would need to compile the dongle.

I mean an NFS mounted share. In this case, I shouldnt be needing to compile the dongle.

mvallevand Wrote:If you are looking at options with cygwin you could install a tftp server to serve dongle.bin.config

Is there a howto about it?

Thanks.
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 52,940
Threads: 956
Joined: May 2006
#13
2008-09-27, 07:34 PM
Sorry there is no how to on this other the stuff on the mvpmc wiki dealing with a real tftp server and I only support a guest share or any standard tftp server such as tftp32

The login script will not attempt to mount an nfs drive, it uses a totally different syntax command syntax.

Martin
Khurram
Offline

Member

Posts: 112
Threads: 19
Joined: May 2008
#14
2008-09-30, 08:25 AM
I followed the instructions in the developer docs for Ubuntu, downloaded the packages and changed the rcS according to your instructions. But running make mvpmc gives an error. The last few lines are:
Quote:make[4]: Leaving directory `/home/khurram/mvpmc/dongle/apps/djmount/mvp/djmount-0.71/djmount'
make[3]: Leaving directory `/home/khurram/mvpmc/dongle/apps/djmount/mvp/djmount-0.71/djmount'
make[3]: Entering directory `/home/khurram/mvpmc/dongle/apps/djmount/mvp/djmount-0.71'
make[3]: Nothing to be done for `all-am'.
make[3]: Leaving directory `/home/khurram/mvpmc/dongle/apps/djmount/mvp/djmount-0.71'
make[2]: Leaving directory `/home/khurram/mvpmc/dongle/apps/djmount/mvp/djmount-0.71'
make[1]: Leaving directory `/home/khurram/mvpmc/dongle/apps/djmount/mvp/djmount-0.71'
make: *** [mvp] Error 2

Btw, I sudo'd to root before running the first "git clone ...." command.
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 52,940
Threads: 956
Joined: May 2006
#15
2008-09-30, 09:30 AM
The command you want is

make mvp

Does that help?

Martin
Khurram
Offline

Member

Posts: 112
Threads: 19
Joined: May 2008
#16
2008-09-30, 10:52 AM
No, make mvp still gives an error but the last few lines are different:
Quote:test -z "/home/khurram/mvpmc/dongle/install/mvp/include/tremor" || /bin/mkdir -p "/home/khurram/mvpmc/dongle/install/mvp/include/tremor"
/usr/bin/install -c -m 644 'ivorbiscodec.h' '/home/khassan/mvpmc/dongle/install/mvp/include/tremor/ivorbiscodec.h'
/usr/bin/install -c -m 644 'ivorbisfile.h' '/home/khurram/mvpmc/dongle/install/mvp/include/tremor/ivorbisfile.h'
/usr/bin/install -c -m 644 'ogg.h' '/home/khurram/mvpmc/dongle/install/mvp/include/tremor/ogg.h'
/usr/bin/install -c -m 644 'os_types.h' '/home/khurram/mvpmc/dongle/install/mvp/include/tremor/os_types.h'
/usr/bin/install -c -m 644 'config_types.h' '/home/khurram/mvpmc/dongle/install/mvp/include/tremor/config_types.h'
make[2]: Leaving directory `/home/khurram/mvpmc/dongle/libs/Tremor/mvp/Tremor'
make[1]: Leaving directory `/home/khurram/mvpmc/dongle/libs/Tremor/mvp/Tremor'
make: *** [mvp] Error 2
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 52,940
Threads: 956
Joined: May 2006
#17
2008-09-30, 11:47 AM
The git make is multi-tasking so the last lines will not necessarily show the real error. Redirect stderr to a file with syntax 2> filename and if you can't figure it out, zip and attach the file and I will have a look. You are probably missing one of the dependencies for the make like bison or yacc.

Martin
Khurram
Offline

Member

Posts: 112
Threads: 19
Joined: May 2008
#18
2008-09-30, 01:29 PM
I have redirect stderr to output.txt and looked it over. There seems to be some error about libupnp. There is a libupnp2 and libupnp2-dev and I installed both. But still get the following error:
Quote:configure: WARNING: If you wanted to set the --build type, don't use --host.
If a cross compiler is detected then cross compile mode will be used.
/home/khurram/mvpmc/dongle/apps/busybox/mvp/busybox-1.1.3/coreutils/ls.c: In function `ls_main':
/home/khurram/mvpmc/dongle/apps/busybox/mvp/busybox-1.1.3/coreutils/ls.c:1178: warning: implicit declaration of function `dfree'
/home/khurram/mvpmc/dongle/apps/busybox/mvp/busybox-1.1.3/coreutils/stat.c: In function `do_stat':
/home/khurram/mvpmc/dongle/apps/busybox/mvp/busybox-1.1.3/coreutils/stat.c:485: warning: long unsigned int format, different type arg (arg 3)
/home/khurram/mvpmc/dongle/apps/busybox/mvp/busybox-1.1.3/coreutils/stat.c:485: warning: long unsigned int format, different type arg (arg 4)
/home/khurram/mvpmc/dongle/apps/busybox/mvp/busybox-1.1.3/coreutils/stat.c:485: warning: long unsigned int format, different type arg (arg 8)
/home/khurram/mvpmc/dongle/apps/busybox/mvp/busybox-1.1.3/coreutils/stat.c:485: warning: long unsigned int format, different type arg (arg 9)
/home/khurram/mvpmc/dongle/apps/busybox/mvp/busybox-1.1.3/coreutils/stat.c:512: warning: long unsigned int format, different type arg (arg 2)
/home/khurram/mvpmc/dongle/apps/busybox/mvp/busybox-1.1.3/coreutils/stat.c:512: warning: long unsigned int format, different type arg (arg 3)
/home/khurram/mvpmc/dongle/apps/busybox/mvp/busybox-1.1.3/coreutils/stat.c:512: warning: long unsigned int format, different type arg (arg 6)
/home/khurram/mvpmc/dongle/apps/busybox/mvp/busybox-1.1.3/coreutils/stat.c:512: warning: long unsigned int format, different type arg (arg 7)
/home/khurram/mvpmc/dongle/apps/busybox/mvp/busybox-1.1.3/coreutils/stat.c:512: warning: long unsigned int format, different type arg (arg 8)
/home/khurram/mvpmc/dongle/apps/busybox/mvp/busybox-1.1.3/modutils/rmmod.c: In function `rmmod_main':
/home/khurram/mvpmc/dongle/apps/busybox/mvp/busybox-1.1.3/modutils/rmmod.c:89: warning: passing arg 3 of `my_query_module' from incompatible pointer type
/home/khurram/mvpmc/dongle/apps/busybox/mvp/busybox-1.1.3/networking/ether-wake.c:247:3: warning: #warning Need to implement ether_hostton() for uClibc
configure: WARNING: If you wanted to set the --build type, don't use --host.
If a cross compiler is detected then cross compile mode will be used.
/home/khurram/mvpmc/dongle/apps/busybox/mvp/busybox-1.1.3/util-linux/mount_cifs.c: In function `mount_cifs_main':
/home/khurram/mvpmc/dongle/apps/busybox/mvp/busybox-1.1.3/util-linux/mount_cifs.c:653: warning: declaration of 'sysinfo' shadows a global declaration
/home/khurram/mvpmc/dongle/apps/busybox/mvp/busybox-1.1.3/include/libbb.h:239: warning: shadowed declaration is here
/bin/bash: libupnp/config.aux/config.rpath: No such file or directory
configure: WARNING: If you wanted to set the --build type, don't use --host.
If a cross compiler is detected then cross compile mode will be used.
/home/khurram/mvpmc/dongle/apps/busybox/mvp/busybox-1.1.3/coreutils/coreutils.a(nohup.o): In function `close_stdout':
/home/khurram/mvpmc/dongle/apps/busybox/mvp/busybox-1.1.3/coreutils/nohup.c:85: warning:
flashcp.c:258:2: warning: #warning "Check for smaller erase regions"
scons: *** [dongle/install/mvp/lib/libFLAC.a, dongle/install/mvp/include/FLAC/stream_decoder.h] None
src/genlib/net/http/httpparser.c: In function `is_control_char':
src/genlib/net/http/httpparser.c:182: warning: comparison is always true due to limited range of data type
src/uuid/uuid.c: In function `uuid_create_from_name':
src/uuid/uuid.c:307: warning: statement with no effect
src/uuid/uuid.c:308: warning: statement with no effect
src/uuid/uuid.c:309: warning: statement with no effect
src/uuid/uuid.c:340: warning: statement with no effect
src/uuid/uuid.c:341: warning: statement with no effect
src/uuid/uuid.c:342: warning: statement with no effect
make: *** [mvp] Error 2

I cant figure it out. Can you please take a look?

Thanks.
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 52,940
Threads: 956
Joined: May 2006
#19
2008-10-01, 02:10 AM
You shouldn't add any libraries to build mvpmc they get downloaded automatically.

Martin
Khurram
Offline

Member

Posts: 112
Threads: 19
Joined: May 2008
#20
2008-10-03, 07:34 PM
It downloaded a whole lot of stuff the first time I ran make mvp. But I keep on getting the error as in the post above.
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

Pages (3): « Previous 1 2 3 Next »


Possibly Related Threads…
Thread Author Replies Views Last Post
  NPVR v1.5.33 MVP loading MVPMC & Rolling Buffer steeb 24 21,211 2010-10-16, 08:56 PM
Last Post: steeb
  Loading mvpmc mvallevand 39 50,741 2009-03-01, 09:50 PM
Last Post: mvallevand
  config VLC? jasjol 12 12,952 2009-01-08, 10:15 PM
Last Post: mvallevand
  mvpmc config examples ggee 11 8,197 2008-05-01, 06:26 AM
Last Post: pz1
  dongle.bin.config options docs? paperchaser 5 3,266 2008-01-03, 05:50 PM
Last Post: mvallevand
  Name of dongle.bin.config? forzaKGB 9 4,652 2007-12-13, 11:28 PM
Last Post: mvallevand
  Trying to mount share with dongle.bin.config Rory 8 3,691 2007-11-08, 10:18 PM
Last Post: mvallevand
  dongle.bin.config - where from? onestar 1 1,765 2007-11-04, 03:35 AM
Last Post: mvallevand
  "new" mvp does not see dongle.bin.config fhmanas 10 5,276 2007-11-03, 02:43 PM
Last Post: fhmanas
  mvpmc config filename steveum 14 5,907 2007-10-20, 05:51 AM
Last Post: mvallevand

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

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

Linear Mode
Threaded Mode