Kevlar Source Page Pool 0 ROM Repository - Touch Pro, Fuze ROM Development

KEVLAR SOURCE PAGE POOL 0 ROM REPOSITORY
Although I posted a rather extensive post about Dynamic Page Pool and how to change ROM's page pool, the majority of people is not comfortable with HEX Editing...
Given that fact, I will update this thread with the Dynamic Page Pool version of all ROM's that are published from now on.
If you want any particular version or ROM to be changed just PM me with a download link and I will promptly change it and upload it to my rapidshare collector account and publish it here.
ROM REPOSITORY
PDA Viet V10
NATF Fuze V1 Beta
NATF Fuze V1.1 Beta
PROven ROM 1.01
Elite ROM RC1
PROven ROM 1.04 CVSD
PROven ROM 1.05 CVSD
...

Reserved...

a simpler hack is patch nk.exe once with a nice NOP then allow people to patch it with the old pagepool changer to any value at will =) see raphael elite rc1 nk.exe for reference.
btw does this "dynamic" thing refer to disabled pagepool (when it is set to 0)?

cmonex said:
a simpler hack is patch nk.exe once with a nice NOP then allow people to patch it with the old pagepool changer to any value at will =) see raphael elite rc1 nk.exe for reference.
btw does this "dynamic" thing refer to disabled pagepool (when it is set to 0)?
Click to expand...
Click to collapse
Thank you for the info
Yes, Dynamic Page Pool or Page Pool 0
P.S. I personally prefer to HEX edit... It's as simple as opening the file with a HEX Editor and change a digit in two instances... But yes, for «regular» users it is much simpler to do it as you suggest.
I am an SD Card flash method user
If you wish to live longer DO NOT use Microsoft
If you despise life use Windows XP
If you have deep and severe death wishes use Windows Vista
If you are lunatic and suicidal use Windows Server 2003
Cheers.

Great news, really appreciate this thread !!!
Thank you very much, really appreciate this. I am one of those who would like to have the pp of the rom set to zero, but I feel really unsure about doing this myself as I have never used a HEX editor before. So thanx again for your time doing this for people like me.
Btw, I think I read your post somewhere in the ROMEOS thread giving the author credit for setting the pp to zero, but just to know for sure, is the ROMEOS rom set to pp=0 by default (newest 1.40 release)? Thank you

hmota78 said:
Thank you very much, really appreciate this. I am one of those who would like to have the pp of the rom set to zero, but I feel really unsure about doing this myself as I have never used a HEX editor before. So thanx again for your time doing this for people like me.
Btw, I think I read your post somewhere in the ROMEOS thread giving the author credit for setting the pp to zero, but just to know for sure, is the ROMEOS rom set to pp=0 by default (newest 1.40 release)? Thank you
Click to expand...
Click to collapse
Say nothing of it It's always a pleasure to contribute and to help.
The credit of Raphael ROM's page pool change does not go to ROMeOS2 publisher... It goes to two other users and community contributors. (I won't say who they are. That's a secret )
Yes, your assumption is correct. ROMeOS2 1.40 both initial version and corrected one are Dynamic a.k.a PP0.

Thanx for the quick response

Thanks For The Great and Wonderful thread but i have two Questions:
does Setting the PP0 decrease and make the battery life shorter? and does it cause a memory leakage ?
thanks

Thank you for this thread and your help

Can you make this one dynamic to please?
http://forum.xda-developers.com/showthread.php?t=432629
Thx!

tinuz97 said:
Can you make this one dynamic to please?
http://forum.xda-developers.com/showthread.php?t=432629
Thx!
Click to expand...
Click to collapse
Please Read The Thread before Posting .... see post #6

the guitarist said:
Please Read The Thread before Posting .... see post #6
Click to expand...
Click to collapse
Why the and not the
Lol,yeah i over looked it

tinuz97 said:
Why the and not the
Lol,yeah i over looked it
Click to expand...
Click to collapse
lol i'll edit the post just for you

I asked this in other threads and dont know if anyone answered...
are there any cons in using pp=0?

the guitarist said:
Thanks For The Great and Wonderful thread but i have two Questions:
does Setting the PP0 decrease and make the battery life shorter? and does it cause a memory leakage ?
thanks
Click to expand...
Click to collapse
Dear the guitarist,
Answering your questions: No and no
Happy flashing.
Cheers.

tinuz97 said:
Can you make this one dynamic to please?
http://forum.xda-developers.com/showthread.php?t=432629
Thx!
Click to expand...
Click to collapse
Dear tinuz97,
The ROM you are asking me to change is already dynamic. I.e. It already has page pool set to 0.
Happy flashing.
Cheers.

