Re: wrong offset of mouse in landscape mode (and scummvm)

2008-08-06 Thread Dale Maggee
Mike Montour wrote:
> Dale Maggee wrote:
>
>   
>> /bin/sh: /usr/bin/scummvm: not found
>>
>> which is very odd, because I can type "/usr/bin/scum[TAB]", and it 
>> autocompletes to scummvm. the file is marked as executable. I can't see 
>> anything wrong.
>>
>> does anyone have any Ideas?
>> 
>
> For binaries this may indicate an OABI/EABI issue. There are different 
> binary formats for ARM; Openmoko now uses EABI but binaries built for 
> other platforms may be OABI. If you have binutils you can run "readelf 
> -l " and look for the "Requesting program interpreter:" line.
>
> If it's a shell script, then it may be a similar problem with the 
> command interpreter, e.g. if the script's first line is "#!/bin/bash" 
> but you do not have /bin/bash installed.
>
> p.s. I just checked the wiki page that was mentioned up-thread, and it 
> looks like it's pointing to an old package from the "2007.1" days when 
> Openmoko was using OABI binaries. There's a bitbake recipe for scummvm 
> in OE so it should be easy to build an updated package if there's not 
> one already available in the feeds.
>
>
> ___
> Openmoko community mailing list
> community@lists.openmoko.org
> http://lists.openmoko.org/mailman/listinfo/community
>
>   

installed binutils,  [Requesting program interpreter: /lib/ld-linux.so.2]

/lib/ld-linux.so.2 doesn't exist. tried symlinking it to 
/lib/ld-linux.so.3, but this gave me a pile of other errors about 
missing .so files, so I'd say you're on the right track.

looks like tomorrow's project will be setting up the mokomakefile, and 
trying to compile scummvm.

thanks!




___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: wrong offset of mouse in landscape mode (and scummvm)

2008-08-06 Thread arne anka
> /bin/sh: /usr/bin/scummvm: not found

what gives
file /usr/bin/scummvm
ldd /usr/bin/scummvm
ls -alF /usr/bin/scummvm
?

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: wrong offset of mouse in landscape mode (and scummvm)

2008-08-06 Thread Mike Montour
Dale Maggee wrote:

> /bin/sh: /usr/bin/scummvm: not found
> 
> which is very odd, because I can type "/usr/bin/scum[TAB]", and it 
> autocompletes to scummvm. the file is marked as executable. I can't see 
> anything wrong.
> 
> does anyone have any Ideas?

For binaries this may indicate an OABI/EABI issue. There are different 
binary formats for ARM; Openmoko now uses EABI but binaries built for 
other platforms may be OABI. If you have binutils you can run "readelf 
-l " and look for the "Requesting program interpreter:" line.

If it's a shell script, then it may be a similar problem with the 
command interpreter, e.g. if the script's first line is "#!/bin/bash" 
but you do not have /bin/bash installed.

p.s. I just checked the wiki page that was mentioned up-thread, and it 
looks like it's pointing to an old package from the "2007.1" days when 
Openmoko was using OABI binaries. There's a bitbake recipe for scummvm 
in OE so it should be easy to build an updated package if there's not 
one already available in the feeds.


___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: wrong offset of mouse in landscape mode (and scummvm)

2008-08-06 Thread Roland Mas
Dale Maggee, 2008-08-07 02:31:23 +1000 :

[...]

> I'm having exactly the same problem with scummVM as described above.
> Looking I found /usr/bin/scummvm, but trying to run it i get :
>
> /bin/sh: /usr/bin/scummvm: not found
>
> which is very odd, because I can type "/usr/bin/scum[TAB]", and it
> autocompletes to scummvm. the file is marked as executable. I can't
> see anything wrong.

This usually means a broken (or missing) interpreter.  If
/usr/bin/scummvm is a compiled binary, then the interpreter would be
libc6/ld.so, but I assume you'd have been bitten by that earlier...

Roland.
-- 
Roland Mas

