View Single Post
  #5704 (permalink)  
Old 07-02-2009, 05:01 PM
joojoobee666's Avatar
joojoobee666
PPCKitchen Crew
Offline
Location: Ohio
 
Join Date: Jul 2008
Posts: 1,442
Reputation: 10635
joojoobee666 can't get a higher reputation leveljoojoobee666 can't get a higher reputation leveljoojoobee666 can't get a higher reputation leveljoojoobee666 can't get a higher reputation leveljoojoobee666 can't get a higher reputation leveljoojoobee666 can't get a higher reputation leveljoojoobee666 can't get a higher reputation leveljoojoobee666 can't get a higher reputation leveljoojoobee666 can't get a higher reputation leveljoojoobee666 can't get a higher reputation leveljoojoobee666 can't get a higher reputation level
Mentioned: 2 Post(s)
Tagged: 0 Thread(s)
Re: WM 6.5 Kitchen QVGA and VGA Developer Edition

Quote:
Originally Posted by qball1616 View Post
@joojoobee666: do you have any other suggestions as to what I should do to get my visual kitchen working to create a good booting ROM? Nothing that we have done has fixed the problem of it not loading any 6.5 themes, and also activsync isn't working on any build
I thought I read about someone else having the same issues. Maybe both issues are related to provxml files not being executed on the initial boot? (there is a provxml for the themes as well). The reason I think this is because I saw someone on XDA forum with all kinds of weird crap due to provxml's not working properly after changing kitchens. (No resolution)

Some info I found on testing provxml files:
http://forum.xda-developers.com/showthread.php?t=519548

This is all assuming that the XIP is good.

Update: I did read that permission issues could cause the provxml files to not be executed. They should all be marked as Hidden, System and read only. You can verify this by looking in your dump folder at the provxml files, or go to the command prompt in your dump folder and run "attrib name_mxip.provxml" and see what attributes they have.

Update 2: Found some code (thanks Anryl) you can add to your kitchen to make sure permissions are correct. Use this on the \temp\dump before building the imgfs.

Code:
cd temp\dump
attrib S00? +H /S
rem attrib *.* +A -S -H -R
attrib *.dll +S +H +R
attrib *.exe +S +H +R
attrib *.lnk -S -H -R
attrib *.csv +S +H +R
attrib *.htm +S +H +R
attrib *.mui +S +H +R
attrib *.doc +S +H +R
attrib *.dat +S +H +R
attrib *.provxml +A +S +H +R
attrib *.xls +S +H +R
attrib *.xml +S +R
attrib *_manila +H
attrib *manil* +H
attrib *.mid +S +R
attrib *.vol +S +R
attrib *.txt +S +R
attrib *.wav +S +R
attrib *.wma +S +R
attrib *.png +H
attrib *.brn +H
attrib *.gif +S +R
REM Fix for smartskey.inf
attrib *.inf -S -R -H
attrib +A +R +H +S *.provxml 
attrib -H -S -R *.jpg
attrib -H -S -R *.bmp
ECHO. Fixing Attributes
cd..
cd..
I don't know if this will help or not, but I guess it can't really make things worse since you don't have a fully functional ROM anyhow.

Last edited by joojoobee666; 07-03-2009 at 08:19 AM. Reason: Cleaned up code
Reply With Quote
This post has been thanked 3 times.