![]() |
2011-07-28
, 11:39
|
Posts: 100 |
Thanked: 543 times |
Joined on Jun 2010
@ Kiev, Ukraine
|
#2
|
![]() |
2011-07-28
, 11:48
|
Posts: 87 |
Thanked: 46 times |
Joined on Nov 2010
@ lisbon, portugal
|
#3
|
![]() |
2011-07-28
, 12:52
|
Posts: 3 |
Thanked: 0 times |
Joined on Jul 2010
|
#4
|
![]() |
2011-07-28
, 13:08
|
Posts: 87 |
Thanked: 46 times |
Joined on Nov 2010
@ lisbon, portugal
|
#5
|
I would like to write a short instruction how to keep games on memory card instead of internal memory, which is no so large.
This instruction helps us to save a root space for another apps.
This one bases on information collected from internet and it works for me very well.
The first what we need, is to prepare memory card. We don't need to modify file system at all. We keep the FAT32 of our external memory card. But we have to change an access right to our card.
It will allow to execute any application directly from our card, as well from internal FAT32 partition.
You have to have installed game on your phone first. After that:
We need to modify file located in /usr/sbin/mmc-mount. Of course, the root access is mandatory:
So the file looks like:
#!/bin/sh
mount -t vfat -o rw,noauto,noexec,nodev,nosuid,noatime,nodiratime,u tf8,uid=29999,shortname=mixed,dmask=000,fmask=0133 "$1" "$2"
It not allows to execute any app from vfat partitions. So we have to change to following one:
#!/bin/sh
mount -t vfat -o rw,noauto,exec,nodev,nosuid,noatime,nodiratime,utf 8,uid=29999,shortname=mixed,dmask=000,fmask=022 "$1" "$2"
Keep in mind it opens the security gate to our device, So you're doing it on your own responsibility.
After that just reboot your phone.
Next step to move webos apps to memory card. Create your own directory on memory card, like WebOS.
Go to directory /opt/preenv/usr/palm/applications/. Run "mv <your_selected_game_folder> /media/mmc1/WebOS/" .
Don't panic of the warning messages you got. Just keep going.
And last step to go to directory /usr/bin. Find your game name, mainly it called like com-<ea,gameloft,etc.>-app-<game_name>.
Use your prefeable editor (like vi) and modify file:
Change the path of game /usr/palm/applications/ to /media/mmc1/WebOS/.
Now you should be able to run the game form desktop shortcut. And you save a lot of space on root.
Enjoy
Henry