|
||||
|
Re: Instructions re making OEM; Next steps (DOC repartition?
Quote:
http://www.codeppc.com/telechargemen...nf/msceinf.htm (Get the english version Simply extract all files in the CAB to a folder Quote:
one or more folders SETUPDLL.dll Tools.inf open the Windows folder You're going to be using most everything in here, but you will be doing some work on it. You will not be using CheckFile.exe or __cusTSKTEMP.exe if they are there, and you will be using the contents of Platformxxx.reg (That's your registry entries!) and CM_Entries.xml (those are the ones that are going into your mxip_PACKAGE_REV.provxml file) Ok - so copy all files except the above to your OEM folder, make a UNICODE reg file as in step 4 below and copy the contents of the .reg file into it, and make a plain text file named mxip_PACKAGE_REV.provxml (where PACKAGE is your package name, and REV is some 3 digit rev number) and copy the contents of the CM_Entries.xml into it. You do not need this proxml file if there is no CM_Entries.xml file, or if its empty. Finally, look at the Customize.lst file in Notepad - it tells you where any addition files are in the CAB - for example if it says \temp\PhoneSetting.htm Then that file (PhoneSettings.htm) will be in the temp directory one up from Windows... so copy those files to your OEM folder too... and you'll then need to copy those files via initflashfiles.txt to their correct locations... often the correct location will be in the CM_Entries.xml file, so you can edit the move operations out of there and just put the right moves into initflashfiles.txt Example: Customize.lst : Code:
\temp\PhoneSetting.htm Code:
<wap-provisioningdoc> <characteristic type="FileOperation"> <characteristic type="\Program Files\IOTA\jTelDll.dll" translation="install"> <characteristic type="Copy"> <parm name="Source" value="\temp\jTelDll.dll" translation="install"/> </characteristic> </characteristic> <characteristic type="\temp\jTelDll.dll" translation="install"> <characteristic type="Delete"> <parm name="ForceDelete"/> </characteristic> </characteristic> </characteristic> <characteristic type="Registry"> <characteristic type="HKLM\Software\Apps" translation="filesystem"> <parm name="CabName" datatype="string" value="IOTA_v1_10" translation="filesystem"/> </characteristic> </characteristic> </wap-provisioningdoc> initflashfiles.txt Code:
Directory("\Program Files\IOTA"):-File("jTelDll.dll","\Windows\jTelDll.dll")
Now, back to the checklist! Quote:
|
|
|
|