Êtes vous sûr ? (O/N)
  -- Derniers mots d'un ordinateur

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: wrong offset of mouse in landscape mode (and scummvm)

2008-08-06 Thread Dale Maggee
Evan wrote:
> Is there more to the setup than meets the eye? the image setup isn't really 
> documented. i ended up downloading all the ipk files, and doing opkg install 
> on 
> them (with the scummvm ipk being installed last), and everything appeared 
> good 
> until i tried running scummvm.
>
> from the menu, the screen turned landscape for a second ,then turned back to 
> normal and nothing happened.
>
> i tried running it from the terminal (hoping to get a more detailed error 
> message) and got the following
> /usr/bin/openmoko-scummvm: line 10: scummvm: not found
>
> upon opening the openmoko-scummvm file in a text editor, i saw that it was 
> simply a shell script that was set to execute scummvm, for which i didn't see 
> a 
> binary. it looks like the scummvm_0.9.1.bb file could be useful, but i am not 
> having any luck getting that to do anything.
>
> are there any files i have to get that aren't on this page here?
> http://buildhost.automated.it/scummvm/
>
> Yorick Moko wrote:
> > at http://wiki.openmoko.org/wiki/Scummvm there is a pre-built image
> >
> > On Wed, Jul 30, 2008 at 4:25 PM, Iker Berasaluce <[EMAIL PROTECTED]> wrote:
> >   
> >> 2008/7/30 Evan <[EMAIL PROTECTED]>
> >> 
> >>> dumb question, but just out of curiousity, what version of scummvm are you
> >>> guys installing? is it one of the binary packages from the scummvm 
> >>> website?
> >>> i'm not sure what packaging formats the freerunner can handle, and wasn't
> >>> sure if it could take deb or rpm files, or which package i should download
> >>> (or if i'm on the completely wrong track and there is an opkg install
> >>> package for it). even if it isn't working perfect, i'd like to check it 
> >>> out.
> >>>   
> >> One of the first things I want to do when I get my FR is installing 
> >> scummvm,
> >> so I don't think its a dumb question and I'm interested in the answer too.
> >>
>   

I'm having exactly the same problem with scummVM as described above. 
Looking I found /usr/bin/scummvm, but trying to run it i get :

/bin/sh: /usr/bin/scummvm: not found

which is very odd, because I can type "/usr/bin/scum[TAB]", and it 
autocompletes to scummvm. the file is marked as executable. I can't see 
anything wrong.

does anyone have any Ideas?

Thanks,
-Dale

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: wrong offset of mouse in landscape mode (and scummvm)

2008-07-31 Thread Yorick Moko
at http://wiki.openmoko.org/wiki/Scummvm there is a pre-built image

On Wed, Jul 30, 2008 at 4:25 PM, Iker Berasaluce <[EMAIL PROTECTED]> wrote:
>
>
> 2008/7/30 Evan <[EMAIL PROTECTED]>
>>
>> dumb question, but just out of curiousity, what version of scummvm are you
>> guys installing? is it one of the binary packages from the scummvm website?
>> i'm not sure what packaging formats the freerunner can handle, and wasn't
>> sure if it could take deb or rpm files, or which package i should download
>> (or if i'm on the completely wrong track and there is an opkg install
>> package for it). even if it isn't working perfect, i'd like to check it out.
>
> One of the first things I want to do when I get my FR is installing scummvm,
> so I don't think its a dumb question and I'm interested in the answer too.
>
> --
> Iker Berasaluce
> Departamento de Informatica
> Fulcrum SA
>
> ___
> Openmoko community mailing list
> community@lists.openmoko.org
> http://lists.openmoko.org/mailman/listinfo/community
>
>

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: wrong offset of mouse in landscape mode (and scummvm)

2008-07-30 Thread Iker Berasaluce
2008/7/30 Evan <[EMAIL PROTECTED]>