respider said:
I asked this in other threads and dont know if anyone answered...
are there any cons in using pp=0?
Click to expand...
Click to collapse
Dear respider,
You asked the exact same thing in another thread some time ago and i believe that both me and JCEspi2005 answered you back then.
But I will «refresh» your memory
No there are no cons at all in using dynamic page pooled ROM's i.e. page pool set to 0.
There are only pros
Cheers.

um, you realize that the notion of dynamic pagepool is invalid,
i'm not sure who the heck invented this myth; but there is no such thing as a "dynamic" pagepool.
first, CE pagepool != windows pagefile. pagepool is an area that CE uses to page code and memory mapped files from NAND into RAM; it is not a pagefile that is used AS ram, when CE runs out of memory, it runs out of memory, no way around it...
as you know, the main disadvantage of NAND over NOR memory technologies is that NAND must be read/written in blocks, quite large blocks kb in size, the microprocessor unfortunately, needs memory to be byte-addressable. the whole point of the pagepool is to hopefully predict which pages of code the processor might need/use so it doesn't need to fetch from slow NAND, while at the same time reducing the RAM footprint so the entire code need not stay resident in memory the entire time... CE must reserve a preallocated amount at boot for that.
when you set that location to zero, it just tells ce to either disable the pagepool, or to use the OEM default pagepool instead of a preset pagepool.
i hope this dissolves the myth, although i'm 100% sure people will still go nuts over it...

Page Pool, Pool Resources and Pool Resource Depletion
no2chem said:
.../...
i hope this dissolves the myth, although i'm 100% sure people will still go nuts over it...
Click to expand...
Click to collapse
The page pool is a reserved area in memory for the windows mobile kernel.
A ROM in a pocket pc is mainly divided into 2 parts [some other: IPL, SPL, ExtROM but forget it for now]:
- The Kernel
- The OS files [IMGFS] [Some pocket PCs do not have NOR/NAND ROM but a DOC (Disk On Chip) that works like an SD card].
Applications use RAM in two ways.
There is code that runs, and there is data that is created while it is running.
On a NOR device, the code can run directly from the ROM and not be loaded into RAM first. This process is called XIP [eXecute In Place].
NAND devices can't XIP, so their code is loaded into RAM and executed from there.
If you don't have a Page Pool, this code is loaded into normal RAM.
The Page Pool is a mechanism to limit how much code is loaded into normal RAM.
With a Page Pool, we can unload code that hasn't been used in a while and reload it later if we need to.
We can't do that without a Page Pool.
There are portions of the deepest parts of the OS that have to XIP.
If you're on NOR, that code just XIPs like everything else.
Not so on NAND... For a NAND system to boot, it needs to load this code into RAM first and then run it from there.
When the system is running, it can't really tell if it's running from RAM or ROM, so it assumes it's running from ROM and doesn't count this space.
Discussing pool resources and pool resource depletion in general terms and not specifically regarding PPC's...
When a machine boots up, the Memory Manager creates two dynamically sized memory pools that kernel-mode components use to allocate system memory.
These two pools are known as the Paged Pool and NonPaged Pool.
Each of these pools start at an initial size that is based upon the amount of physical memory present in the system.
Pool memory is a subset of available memory and is not necessarily contiguous.
If necessary, these pools can grow up to a maximum size that is determined by the system at boot time.
So, what distinguishes Paged Pool and NonPaged Pool memory is:
The first difference is that Paged Pool is exactly what its name implies - it can be paged out.
The NonPaged Pool cannot be paged out.
Drivers use the NonPaged Pool for many of their requirements because they can be accessed at any Interrupt Request Level [IRQL]. The IRQL defines the hardware priority at which a processor operates at any given time.
Page Pool set to 0 is usually refered to as Dynamic Page Pool because it allows the system to use all available memory as page pool, being it addressed and reserved on a necessity basis.
If you need more information I can provide you with some links regarding Page Pool and it's issues, many provided by Microsoft itself [msdn, that is]...
Remember that this thread is a ROM repository.
It is meant to be directed to general public. Therefore, discussions about this, especially technical ones should be taken to PM and not to open forum, at least in this thread.
You have your opinion and I respect it although I do not share it... Nevertheless users are free to use what they very well please. If you do not like it or if you believe it has no purpose simply direct your attention to other threads
If you take a look at the forum you will conclude that some chefs, respected ones, decided to publish their ROMs with Page Pool set to 0... Don't you wonder why that is?
Cheers

