Notices


Reply
Thread Tools
jflatt's Avatar
Posts: 534 | Thanked: 723 times | Joined on Oct 2009
#2161
Originally Posted by qiet72 View Post
Solved.

If any game seems to get stuck with "Initializing device unique ID", then check to make sure your bluetooth is on in the phone. I did an strace and also looked through the libsdlpre.so and found out that the messages tries to create a unique device id by reading /dev/random if it cannot get the id from the device bluetooth configuration and reading /dev/random is extremely slow.

Also strace revealed some invalid paths in /media/cryptofs - fixed it with symlinks.

qiet72.
The bluetooth code is for retrieving the device name (which is a user-entered field), not the device id. You should add those media/cryptofs paths to the wiki
 

The Following User Says Thank You to jflatt For This Useful Post:
Posts: 136 | Thanked: 14 times | Joined on Feb 2011
#2162
Originally Posted by qiet72 View Post
Solved.

If any game seems to get stuck with "Initializing device unique ID", then check to make sure your bluetooth is on in the phone. I did an strace and also looked through the libsdlpre.so and found out that the messages tries to create a unique device id by reading /dev/random if it cannot get the id from the device bluetooth configuration and reading /dev/random is extremely slow.

Also strace revealed some invalid paths in /media/cryptofs - fixed it with symlinks.

qiet72.
Could you help me with my problem?

http://talk.maemo.org/showthread.php?t=72463&page=2

I think mine is "application asked for device ID"
Maybe the problem is similar to yours?
 
Posts: 136 | Thanked: 14 times | Joined on Feb 2011
#2163
Also, is there anyway to get past level 60 in redneck vs alien?
The game suddenly delete my save when i reach level 60 or so
 
jflatt's Avatar
Posts: 534 | Thanked: 723 times | Joined on Oct 2009
#2164
I just put out a new libsdlpre.so to fix ExDeus Arcade
 

The Following User Says Thank You to jflatt For This Useful Post:
elie-7's Avatar
Posts: 968 | Thanked: 663 times | Joined on Jun 2010 @ Australia (Melbourne/vic) / Lebanon (Zgharta/north)
#2165
guys i'm having a small problem with angry birds rio, it just won't launch, it crashes at the start, i did reinstall it but with no luck, so i'm guessing this might be the save file or something like that, i installed the game in a .deb format, and it was working perfectly .
any solutions guys ??
thanks .
__________________
rolling down the street, smoking ENDO, sipping on gin and juice
laid back, with my mind on my money and my money on my mind .
 
Posts: 136 | Thanked: 14 times | Joined on Feb 2011
#2166
Originally Posted by elie-7 View Post
guys i'm having a small problem with angry birds rio, it just won't launch, it crashes at the start, i did reinstall it but with no luck, so i'm guessing this might be the save file or something like that, i installed the game in a .deb format, and it was working perfectly .
any solutions guys ??
thanks .
try running this in terminal (don't use root)

/usr/bin/angrybirdsrio

And post the output here

I'm also unable to open this now (used to be able to open it) after rovio screen it crashes

I get this error

EXCEPTION : failed to open settings.lua for writing

Seems like something is screwing up the /usr folder..
And it's not just me i guess.. some of my friends also have this problem..
Does cssu have something to do with this?
I think it's the only major update recently..

Last edited by shuraizo; 2011-04-26 at 05:37.
 

The Following User Says Thank You to shuraizo For This Useful Post:
zdanee's Avatar
Posts: 311 | Thanked: 376 times | Joined on Nov 2010 @ Hungary
#2167
Originally Posted by shuraizo View Post
try running this in terminal (don't use root)

/usr/bin/angrybirdsrio

And post the output here

I'm also unable to open this now (used to be able to open it) after rovio screen it crashes

I get this error

EXCEPTION : failed to open settings.lua for writing

Seems like something is screwing up the /usr folder..
And it's not just me i guess.. some of my friends also have this problem..
Does cssu have something to do with this?
I think it's the only major update recently..
Did you actualy check settings.lua? Try chmod 777 settings.lua to it (after navigating to its folder)!
 

The Following 2 Users Say Thank You to zdanee For This Useful Post:
travla's Avatar
Posts: 397 | Thanked: 241 times | Joined on Mar 2010 @ Melbourne, Australia
#2168
Originally Posted by elie-7 View Post
guys i'm having a small problem with angry birds rio, it just won't launch, it crashes at the start, i did reinstall it but with no luck, so i'm guessing this might be the save file or something like that, i installed the game in a .deb format, and it was working perfectly .
any solutions guys ??
thanks .
@elie-7 & shuraizo
AFAIK, this is a problem due to AB Rio using relative file/folder paths instead of absolute. I first encountered it when trying to run the game from my home dir (i.e. /home/user) even though game was installed on /home/user/games/com.rovio.......... The error that is given is that it can't find somedir/somefile.lua (which is the giveaway really).

So, try this in xterm:

Code:
preenv
cd /path/to/com.rovio.angrybirdsrio
./angrybirdsrio
If everything runs okay, create the icon using preenv in xterm (also shown in the wiki):
Code:
root
preenv
desktopgen /path/to/com.rovio.angrybirdsrio/appinfo.json
exit
 
travla's Avatar
Posts: 397 | Thanked: 241 times | Joined on Mar 2010 @ Melbourne, Australia
#2169
Originally Posted by qiet72 View Post
Solved.

If any game seems to get stuck with "Initializing device unique ID", then check to make sure your bluetooth is on in the phone. I did an strace and also looked through the libsdlpre.so and found out that the messages tries to create a unique device id by reading /dev/random if it cannot get the id from the device bluetooth configuration and reading /dev/random is extremely slow.

Also strace revealed some invalid paths in /media/cryptofs - fixed it with symlinks.

qiet72.
I'm not sure that this is accurate - I have run Settlers v1.1.1 on preenv 0.1.7 without adding a symlink in /media/cryptofs.
 
Posts: 136 | Thanked: 14 times | Joined on Feb 2011
#2170
Originally Posted by zdanee View Post
Did you actualy check settings.lua? Try chmod 777 settings.lua to it (after navigating to its folder)!
this works
I've tried chmod before but i did it on the /usr/bin folder.. no wonder it didn't work because it's a symlink file to settings.lua

Originally Posted by travla View Post
@elie-7 & shuraizo
AFAIK, this is a problem due to AB Rio using relative file/folder paths instead of absolute. I first encountered it when trying to run the game from my home dir (i.e. /home/user) even though game was installed on /home/user/games/com.rovio.......... The error that is given is that it can't find somedir/somefile.lua (which is the giveaway really).

So, try this in xterm:

Code:
preenv
cd /path/to/com.rovio.angrybirdsrio
./angrybirdsrio
If everything runs okay, create the icon using preenv in xterm (also shown in the wiki):
Code:
root
preenv
desktopgen /path/to/com.rovio.angrybirdsrio/appinfo.json
exit
Well in angrybirdsrio the problem was settings.lua

But in settlers the problem is "the application asked for device id"
I've tried opening it in the main folder (opt/preenv/usr...) And i still get the same error...
Tried the 0000 trick for preenv-uid but it doesn't work..
 
Reply

Tags
games, multi touch, palm pre, preenv, profile, reach page 250?, speed, yesssss


 
Forum Jump


All times are GMT. The time now is 22:18.