Quote:
	
	
		| 
					Originally Posted by FormerPalmOS  There is a bit of misinformation here.  The approach you are suggestion will indeed change the pagepool but it will always change it to a static value.  There is no concept of an XXX size dynamic page pool.  Dynamic means the device can use as much RAM as it wants for a pagepool.
 The procedure above is changing the value that gets written into a memory manager structure that defines the pagepool size.  In ARM assembly language the two bytes being changed represent a constant and a shift value.  If the 2nd byte is 16, then the value is the first byte.  If the 2nd byte is 15 then the value is 4x the first byte.  Thus 02 15 = 08 16 = 8MB pagepool.  If you want a dynamic page pool, use 00 15.  This establishes the value of 0 written to the memory manager structure (00 16 will yield the same result).  Adventuresome non-Verizon folks could try this and see how it goes.  Verizon folks should probably NOT try this.
 
 Write the same value to both occurences of xx 15 or xx 16 - eg 04 15 A0 03 04 15 A0 13 will give you a 16MB page pool.
 
 Non-Verizon folks can go for 24MB.  Higher is possible but you may reach diminishing returns beyond 24MB.  Us poor gimped Verizon folks should go for 8-12 for fully-loaded ROMs, 16MB if stripped down.  For every 4MB more of pagepool that's 4MB less of program memory.
 
 Note - the pagepool changer app floating around WILL NOT WORK on Touch Pro ROMs without an additional hex edit.  If you are doing hex edits, might as well just make the above change and skip using the pagepool changer.
 | 
	
 this sounds reasonable however the information posted here is not new. I'm wondering why nobody has challenged this before now. 
regardless i will update the first post to keep everyone informed.