Patch to sort the image gallery of the Nokia s60v5

One of the most unpleasant thing of Nokia devices is the uncontrolled appearance of images in the gallery;

Installing a program, surfing the Internet, using a browser we could fill our gallery disproportionately making it unsightly but also slow to start and this is because it loads the images present in almost all the folders in your phone.

The file that manage the gallery is the file 200009FE.txt located in the ROM Z of the nokia devices and this is its content:

cenrep
version 1
[owner]
0x200009FE
[defaultmeta]
 0
[platsec]
 cap_rd=ReadUserData cap_wr=WriteDeviceData
[Main]
0x1 int 0 0
0x10001 string "\\private\\" 0
0x10002 string "\\system\\" 0
0x10003 string "\\activenotes\\" 0
0x10004 string "\\Data\\activenotes\\" 0
0x10005 string "\\sys\\" 0
0x10006 string "\\resource\\" 0
0x10007 string "\\Cities\\" 0
0x20001 string "Z:\\Data\\Sounds\\Digital\\" 0
0x20002 string "Z:\\Data\\Sounds\\Simple\\" 0
0x20003 string "Z:\\Data\\Videos\\" 0
0x40001 string "C:\\Data\\" 0
0x90000 int 0 0 cap_wr=alwaysfail
0x90001 int 0 0

Correctly editing this file and moving it in the path c:\private\10202be9\ we can make in way that the gallery NOT goes to read files in certain folders in the mass memory; we have to remeber that the private folder become accessible only if the phone is hacked.

The file 200009FE.txt is also responsible for the loading of the ringtones in the profiles, so we have to be very careful in editing it; We can therefore say that this file is responsible for all the media.

 
 
Unfortunately, we could not exclude folders of unit C and of the memory-card.

The folders of the mass memory to be excluded from the gallery will be added after the string 0x10007 continuing the numbering in ascending order and respecting the same syntax "\\FolderName\\" 0.

For esample we can edit the fie 200009FE.txt in this way:

cenrep
version 1
[owner]
0x200009FE
[defaultmeta]
 0
[platsec]
 cap_rd=ReadUserData cap_wr=WriteDeviceData
[Main]
0x1 int 0 0
0x10001 string "\\private\\" 0
0x10002 string "\\system\\" 0
0x10003 string "\\activenotes\\" 0
0x10004 string "\\Data\\activenotes\\" 0
0x10005 string "\\sys\\" 0
0x10006 string "\\resource\\" 0
0x10007 string "\\Cities\\" 0
0x10008 string "\\Attachments\\" 0
0x10009 string "\\data\\" 0
0x10010 string "\\download\\" 0
0x10011 string "\\Games\\" 0
0x10012 string "\\Installs\\" 0
0x10013 string "\\Music\\" 0
0x10014 string "\\Others\\" 0
0x10015 string "\\Playlists\\" 0
0x10016 string "\\Sounds\\Digital\\" 0
0x20001 string "Z:\\Data\\Sounds\\Digital\\" 0
0x20002 string "Z:\\Data\\Sounds\\Simple\\" 0
0x20003 string "Z:\\Data\\Videos\\" 0
0x40001 string "C:\\Data\\" 0
0x90000 int 0 0 cap_wr=alwaysfail
0x90001 int 0 0

In this way the gallery will not load the images that are in these folders:

  • Attachments
  • data
  • download
  • Games
  • Installs
  • Music
  • Others
  • Playlists
  • Sounds\Digital (we can't exclude the entire Sounds folter otherwise we will not have any rington present in Sounds\Simple)

So correctly editing this file we can set the gallery how we like or you can install the patch here attached. Installing this patch the gallery will exclude from the search these folders:

  • Attachments
  • data
  • download
  • Games
  • Installs
  • Music
  • Others
  • Playlists
  • Sounds\Digital

The patch will work on any s60v5 device.

The patch is unsigned, to install the patch the phone have to be hacked and with the installserver patch enabled or you have to certificate the patch before installing, once the patch has been installed you only have to restart the phone.

AttachmentSize
File image_gallery_hack_s60v5.sis1.08 KB
Section: 

Comments

Add new comment