thefunkygibbon
10th October 2007, 12:25 PM
I'm trying to cook my own rom with XML files being executed on the preconfig.txt file but i'm having some issues
a) copying a file from the Windows folder into the ringtone folder and making it the default ringtone.
b) change the regional settings to UK English,
this is my xml for these two bits
<?xml version="1.0" encoding="utf-8"?>
<wap-provisioningdoc>
<!--Ringtone-->
<characteristic type="FileOperation">
<characteristic type="\Windows\Rings\bennyhill.wma" translation="install">
<characteristic type="Copy">
<parm name="Source" value="\Windows\benny.wma" translation="install" />
</characteristic>
</characteristic>
</characteristic>
<characteristic type="Registry">
<characteristic type="HKCU\ControlPanel\Sounds">
<characteristic type="RingTone0">
<parm name="Sound" value="\Windows\Rings\bennyhill.wma" datatype="string" />
<parm name="Category" value="Ring" datatype="string" />
</characteristic>
</characteristic>
</characteristic>
<!--Region-->
<characteristic type="Locale">
<parm name="Locale" value="2057" />
</characteristic>
</wap-provisioningdoc>
c) remove the files which i'm having to install as cabs instead of OEM's ( for some reason the OEM doesnt work properly)
this is my delete files bit
<?xml version="1.0" encoding="utf-8"?>
<wap-provisioningdoc>
<!--deletefiles-->
<characteristic type="FileOperation">
<characteristic type="Windows\picsel.cab" translation="install">
<characteristic type="Delete">
<parm name="ForceDelete" />
</characteristic>
</characteristic>
</characteristic>
<characteristic type="FileOperation">
<characteristic type="Windows\PCMKeyboard09b.cab" translation="install">
<characteristic type="Delete">
<parm name="ForceDelete" />
</characteristic>
</characteristic>
</characteristic>
</wap-provisioningdoc>
i must be doing something very wrong if none of these xml things work :(
a) copying a file from the Windows folder into the ringtone folder and making it the default ringtone.
b) change the regional settings to UK English,
this is my xml for these two bits
<?xml version="1.0" encoding="utf-8"?>
<wap-provisioningdoc>
<!--Ringtone-->
<characteristic type="FileOperation">
<characteristic type="\Windows\Rings\bennyhill.wma" translation="install">
<characteristic type="Copy">
<parm name="Source" value="\Windows\benny.wma" translation="install" />
</characteristic>
</characteristic>
</characteristic>
<characteristic type="Registry">
<characteristic type="HKCU\ControlPanel\Sounds">
<characteristic type="RingTone0">
<parm name="Sound" value="\Windows\Rings\bennyhill.wma" datatype="string" />
<parm name="Category" value="Ring" datatype="string" />
</characteristic>
</characteristic>
</characteristic>
<!--Region-->
<characteristic type="Locale">
<parm name="Locale" value="2057" />
</characteristic>
</wap-provisioningdoc>
c) remove the files which i'm having to install as cabs instead of OEM's ( for some reason the OEM doesnt work properly)
this is my delete files bit
<?xml version="1.0" encoding="utf-8"?>
<wap-provisioningdoc>
<!--deletefiles-->
<characteristic type="FileOperation">
<characteristic type="Windows\picsel.cab" translation="install">
<characteristic type="Delete">
<parm name="ForceDelete" />
</characteristic>
</characteristic>
</characteristic>
<characteristic type="FileOperation">
<characteristic type="Windows\PCMKeyboard09b.cab" translation="install">
<characteristic type="Delete">
<parm name="ForceDelete" />
</characteristic>
</characteristic>
</characteristic>
</wap-provisioningdoc>
i must be doing something very wrong if none of these xml things work :(