Kevlar-Source said:
Dear respider,
You asked the exact same thing in another thread some time ago and i believe that both me and JCEspi2005 answered you back then.
But I will «refresh» your memory
No there are no cons at all in using dynamic page pooled ROM's i.e. page pool set to 0.
There are only pros
Cheers.
Click to expand...
Click to collapse
Thank you, I really didnt see the answer in the other topic, I'm sorry
But I remember I asked why custom roms and official roms doesnt come with dinamic page pool by default? ROMeOS seems like to have it only in 1.40, right?
Because its a "new discover" or because some people really dont like it?
Thanks in advance for answering and for the great topic.
Abraços.

Related

[Beta] [Athena Project] On the fly Pagepool Changing!

Ever wanted to see how your device will perform with a different sized pagepool but not wanted to have to reflash your device? here is the solution!
At the moment it is fully functional, save for the offset detecting algorithm which at the moment is not included. Therefore this BETA requires that you know the correct offset for you're current ROM.
An incorrect offset could lead to a re-flash being required!
Example offsets:
DOPOD 17944 WWE Build & HTC 17745 WWE Build (including all derivatives, eg PK 1/2): "0x5DAD42"
Darkforce Build 18533 (including all derivatives, eg PK 3): "5DA3BA" - Thanks PK
If you want an offset here send me a link to the ROM and i'll find it
This is UNTESTED ON ATHENA, however I dont think it could break a device and it works perfectly on my Universal .
Peaceout!
Fixed version now runs on 95/98/ME/Vista aswel as 2000/XP
wm6 rom link
http://www.megaupload.com/?d=4KS1DYOT
thanks alot
does increasing the size take up rom space for ram space. thanks
Stupid Question
hi all what will this do (changing page pool) im running the pk 1.00 rom. will it speed up the device if changed any pointers appreciated and then ill give it a go see what happens
from what i hear it will speed up your device. I have never personally changed the pagepool so im not sure but that what i hear.
spzero said:
hi all what will this do (changing page pool) im running the pk 1.00 rom. will it speed up the device if changed any pointers appreciated and then ill give it a go see what happens
Click to expand...
Click to collapse
try different values and see!
again, USE AT YOUR OWN RISK
Midget_1990 said:
Ever wanted to see how your device will perform with a different sized pagepool but not wanted to have to reflash your device? here is the solution!
At the moment it is fully functional, save for the offset detecting algorithm which at the moment is not included. Therefore this BETA requires that you know the correct offset for you're current ROM.
An incorrect offset could lead to a re-flash being required!
Example offsets:
DOPOD 17944 WWE Build & HTC 17745 WWE Build (including all derivatives, eg PK 1/2): "0x5DAD42"
If you want an offset here send me a link to the ROM and i'll find it
This is UNTESTED ON ATHENA, however I dont think it could break a device and it works perfectly on my Universal .
Peaceout!
Click to expand...
Click to collapse
thanks, i am doing it now so i will let you know how i come out.
Not having a lot of luck - Installed the rapi cab then ran the exe on my PC got a dos box and lots of unrecognised command errors. Tried running the exe on my Ameo and it does nothing.
Running Vista Business if that makes a diff?
What am I doing wrong?
Confucious said:
Not having a lot of luck - Installed the rapi cab then ran the exe on my PC got a dos box and lots of unrecognised command errors. Tried running the exe on my Ameo and it does nothing.
Running Vista Business if that makes a diff?
What am I doing wrong?
Click to expand...
Click to collapse
a combination of mine an vista's fault, i assumed t was ok to hardcode in 2000/XP paths because i assumed no-one would be usin 95/98 anymore, but i forgot about Vista!
i'll upload a new version now
well im not sure what to say i changed it to 8 then to 12 then to 16 everything seemed stable but the amount of free space on my rom did not change at all. so im not sure if it worked but at least i did not brick my device
irus said:
well im not sure what to say i changed it to 8 then to 12 then to 16 everything seemed stable but the amount of free space on my rom did not change at all. so im not sure if it worked but at least i did not brick my device
Click to expand...
Click to collapse
The RAM is what changes, not the ROM
Thanks for that - just changed mine to 16Mb
lets see if it makes any difference!
Thanks for the quick fix.
well in that case it work perfectly
i increased it to 16mb i did not feel any noticeable difference that i changed it to 0 part of my today screen, where my short cuts are, is black but if i click in the black area my programs still come up. other than that i dont really feel that its any slower. but it could just be me. in anycase thanks midget for posting this.
midget, you're my king.
beginner said:
midget, you're my king.
Click to expand...
Click to collapse
So, does it speed up your device or no? What setting do you use if yes?
If you get more RAM, does problem of choosing SIP keyboard ( which is a problem that occurs randomly when many SIPs are installed) go away?
eaglesteve said:
So, does it speed up your device or no? What setting do you use if yes?
If you get more RAM, does problem of choosing SIP keyboard ( which is a problem that occurs randomly when many SIPs are installed) go away?
Click to expand...
Click to collapse
I moved to 16 mb and see more fast device when you start applications or menus first time. Before it was really slow.
sorry, what's SIP keyboard?
beginner said:
I moved to 16 mb and see more fast device when you start applications or menus first time. Before it was really slow.
sorry, what's SIP keyboard?
Click to expand...
Click to collapse
Just the starting? No speed difference once started?
SIP refers to software keyboard such as Tengo, happy tapping, finger touch, ce star, and penpower.
I use primarily Tengo. Occasionally I like to switch to happy tapping and penpower. I have problem choosing happy tapping as only the standard keyboard get selected. Even if I manage to set happy tapping,once I switch to other keyboard I can't get back to happy tapping again. (no issue with Tengo or penpower).. I was hoping with more RAM this problem will disappear.
eaglesteve said:
Just the starting? No speed difference once started?
SIP refers to software keyboard such as Tengo, happy tapping, finger touch, ce star, and penpower.
I use primarily Tengo. Occasionally I like to switch to happy tapping and penpower. I have problem choosing happy tapping as only the standard keyboard get selected. Even if I manage to set happy tapping,once I switch to other keyboard I can't get back to happy tapping again. (no issue with Tengo or penpower).. I was hoping with more RAM this problem will disappear.
Click to expand...
Click to collapse
athena's do not suffer from lack of ram (they have plenty) infact this is mainly to be used in quite the opposite way, sacrificing some of this RAM to speed up the device (caching).
16mb seems pretty snappy , an chance we can try 32 or
fards said:
16mb seems pretty snappy , an chance we can try 32 or
Click to expand...
Click to collapse
no point, aboove 16mb the performace difference (note i didnt say increase) is negligable, and doesnt justify the RAM it uses.
also dont be affraid to try 0mb, thats my personal favourite/recommendation

