Quote:
Originally Posted by nomad_delta
hmm... i tried building a ROM without Titanium or Manila using the kitchen w/ the 23506 SYS and specifying "none" in the batch file, but it installed Titanium anyway.
--nomad_delta
|
heres your solution
Code:
echo > SYS\%buildver%\Chome\_only_both >NUL
echo > SYS\%buildver%\Chome_DPI_192\_only_both >NUL
echo > SYS\%buildver%\Chome_Lang_0409\_only_both >NUL
echo > SYS\%buildver%\Bronze\_only_both >NUL
echo > SYS\%buildver%\BronzeNonEA\_only_both >NUL
echo > SYS\%buildver%\Bronze_DPI_192\_only_both >NUL
echo > SYS\%buildver%\Chome\_only_titanium >NUL
echo > SYS\%buildver%\Chome_DPI_192\_only_titanium >NUL
echo > SYS\%buildver%\Chome_Lang_0409\_only_titanium >NUL
echo > SYS\%buildver%\Bronze\_only_titanium >NUL
echo > SYS\%buildver%\BronzeNonEA\_only_titanium >NUL
echo > SYS\%buildver%\Bronze_DPI_192\_only_titanium >NUL
find that in the cmd file. remove the >NUL at the end of each line, apparently we can't do a redirection after a redirection.. make it look liek this
Code:
echo > SYS\%buildver%\Chome\_only_both
echo > SYS\%buildver%\Chome_DPI_192\_only_both
echo > SYS\%buildver%\Chome_Lang_0409\_only_both
echo > SYS\%buildver%\Bronze\_only_both
echo > SYS\%buildver%\BronzeNonEA\_only_both
echo > SYS\%buildver%\Bronze_DPI_192\_only_both
echo > SYS\%buildver%\Chome\_only_titanium
echo > SYS\%buildver%\Chome_DPI_192\_only_titanium
echo > SYS\%buildver%\Chome_Lang_0409\_only_titanium
echo > SYS\%buildver%\Bronze\_only_titanium
echo > SYS\%buildver%\BronzeNonEA\_only_titanium
echo > SYS\%buildver%\Bronze_DPI_192\_only_titanium
I have fixed this in the kitchen and will be included in future nightly kitchens. I forgot to plug my laptop in last night and it hibernated, so there were no uploads last night