User(s) browsing this thread: 1 Guest(s)
|
[200] Developing Apps for C200
|
|
09-09-2009, 01:09 PM
|
|||
|
|||
|
RE: Developing Apps for C200
Well, its beta, not sure it should play dvds yet, but definitely strange it can not play them over NFS.
Could be talking to OSX nfsd maybe, my gb switch maybe.. Code: ./ethtool eth0Only strange thing is the "errors:" |
|||
|
09-09-2009, 02:13 PM
(This post was last modified: 09-09-2009 02:16 PM by OwL.)
|
|||
|
|||
|
RE: Developing Apps for C200
The errors part is probably why NFS did not work out.. try mounting NFS using TCP instead of the default UDP (using -o tcp when mounting, causing resend of erroneous packets)... then your NFS will probably work... but... Now we need to investigate why you get so many errors....
Edit: Lets hope it's not a broken eth controller in your PCH... I had a similar issue with NFS on my MythTV Frontend a while ago... turned out to be a damaged eth controller... switched it, and NFS worked again... Regards // R (09-09-2009 01:09 PM)lundman Wrote: Well, its beta, not sure it should play dvds yet, but definitely strange it can not play them over NFS. |
|||
|
09-09-2009, 02:14 PM
|
|||
|
|||
|
RE: Developing Apps for C200
Does using the nfs-tcp:// connect string make any difference?
Audio, video, disco - I hear, I see, I learn. Wiki. Wiki? Wiki! |
|||
|
09-10-2009, 07:29 AM
|
|||
|
|||
|
RE: Developing Apps for C200
If you have one try a 100mbs switch in between as gigabit seems to not be performing that well yet.
I'm using NFS from my Synology and funnily enough the mount is my test files that I have built up. A400: SSD+SD Card(Apps), HDMI A300: USB(Apps), HDMI C200: USB(Apps), BD SH-B083L(SB01), HDMI CAT6 Wired Network: TV TX-P42G20, HP ProCurve 1400-8G, Netgear GS-608/605, Synology CS407 |
|||
|
09-10-2009, 07:30 AM
|
|||
|
|||
|
RE: Developing Apps for C200
I have not had a problem with my gigabit switch yet. Works just fine.
|
|||
|
09-10-2009, 07:33 AM
|
|||
|
|||
|
RE: Developing Apps for C200
I didn't at first either, I got 15Mb/s and 12Mb/s via FTP and SMB. Now I get 9-10Mb/s and 10Mb/s respectively. It is something that they are aware of as those alpha testers with a gigabit connection suffered similarly.
A400: SSD+SD Card(Apps), HDMI A300: USB(Apps), HDMI C200: USB(Apps), BD SH-B083L(SB01), HDMI CAT6 Wired Network: TV TX-P42G20, HP ProCurve 1400-8G, Netgear GS-608/605, Synology CS407 |
|||
|
09-10-2009, 07:35 AM
|
|||
|
|||
RE: Developing Apps for C200
(09-10-2009 07:33 AM)chris57 Wrote: I didn't at first either, I got 15Mb/s and 12Mb/s via FTP and SMB. Now I get 9-10Mb/s and 10Mb/s respectively. It is something that they are aware of as those alpha testers with a gigabit connection suffered similarly. Could also be switch type. I have a $$$$ switch that handles traffic control better then most. I never had a problem with my a110 on the switch either. |
|||
|
09-10-2009, 07:43 AM
|
|||
|
|||
|
RE: Developing Apps for C200
I dont think its a switch issue, most probably firmware, how is computer to computer through the switch? 10Mb/s? if so faulty switch which ever brand.
|
|||
|
09-10-2009, 08:05 AM
|
|||
|
|||
|
RE: Developing Apps for C200
It happens across brands but I do not want to take this thread totally off topic and it is beta firmware and a big priority to improve, so they are on it. I was just suggesting that as there are issues to be fixed with gigabit putting a 100mbs switch in may help resolve the rrors in the meantime and perhaps help target what the problem lies. Just trying to be helpful.
Back to hacking in to the box please. A400: SSD+SD Card(Apps), HDMI A300: USB(Apps), HDMI C200: USB(Apps), BD SH-B083L(SB01), HDMI CAT6 Wired Network: TV TX-P42G20, HP ProCurve 1400-8G, Netgear GS-608/605, Synology CS407 |
|||
|
09-10-2009, 08:05 AM
|
|||
|
|||
|
RE: Developing Apps for C200
8MB/s FTP to c200, adn 11mb/s from. Which makes me think it's at 100mb/s. I'll double check whats going on when I get home, but even at 7mb/s, it should play DVDs perfectly.
|
|||
|
09-10-2009, 08:11 AM
|
|||
|
|||
|
RE: Developing Apps for C200
FTP I get 17MB/s. and Through llink on a fast forward of x264 1080p I hit 8MB/s
|
|||
|
09-10-2009, 08:30 AM
|
|||
|
|||
|
RE: Developing Apps for C200
Well I've just been grovelling around under the table to get to my gigabit switch when I realised that I had forgot to place my NAS on the switch rather than straight into my 100mbs router port. Whilst plugging it into the switch I noticed that the C200 cable has worked slightly loose. Firmly seating it has jumped my FTP speed back to 14MB/s. 9 times out of 10 it's always the things you discount that cause the problems.
A400: SSD+SD Card(Apps), HDMI A300: USB(Apps), HDMI C200: USB(Apps), BD SH-B083L(SB01), HDMI CAT6 Wired Network: TV TX-P42G20, HP ProCurve 1400-8G, Netgear GS-608/605, Synology CS407 |
|||
|
09-10-2009, 09:10 AM
|
|||
|
|||
|
RE: Developing Apps for C200
Anyone found a better way to use their toolchain but specifying -EL for little endian? I have come across a few piece of software that don't use *FLAGS variables or similar, and it is a bit of a pain. I was hoping I could just make symlinks with mipsel- names, but it is not THAT dynamic.
At the moment, I use this compile line which works most of the time: Code: ./configure --host=mips-linux-gnu CFLAGS=-EL CXXFLAGS=-EL LDFLAGS=-EL CPPFLAGS=-EL ASFLAGS=-EL CC="mips-linux-gnu-gcc -EL"The last one was needed for something that used libtool to create a shared library, but ditching CFLAGS. Eventually, I'll just break down and compile a mipsel tool chain, cos this is a pain
|
|||
|
09-10-2009, 06:35 PM
(This post was last modified: 09-10-2009 06:41 PM by journey4712.)
|
|||
|
|||
|
RE: Developing Apps for C200
i found the -EL to go missing sometimes when using libtool, quite annoying. Good suggestion on adjusting CC to include that flag, i opened up libtool and added it by hand to the "archive_cmds" variable. With the codesourcery you can also use -march=74kc which i think is the right target(c200 reports sigma designs tangoX MIPS 74K V4.9 FPU V0.0) and should encourage gcc to order the assembly for best performance on the C200. Not sure what the trailing c represents though.
journey4712 Automated TV Downloads | On-Demand Network Shares | Faster PHP (lighttpd+fastcgi+apc) PCH-A100 | PCH-C200 | XBMC HTPC | Sharp Aquos 42D62U | Logitech Z-5500 |
|||
|
09-22-2009, 08:00 PM
(This post was last modified: 09-22-2009 08:01 PM by Ger Teunis.)
|
|||
|
|||
|
RE: Developing Apps for C200
I've added this Lundmans' shell to CSI for C200:
http://www.networkedmediatank.com/showth...?tid=27251 Just install it using CSI and use nc (netcat) to start the shell. More instructions after installation. Windows users: use netcat for windows: http://www.securityfocus.com/tools/139 Easy way of installing software on your NMT using just your mouse: NMT Community Software Installer |
|||
|
« Next Oldest | Next Newest »
|

Twitter
Facebook
NMT Wiki
Search
Member List
Help
A-400 [13 May 2013]






![[+]](images/collapse_collapsed.gif)