How To Downgrade From AP4 to WM6 Original??

im from indonesia,.
I want downgraded to WM6 original but error n I got the text
"FOUND SPL V1.20
DOWNLOAD SPL BEFORE V3.03 IS NOT ALLOWED"
can u help me??
i want back to WM6 original,.
thx b4,.
denaldi said:
im from indonesia,.
I want downgraded to WM6 original but error n I got the text
"FOUND SPL V1.20
DOWNLOAD SPL BEFORE V3.03 IS NOT ALLOWED"
can u help me??
i want back to WM6 original,.
thx b4,.
Click to expand...
Click to collapse
you can't
http://forum.xda-developers.com/showthread.php?t=388213
OMG,.
any body can help me??
we are all waiting for a solution.... more than AP5...
denaldi said:
OMG,.
any body can help me??
Click to expand...
Click to collapse
im working on it
denaldi said:
OMG,.
any body can help me??
Click to expand...
Click to collapse
What part of "you can't" did you REALLY not understand??? YOU CAN'T! Deal with it.
denaldi said:
OMG,.
any body can help me??
Click to expand...
Click to collapse
If you upgrade to AP4 you CANNOT downgrade to anything except the hacked AP3
http://htc-hackers.com/uploads/ap3newspl.zip
darkjedi said:
What part of "you can't" did you REALLY not understand??? YOU CAN'T! Deal with it.
Click to expand...
Click to collapse
Don't be an asshole. YES HE CAN, he just needs to wait for the downgrade tool that hasn't been released yet.
Why do we have so many people on the Athena sub-board with an attitude problem? Treat everyone nicely, they'll treat you nicely.
techntrek said:
Don't be an asshole. YES HE CAN, he just needs to wait for the downgrade tool that hasn't been released yet.
Why do we have so many people on the Athena sub-board with an attitude problem? Treat everyone nicely, they'll treat you nicely.
Click to expand...
Click to collapse
I think the athena boards are quite tame, compared to the Hermes and Kaiser forums...In those forums you will be called 4 letter words for not searching or posting a new thread instead of posting in the proper thread...
Of course, in those forums new roms come out every day, so there is a lot more activity.
techntrek said:
Don't be an asshole. YES HE CAN, he just needs to wait for the downgrade tool that hasn't been released yet.
Why do we have so many people on the Athena sub-board with an attitude problem? Treat everyone nicely, they'll treat you nicely.
Click to expand...
Click to collapse
Has the downgrade tool been confirmed in the works? I am waiting on it or the next version after 4.0 I am not happy with AP 4.0 at all right now to many issues with applications etc
not really confirmed, just few words from the dev team, no ETA ... would be a disaster if this tool is not released...
marka2k said:
Has the downgrade tool been confirmed in the works? I am waiting on it or the next version after 4.0 I am not happy with AP 4.0 at all right now to many issues with applications etc
Click to expand...
Click to collapse
Yes, I am also having some issue with AP4, but I have changed several items and it now at least usable.
1) I removed all keyboards/sips except the default and I added resco keyboard. I believe some of the newer sips like the manilla keyboards were causing me memory issues.
2) I shutoff touchflo
3) I shutoff Vueflow
4) I changed several registry keys to performance setting via sktools.
5) I installed the Opera 8.65 cab and removed the opera 9.x
6) Removed Manilla Dialer
Also, changed a few registry items found in the forums wiki's for universal and kasier.
Most changes above were performed using SKtools, Schaps Advanced config app and PHM Registry editor. I still have issue with the photo album, but i do not use it much.
So for me, it now is a usable device again and better than ap3. DO i wish i could downgrade the SPL and try one of the other wm6.1 rom...Yes
eagle 1 said:
Yes, I am also having some issue with AP4, but I have changed several items and it now at least usable.
1) I removed all keyboards/sips except the default and I added resco keyboard. I believe some of the newer sips like the manilla keyboards were causing me memory issues.
2) I shutoff touchflo
3) I shutoff Vueflow
4) I changed several registry keys to performance setting via sktools.
5) I installed the Opera 8.65 cab and removed the opera 9.x
6) Removed Manilla Dialer
Also, changed a few registry items found in the forums wiki's for universal and kasier.
Most changes above were performed using SKtools, Schaps Advanced config app and PHM Registry editor. I still have issue with the photo album, but i do not use it much.
So for me, it now is a usable device again and better than ap3. DO i wish i could downgrade the SPL and try one of the other wm6.1 rom...Yes
Click to expand...
Click to collapse
could you post wha tregistry dd you change?
i. amvery disappointed without the mail address predicton
beginner said:
could you post wha tregistry dd you change?
i. amvery disappointed without the mail address predicton
Click to expand...
Click to collapse
Sorry, I did not make a list of the reg changes, but most can be accomplished with sktools and/or readng the universal wiki registry edits
As for mail address prediction? Do you mean suggest words etc
did you go into settings, select personal tab, select the input icon, select the word completion TAB,
check suggest words when entering text
Change Suggest After entering to "1 letter" (i think the default is space which does not suggest words until a space is entered, totally useless)
set the other check boxes to your preference!
Remember word completion will store what you type most often, thus the email addresses, words etc
eagle 1 said:
Sorry, I did not make a list of the reg changes, but most can be accomplished with sktools and/or readng the universal wiki registry edits
As for mail address prediction? Do you mean suggest words etc
did you go into settings, select personal tab, select the input icon, select the word completion TAB,
check suggest words when entering text
Change Suggest After entering to "1 letter" (i think the default is space which does not suggest words until a space is entered, totally useless)
set the other check boxes to your preference!
Remember word completion will store what you type most often, thus the email addresses, words etc
Click to expand...
Click to collapse
My problem is in "suggest words". There are options for 1, 2, 3 or 4 words suggested, but is impossible to mark a number. I think again the registry is not very fine. The curious comment is that teksoft keyboard does suggest words, that means AP team deploy this part of the rom only fine with software keyboards but not the phisical one.
This is the worse upgrade I ever made of a device. And no way to solve. I feel stupid after several years testing rom upgrades.
AP 4 is totally unusable for business. Maybe nice youtube video capacity, or maybe music, but no way to have it working.
I am starting to use again a blackberry device I have: totally usable for word prediction, gps really superfast.
come and get it htc wm6 and my wm6.1 for SPL 3.5
http://forum.xda-developers.com/showthread.php?t=390328
[size=+2]YES THERE IS A WAY TO DOWNGRADE.[/size]
I want to try out a more user friendly package before releasing it.
PM me if you want to help test!!
cmonex said:
[size=+2]YES THERE IS A WAY TO DOWNGRADE.[/size]
I want to try out a more user friendly package before releasing it.
PM me if you want to help test!!
Click to expand...
Click to collapse
I just pm you, awaiting ansiosus for your news
irus said:
come and get it htc wm6 and my wm6.1 for SPL 3.5
http://forum.xda-developers.com/showthread.php?t=390328
Click to expand...
Click to collapse
Irus,
I applaud you for releasing this however it does not cure the issue with software not running/incompatiable (I tested using your vanilla release) I believe the software issue we are experiencing is tied to the SPL version someone feel free that knows more than I do jump in
marka2k said:
Irus,
I applaud you for releasing and realize you did this so we would have more of a selection. For those of use hoping this will cure the software not running/incompatabilites etc this however does not cure the issue (I tested using your vanilla release) I believe the software issue we are experiencing is tied to the SPL version someone feel free that knows more than I do jump in
Click to expand...
Click to collapse
Edited to be more specific

