Can anyone enlighten me on the following or point me to a source?
1. How is memory allocated on the 6700 in regards to the ROM?
Meaning I always have a 65M Rom image but my storage memory
decreases after changing OEMs, etc and reflashing. I thought ROM
was separate from storage memory? Does moving files (initflashfiles
or provXML) after flashing put them in storage memory?
2. Why are some of my files not being moved when other are?
Example:The following provXML code does absolutely nothing:
Code:
<characteristic type="FileOperation">
<characteristic type="\Windows\Rings" translation="install">
<characteristic type="MakeDir" />
<characteristic type="Move">
<parm name="Source" value="\Windows\cRing1.mp3" translation="install" />
</characteristic>
</characteristic>
</characteristic>
I've also tried this:
Code:
<characteristic type="FileOperation">
<characteristic type="\Windows\Rings" translation="install">
<characteristic type="MakeDir" />
<characteristic type="Copy">
<parm name="Source" value="\Windows\cRing1.mp3" translation="install" />
</characteristic>
</characteristic>
<characteristic type="\Windows\cRing1.mp3" translation="install">
<characteristic type="Delete">
</characteristic>
</characteristic>
</characteristic>
And I've tried the appropriate initflashfiles.txt:
Copied: Sometimes
Moved: Never
Code:
;==================================================
; Start: FileSetup[MyCustomRingtones]
;==================================================
;==================================================
; Start: Shortcuts[ MyCustomRingtones]
;==================================================
; NONE
;==================================================
; End: Shortcuts[ MyCustomRingtones]
;==================================================
;==================================================
; Start: Files[MyCustomRingtones]
;==================================================
;Incase we get put ahead of the windows directory constructor
Directory("\Windows"):-Directory("Rings")
;Move Files
Directory("\Windows\Rings"):-File("cRing1.mp3","\Windows\cRing1.mp3")
;==================================================
; End: Files[MyCustomRingtones]
;==================================================
;==================================================
; End: FileSetup[MyCustomRingtones]
;==================================================
Any Thoughts?