Quote:
Originally Posted by humrod
Follow the instructions about the attributes, I made this inclusion on my createROM.bat:
But still not work. Can someone give a see, and tell me if is wrong?
Thanks in advance
|
hi,
if you're using latest bepe kitchen, you should place the attributes after the line tools\platformrebuilder.exe as shown below
Code:
TOOLS\platformrebuilder.exe > build-log.txt
if not "%errorlevel%"=="0" goto error
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..
copy tools\kaiser.htcrtproj temp\kaiser.htcrtproj
REM ===========================================================================================
start "Creating ROM..." /D temp /WAIT "%~d0%~p0TOOLS\CreateROM.bat"
if not "%errorlevel%"=="0" goto error
REM ===========================================================================================
regards,
twisted