Change Page Pool?

Based upon what I have gathered from browsing the forum messages, I think I know the answer to this, but here goes anyway:
Is there any way to change the Page Pool if you already have a ROM installed? I.E. Some program to change the page pool size, the soft reboot and use that new size?
I think the answer is that you have to do it when building the ROM, but I thought I would ask just to be sure. Thanks in advance.
Chimp (Tom)
SimpTheChimp said:
Based upon what I have gathered from browsing the forum messages, I think I know the answer to this, but here goes anyway:
Is there any way to change the Page Pool if you already have a ROM installed? I.E. Some program to change the page pool size, the soft reboot and use that new size?
I think the answer is that you have to do it when building the ROM, but I thought I would ask just to be sure. Thanks in advance.
Chimp (Tom)
Click to expand...
Click to collapse
In the nuerom3 there is an option so you can change pagepool, soft reset and there you have it. I don't know if there is other program that would do that.
I have seen a tool for the Herald that changes the current pagepool, then soft reset. I never tried it on my Titan, as I was not sure if it would work. So far I think the only way to do it would be to use the page pool changer before flashing for the Titan.

What is the newest build for WM 6.5?

Hi guys, kind of confused with the build numbers, which build is the newest build for WM 6.5 that I can use with my Titan? Any good ROM suggestions on that build? Thanks guys.
Watch this fourm...
http://forum.ppcgeeks.com/showthread.php?t=54678
The moment a new build is released, they post about it there. The newest as of today (not sure if they have released a rom for the titan yet) is 21812 but, it seems to change every other day
I've been running 21806 the last few days and it has been great so far.
LOL, 21812 is already out!
Yeah I saw that less than a day after I had my phone how I wanted it. Ugh... it's like waiting for the new CPU or new car model to be released.
I have a question. How are the 6.5 ROM's obtained exactly? I'd like to start getting involved, cooking, etc. Currently running 21812, but don't care for the RAM and battery meters, or the "fave people" plugin.
Shoot2ill said:
I have a question. How are the 6.5 ROM's obtained exactly? I'd like to start getting involved, cooking, etc. Currently running 21812, but don't care for the RAM and battery meters, or the "fave people" plugin.
Click to expand...
Click to collapse
If you don't like the meters the goto windows\startup folder and delete the two files. dcibattery and qwertymemory
Use chome editor to remove the fave people plugin.
mattsm said:
If you don't like the meters the goto windows\startup folder and delete the two files. dcibattery and qwertymemory
Use chome editor to remove the fave people plugin.
Click to expand...
Click to collapse
Error Deleting File
Cannot delete 'dciBattery': There has been a sharing violation.
The source or destination file may be in use.
Thanks guys
Thanks guy, looks like I upgraded a week early and I'm going to have to upgrade again today. Thanks for the link, guess this is what we put up with for wanting the latest and greatest.
Shoot2ill said:
Error Deleting File
Cannot delete 'dciBattery': There has been a sharing violation.
The source or destination file may be in use.
Click to expand...
Click to collapse
I had the same problem. What worked for me is cutting them and paste them into a different folder and then deleting the files from there. Weird but worked.
Shoot2ill said:
I have a question. How are the 6.5 ROM's obtained exactly? I'd like to start getting involved, cooking, etc. Currently running 21812, but don't care for the RAM and battery meters, or the "fave people" plugin.
Click to expand...
Click to collapse
Check Out this link
http://forum.ppcgeeks.com/showthread.php?t=70427
jmartin72 said:
Check Out this link
http://forum.ppcgeeks.com/showthread.php?t=70427
Click to expand...
Click to collapse
Yeah I'm posting on that thread as we speak. What I meant by obtain is how they get the ROM releases. Do we lowly members just have to keep waiting for a developer to post them on the forums?
I guess this sort of answers my question.
http://forum.ppcgeeks.com/showpost.php?p=976417&postcount=547
Are you asking on how to create your own rom ? I'm also looking for the way to create my own rom and figure out how to troubleshoot problems with them. A lot of rom creators use PPCkitchen to create there roms by putting in the files for the new builds then building it on there and there is other kitchens for some builds as well.
Where they are coming from ? Chinese or Japanese sites, I forget the link, they have them all listed there, it tends to pop up from those sites, then trickles down to ppcgeeks, then to xda... With some searching in that fourm I linked before, you'll see links to the builds on there.
Ayatokahmina said:
I had the same problem. What worked for me is cutting them and paste them into a different folder and then deleting the files from there. Weird but worked.
Click to expand...
Click to collapse
Thanks. Will try that.
So these roms still do not work with the camera? I remember reading about it. Is it worth it? I know you have even less memory on startup. I just wish 6.1 would be able to use the marketplace.
segadc said:
So these roms still do not work with the camera? I remember reading about it. Is it worth it? I know you have even less memory on startup. I just wish 6.1 would be able to use the marketplace.
Click to expand...
Click to collapse
They certainly do work with the camera. There are two modes, though:
High Memory Mode -> You cannot use the camera, but you gain an addition 5ish meg of RAM.
Low Memory Mode -> You can use your camera, but RAM is lower.
You can switch back and forth at will with a simple utility in your Settings menu and then soft resetting.
Oh wow that is cool. Hmmm. Maybe I will wait for development when fellow xda members can update an os without clearing any data. But hearing that is tempting. I would probably just leave the camera on. Maybe someone should make a new lighter camera for that mode. In the mean time I will look for some WM6.5 on Titan videos.
http://forum.ppcgeeks.com/showpost.php?p=980757&postcount=5052
21815