>  dumb question, but just out of curiousity, what version of scummvm are you
> guys installing? is it one of the binary packages from the scummvm website?
> i'm not sure what packaging formats the freerunner can handle, and wasn't
> sure if it could take deb or rpm files, or which package i should download
> (or if i'm on the completely wrong track and there is an opkg install
> package for it). even if it isn't working perfect, i'd like to check it out.
>
>
One of the first things I want to do when I get my FR is installing scummvm,
so I don't think its a dumb question and I'm interested in the answer too.

-- 
Iker Berasaluce
Departamento de Informatica
Fulcrum SA
___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: wrong offset of mouse in landscape mode (and scummvm)

2008-07-30 Thread Evan




dumb question, but just out of curiousity, what version of scummvm are
you guys installing? is it one of the binary packages from the scummvm
website? i'm not sure what packaging formats the freerunner can handle,
and wasn't sure if it could take deb or rpm files, or which package i
should download (or if i'm on the completely wrong track and there is
an opkg install package for it). even if it isn't working perfect, i'd
like to check it out.

Yorick Moko wrote:

  Be warned though Robert that when the screen is rotated, rotating it
back does not restore everything like it schould. You will have to
reboot your FreeRunner then.

I also found a way to get the cursor to display where I click, the
only problem is that when I get too close to the mic-side of the phone
the offset is again introduced automatically. All very strange.

Forthermore: I tested monkey island 2 and it works great!
Only problem is that in this version of scummvm for the freerunner
there is not yet an "esc" button, so I had to ssh in the phone to quit
the game.


btw: nice work (kobedeluxe)

On Sun, Jul 27, 2008 at 9:00 AM, Robert Schuster <[EMAIL PROTECTED]> wrote:
  
  
Hi,
this might not fit the topic but there is something which caught my eye:

Yorick Moko schrieb:


  [...] except that is automatically launches in landscape mode. [...]
  

Do you know how this is achieved? I would like to have this for Kobo
deluxe as well.

Regards
Robert


___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community



  
  
___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community

  





___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: wrong offset of mouse in landscape mode (and scummvm)

2008-07-27 Thread Yorick Moko
Be warned though Robert that when the screen is rotated, rotating it
back does not restore everything like it schould. You will have to
reboot your FreeRunner then.

I also found a way to get the cursor to display where I click, the
only problem is that when I get too close to the mic-side of the phone
the offset is again introduced automatically. All very strange.

Forthermore: I tested monkey island 2 and it works great!
Only problem is that in this version of scummvm for the freerunner
there is not yet an "esc" button, so I had to ssh in the phone to quit
the game.


btw: nice work (kobedeluxe)

On Sun, Jul 27, 2008 at 9:00 AM, Robert Schuster <[EMAIL PROTECTED]> wrote:
> Hi,
> this might not fit the topic but there is something which caught my eye:
>
> Yorick Moko schrieb:
>> [...] except that is automatically launches in landscape mode. [...]
> Do you know how this is achieved? I would like to have this for Kobo
> deluxe as well.
>
> Regards
> Robert
>
>
> ___
> Openmoko community mailing list
> community@lists.openmoko.org
> http://lists.openmoko.org/mailman/listinfo/community
>
>

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: wrong offset of mouse in landscape mode (and scummvm)

2008-07-27 Thread Robert Schuster
Hi,
this might not fit the topic but there is something which caught my eye:

Yorick Moko schrieb:
> [...] except that is automatically launches in landscape mode. [...]
Do you know how this is achieved? I would like to have this for Kobo
deluxe as well.

Regards
Robert



signature.asc
Description: OpenPGP digital signature
___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


wrong offset of mouse in landscape mode (and scummvm)

2008-07-26 Thread Yorick Moko
I installed scummvm on the FreeRunner (fully updated ASU image) and it
runs nicely, except that is automatically launches in landscape mode.
And due to http://docs.openmoko.org/trac/ticket/1244 I can't even
click on the "add game" button.
Is there any work being done concerning this bug? To me changing the
cursor offset seems pretty trivial but apparently it isn't.

kind regards,
y

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community