papamopps
07-02-2008, 09:20 PM
Hi - as long as we are waiting for some cook to provide a ROM with UC customizing.... take a look here:
http://www.gpcarreon.com/rebuildcab/
to make a cab out of a .xml file with all your customs settings like here as an example....
http://forum.xda-developers.com/showpost.php?p=1896955&postcount=2
Good luck!
Quted from Sleuth:
Registry CSPs
Within the registry type, I set a lot of cool stuff. You should be able to firgure out how it works if you have basic registry skills. Essentially, setting values for any registry key looks like this:
Code:
<characteristic type="HKCU\ControlPanel\BackLight">
<parm name="BatteryTimeout" value="240" datatype="integer"/>
<parm name="ACTimeout" value="360" datatype="integer"/>
</characteristic>
First you set the key with the <characteristic type> tag, then you set values with the <parm name> tags. Binary values are a PITA since they're encoded Base 64 (see my entry for Owner Information above). If you want to set owner information as I did in the example, then you need to convert Unicode to Base64. Post here if you want to learn how and I'll show you how I do it.
http://www.gpcarreon.com/rebuildcab/
to make a cab out of a .xml file with all your customs settings like here as an example....
http://forum.xda-developers.com/showpost.php?p=1896955&postcount=2
Good luck!
Quted from Sleuth:
Registry CSPs
Within the registry type, I set a lot of cool stuff. You should be able to firgure out how it works if you have basic registry skills. Essentially, setting values for any registry key looks like this:
Code:
<characteristic type="HKCU\ControlPanel\BackLight">
<parm name="BatteryTimeout" value="240" datatype="integer"/>
<parm name="ACTimeout" value="360" datatype="integer"/>
</characteristic>
First you set the key with the <characteristic type> tag, then you set values with the <parm name> tags. Binary values are a PITA since they're encoded Base 64 (see my entry for Owner Information above). If you want to set owner information as I did in the example, then you need to convert Unicode to Base64. Post here if you want to learn how and I'll show you how I do it.