Of The People, By The People

my time with the gene is heading towards its end and i'd like to go out with a bang!!
i created this thread to give something back to this wonderful community for all the help and guidance that has been offered to me so far
i've kept the next post as sort of a checklist for new (and experienced) chefs for the stuff that they should include in their ROMs and also a list of things that our users request (based on popularity)
i'll also try and provide little descriptions wherever possible
so i'd like all those here to write down the features/apps/requests/tweaks whatever it is that you have used in your previous/current ROMS that you've liked
i'll go through the posts and add newer items into the list as time goes on
this will serve as a good place for the senior chefs here to contribute bits of their knowledge and as a quick reference index for new or aspiring chefs for things they should be considering while making their own ROMs
so here's a list of things a cook oughta look up while making a ROM
i've grouped the things up into separate catgories like
1] OEM
this group requires comparatively less editing on the chef's part so i figured it best to get it out of the way first
i - the initflashfiles.dat files can be edited to make changes in the default directory locations, file names and shortcut links
ii - i remember having changed the CameraDriver.dll module while trying to get my camera working, so chefs may want to look around for that one
iii - same goes for the sdbus.dll and sdmemory.dll, some of the older SYS builds need these modules to be patched else the sd card is not detected by the phone
iv - for those adding their own CABs or any other files for customization on first boot should make sure that their Config.txt file is edited as per their needs
kitchen crashes sometimes set the contents of this file to default thereby voiding the changes made by the chef
v - edit the mxipupdate_OEMVERSION_100.provxml to add in custom ROM name and date
2] SYS
i - firstly go through all the packages and remove unnecessary items to save some important space on our little GENES
look here for more info
ii - feel free to customize the graphics files in the dpi and dpi res folders
nothing says custom ROM more than custom graphics
iii - for more advance users, you can edit the graphics within the .DLL files in some of the files in the SYS folder
modules may also be recmodded to flat .DLL files to edit and then reversemodded to modules again
iv - various system files can be recmodded to reduce the number of modules in slot 0
here's the reason why
i'll place a link up when i find it
v - some of the files can be replaced to improve the functionality
3] EXT
here's another place for some really deep customization for the chef
instead of writing down every single software package that is available i'm making a list of the must-have softwares that work well on our devices
i'll be starting off with a list of my preferred apps and i'll be adding more apps as the user suggestions come in
i - a registry editing software like PHMRegistry
ii - PPCPimBackup
iii - S2P 0.83 by far the best FREE music player around
you could alternatively use older version like the 0.58 version which had the cover flow feature and a different method of creating the playlist
iv - XDA_UC, simply because it reduces the workload on the user post flash/hard reset and pitches in great for when the chef wants some post-boot customizations to be carried out
v - pocketnester, NES ROMs may not be everyone's cup of tea but it sure as hell provides some endless time-wasting fun
reserved...just in case
Lets work on overclocking our CPU.currently iv been using "omap" to overclock my device to 240Mhz.
Worst part is,just as the device goes to sleep mode,or a manual shut down/restart,the clock speed reduces back to the default 186Mhz.
We either need to edit the Omap executable file or write some code to make it work continuous till the device is active.
If we succeed in this, we'll have ROMs rolled out with default 240Mhz clocking speed as a gift to Gene n the Gene users.
n r u shiftin to a newer device ? which one r u gonnu buy.do let us know.i'll probably shifting to Samsung Galaxy S2. dont wannu wait for the HtC Pyramid.i want the Super AmoLED plus screen in my hands.
I'll need shtdown animation.For overclocking pocket hack master is best(If you have money to purchase it!!!!).
To Karan999:Why don't you switching to HTC HD 2? Plz tell me bcoz i'm also going to buy HD 2 next week.
mr.harsh said:
I'll need shtdown animation.For overclocking pocket hack master is best(If you have money to purchase it!!!!).
To Karan999:Why don't you switching to HTC HD 2? Plz tell me bcoz i'm also going to buy HD 2 next week.
Click to expand...
Click to collapse
@Harsh - Honestly i really donno to which device m gonnu switch.since i'll be waiting till this Nov,i'll have alot of choice.But for now,the Samsung Galaxy SII is fixed.i already use my uncle's HD2 as a third device to my Gene and my iPhone 3G S.
Lets hope for the best.
PsshutXP
Hi Friends!!
I wants someone to make HTC Shutdown animation working with psshutxp.Plz help me.
mr.harsh said:
Hi Friends!!
I wants someone to make HTC Shutdown animation working with psshutxp.Plz help me.
Click to expand...
Click to collapse
open my windows 6.1 ROM thread and scroll down to Post 9#.
PsshutXP
Ya man but it will work with psshutxp but i'm using shutxp not psshutxp (i don't know if there is any difference or not),but it replaces poweroffwarning.exe from windows folder.HTC Animation uses poweroffwarning.exe from PACKAGE_POWEROFFWARNING.I want someone to edit this exe to make it working for HTC Animation
To psychocyst:HTC sense feel on GENE will be expected.I knows that it's impossible to use it on GENE but any other UI that looks like Sense UI
Hi Karan,
Use Omap-264. This has all the advantages u require. It will keep in 264 even after softreset; It will keep in 264 even after power on.
mattanur said:
Hi Karan,
Use Omap-264. This has all the advantages u require. It will keep in 264 even after softreset; It will keep in 264 even after power on.
Click to expand...
Click to collapse
It would be great if you provide me the cab file.
karan999 said:
It would be great if you provide me the cab file.
Click to expand...
Click to collapse
Pl get it from here:
http://forum.xda-developers.com/showthread.php?t=469785&page=3
Post 25.
overclocking to 264 may be dangerous.It can harm the device.Overclocking to 20% is safe but here it is around 31%.Can we change it?
mr.harsh said:
overclocking to 264 may be dangerous.It can harm the device.Overclocking to 20% is safe but here it is around 31%.Can we change it?
Click to expand...
Click to collapse
Below 264 is fine. Want to change the clock lower? run omap_OverClock from the startmenu/programs folder. I run it at 216 MHz always. No problem.
mattanur said:
Below 264 is fine. Want to change the clock lower? run omap_OverClock from the startmenu/programs folder. I run it at 216 MHz always. No problem.
Click to expand...
Click to collapse
Overclocking is always dangerous. what about the battery life ?? overclocking drains battery faster.
Duron23 said:
Overclocking is always dangerous. what about the battery life ?? overclocking drains battery faster.
Click to expand...
Click to collapse
Yes. Overclocking is always dangerous. But if u use it judiciously it works wonders. I have not seen any appreciable drain in battery life. I used to get almost 2 days previously. now also i am getting the same amount. May be a couple of hours less. It increases the ram speed correspondingly.
thanks for the heads-up...i'll give it a go and check out the results and post them up
Incoming calls not being displayed
I'm new to this flashing rom and stuff like this, but with ALL my help from this site(thanks to everybody) I had successfully upgraded my rom to Karanz_ULTIMATE v7.12 on my new gene.
But coming to the main point, the MAIN reason for flashing my rom was that i had issues with my stock rom of incoming calls not being displayed(although the ring could be heard to the call on the other end) occasionally. This issue had landed me into some HUGE trouble which scares the crap out of me even today. After a few days of using this newly installed rom the issue surfaced again and now I'm afraid to use this phone any more.
I know for sure there are great GODS in this forum who can solve issues like these in a breeze, so I humbly submit my heartfelt request to please advise a solution. ANYBODY PLEASE for God's sake help me out. PLEASE...
Additional information about my Phone:
onbl 1.17.0000
spl 1.07.0ref
gsm 02.79.90
os 1.17.0.0
Any more info anybody needs, I shall give(provided you tell me where to find it).

Categories

Resources