XBMC Community Forum
Port XBMC for Linux to run on the ASUS O!Play (O'Play / OPlay) media player hardware? - Printable Version

+- XBMC Community Forum (http://forum.xbmc.org)
+-- Forum: Development (/forumdisplay.php?fid=32)
+--- Forum: Feature Suggestions (/forumdisplay.php?fid=9)
+--- Thread: Port XBMC for Linux to run on the ASUS O!Play (O'Play / OPlay) media player hardware? (/showthread.php?tid=58718)

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17


- micr0 - 2009-10-20 08:30

hijack204 Wrote:Try putting it in this file

/usr/local/etc/dvdplayer/script/run_tail

It's a no go. Rebooted system and didn't run it.


- nonoitall - 2009-10-20 10:14

Anyone know if the O!Play can handle XviD streams that use GMC?


XBMC for Asus O!Play - tomrwaller - 2009-10-21 17:44

Hi everyone,

I have just picked up an Asus O!Play and was wandering if there were any plans for a port of XBMC for it?

The device looks pretty powerful in that it can play a vast amount of containers, shame the GUI is a bit rubbish.

I think an XBMC port would make this unit shine!

Cheers.

Tom.


- hijack204 - 2009-10-22 05:36

Already a thread on this:

http://www.xbmc.org/forum/showthread.php?t=58718


- fpm1703 - 2009-10-22 06:26

nonoitall Wrote:Anyone know if the O!Play can handle XviD streams that use GMC?

Tried it with F/W 1.11N and got "Unsupported GMC" message on screen.


- Koenradus - 2009-10-22 08:21

micr0 Wrote:It's a no go. Rebooted system and didn't run it.

Or add it to the rcS file in /usr/local/etc
Be careful that when you have optware on an external drive you have to wait for it to become mounted otherwise it won't work. Do a x second sleep before you perform other commands.


- sircube - 2009-10-22 10:44

Interesting thread but I just can't imagine you to run XBMC on a 400MHz MIPS CPU as some forum members hope for...


- chevi - 2009-10-23 10:50

Hi guys,
I was wondering if you could lend me a hand, I´m trying to install optware.
First, I have a doubt, I tried:

cd /usr/local/etc
mkdir opt
ln -s /tmp/usbmounts/sda5/ opt

being sda5 the secondary NTFS partition of the usb attached hard drive. Then
cd opt
ls -l
And there I see a folder sda5, is this correct?
mkdir tmp
But I see no /opt/tmp or /tmp in /tmp/usbmounts/sda5/

Am I doing something wrong, or just getting it wrong? (totally newbie btw Laugh) I have little space free and I wouldn´t like to kill my O!Play installing optware xD.

Also tried next step:

wget http://www.kovari.priv.hu/download/ipkg-cl.tgz
tar -xvf ipkg-cl.tgz

And it downloads the file but size is crearly wrong (3920) and tar says invalid tar magic, so I tried downloading it directly with the PC and it´s a lot bigger and 7zip opens it without a problem.


- yeahhh - 2009-10-23 18:33

Hello I am a user from Spain and my English is google :-D
I have a asus o! play and would like to see http flow that comes from a Siemens M750 is possible to launch a dvdplayer command or other binary to see him on screen?

Thank you.


- Koenradus - 2009-10-24 19:13

For those of you who were scared by the stories of bricking your O!Play and decided to install optware on a USB drive: I figured out how to do that today. I had to reinstall optware anyway, because I updated my firmware. It isn't straightforward to install to USB drive because the USB drive needs to be formatted to support symlinks. Here is the full list of commands:

WARNING: YOUR USB-DRIVE WILL BE FORMATTED WHEN CREATING THE NEW FILEFORMAT!

Code:
mount / -o remount,rw

mkdir /opt

mke2fs -j -M /opt -L opt /dev/discs/disc0/part1
mount /dev/discs/disc0/part1 /opt

mkdir /opt/tmp
mkdir /opt/tmp/ipkg

cd /opt/tmp

wget http://www.kovari.priv.hu/download/ipkg-cl.tgz
tar -xvf ipkg-cl.tgz
mv /opt/tmp/ipkg-cl /usr/local/bin/
rm ipkg-cl.tgz

wget http://ipkg.nslu2-linux.org/feeds/optware/oleg/cross/stable/uclibc-opt_0.9.28-13_mipsel.ipk
ipkg-cl install uclibc-opt_0.9.28-13_mipsel.ipk

wget http://ipkg.nslu2-linux.org/feeds/optware/oleg/cross/stable/ipkg-opt_0.99.163-10_mipsel.ipk
ipkg-cl install ipkg-opt_0.99.163-10_mipsel.ipk

rm *.ipk

/opt/bin/ipkg update

This way only ipkg-cl will be installed to the O!Play, all other files will be installed to the USB drive, avoiding bricking due to filling of internal HD.