[FYI] How to convert .hv to .txt - Windows Mobile

I am trying to convert default.hv from a dumped ROM to a .txt/.reg file. I have found rgucomp and only get errors using Windows 7. The error says something about not being able to create the file (maybe UAC problem, though I run cmd prompt as admin...). I used the following commands
Code:
SET _FLATRELEASEDIR=.
RGUCOMP -o default.hv -nologo > boot.txt
Is there another tool that will allow conversion of *.hv to .txt easily with Windows 7? Thanks.
Mod edit: Solved

Have you tried this?
http://forum.xda-developers.com/showthread.php?t=504286&page=2

Use this, all included .
http://www.przeklej.pl/plik/hv-7z-0018pl2jobq4

seems to be nice answers so.... lets solve this as it is

+ Que PPC said:
seems to be nice answers so.... lets solve this as it is
Click to expand...
Click to collapse
Yep, thanks for the links guys.

Related

n00b question about adding my own programs

Okay I understand you have to use mkrom and Linux (or cygwin on Windows) to roll your own ROM my question is regarding how one could say remove one program from the SE ROM and include something else, for instance take off the byte counter and put another different counter on or such, would you just copy the necessary files (.exe and dll's) to the files1 or files2 folder and that's it ? What more is involved? Thanks in advance!
for simple programs, that is all there is to it.
some might need more research, as to which registry settings need to be tweaked to get te program to run from the windows directory. and what settings it needs to run at all.
You copy the files to either files1 or files2. Both sets of files end up in the \Windows subdir. So if you do not want to copy the files to RAM (see below), you should make sure the program is set to run from \Windows. Then you add any necessary registry keys to "default.reg", and any file-copy or directory creation commands to initobj.txt. Then run "mkrom <ROMfile>" and hey-presto.
Thanks so much for all your guys awesome work!!
entropy1980 said:
ok sounds good, what would one need to do to mod the registry for the programs (By that I mean prior to booting) I don't want to be mucking around with a reg editor after the device boots just to get the progs to work...
Click to expand...
Click to collapse
Not sure I understand the question. Default.reg just holds the entire registry as present after a cold restart. So if you put something in there, this will be in the registry when the device wakes up.
I think we wrote at the same time , so you answered my question before I posted it !!! What you said made complete sense! Thanks!
entropy1980 said:
[...]so you answered my question before I posted it !!! [...]
Click to expand...
Click to collapse
I installed the phpBB telepathy mod a couple of days ago, so I guess it's working.
Hey I knew you were going to say that.... :lol: :lol:
hi,
i want to add the skelmir java virtual machine (thats default installed in windows\ceej) and copy the swingall.jar in the windows\ceej map.
I have the cab file of the virtual machine but i can't find out which files are in it (when i open it with cabextract is shows .001 files and not the files that i find back in the device)
please help me
Using Special Edition ROM, Tthe CabInst tool will run CAB files on the device if you move it there manually and double-tap it. It allows to set a new directory to install in.
Also the System Snapshot tool will write a file in the root of the device which holds a list of the entire filesystem and registry contents, so you can compare and see what changed. UltraEdit for the desktop has a compare function.
Good luck...
hi,
i installed it to a seperate directory and zipped the files. i also took a snapshot when the xda was fresh and after install. i only can't find where the xda's gets is files from in:
43 <! [\Windows\AppMgr]
8544 <! 31/12/2002 12:31 1632 FC0E9EE1 Skelmir CEEJ Virtual Machine.DAT
8576 <! 16/02/2003 23:10 27 AEBB1DF3 CEEJ.lnk
8587 <! 16/02/2003 23:10 40 1EAF4EB3 CEEJ Examples.lnk
8588 <! 16/02/2003 23:10 27 AEBB1DF3 CEEJ.lnk
because these are not in the map where i extracted the cab file too. maybe you can take a look for me and tell me what i have to change in mkrom to have ceej by default installed
the extraced cab map:
http://www.devosjansen.nl/xda/java installed.rar
the snapfiles:
http://www.devosjansen.nl/xda/xda snapshots files.rar
thanks in advance
laurens0619 said:
hi,
i installed it to a seperate directory and zipped the files. i also took a snapshot when the xda was fresh and after install. i only can't find where the xda's gets is files from in:
43 <! [\Windows\AppMgr]
Click to expand...
Click to collapse
These files are generated during the install process, and contain uninstall information. You do not need to write them if you install in ROM, since you don't need/want your programs to show up the in the 'Add/Remove Programs' dialogue.
ah i understand,
so i just put the files in the files1 or files2 directory and add this reg files to the default.reg? i dony really understand the readme file
ah little kick,
isn't also good for the next SE rom? because you have finally a java virtual machine on the xda and the app is freeware (got it from www.skelmir.com)
laurens0619 said:
isn't also good for the next SE rom?
Click to expand...
Click to collapse
Noted...
nice but can you please help me out for the moment? i dont know which part i must add to the default.reg file
laurens0619 said:
I dont know which part i must add to the default.reg file
Click to expand...
Click to collapse
default.reg holds the registry that is present when the system wakes up from cold-boot. So any registry entries your installer (or first run of the app) has made that you would like to have present should go in there. Clear enough?
almost
so i just copy paste the **** at the end of the reg file? and the files in the files 2 map
but how will the rom know where to put the files??
sorry if i'm stupid but i don't want to f*ck my rom so i can use me xda's as a frisbee
Yes, the registry entries can be pasted at the end of default.reg. It doesn't matter if there's earlier entries with the same values, since the latter ones override.
All files in files1 and files2 will end up in \Windows, and if you want them somewhere else, (where they'll take up RAM), you must manually copy them (or pre-made links pointing to them) by issueing commands in initobj.txt.
Take a real close look at initobj.txt, and you'll get the picture.

How to obtain "Default.reg" for 4.01.16

Hi,
I am looking for a "Default.reg" and "initobj.txt" for the new t-mobilr ROM version.
Are they available somewhere. How do i go about creating them.
I want to build my own customer ROM.
Thanks for any help.
Just do following:
Please extract default.fdf, initobj.dat, initdb.ini from this romimage on a windows machine, by running 'mkdir romfile & dumprom cfg\\rom.nb1 -d romfiles'
and convert them with the following shell commands
'perl fdf2reg.pl default.fdf cfg/default.reg'
'tr -d "\0" <initobj.dat >cfg/initobj.txt'
'cp initdb.ini cfg/initdb.ini'
HTH
Stefan
Thanks LumpiStefan
I created the default.reg using your suggestion. I somehow got a very small file (26k) compared to the one in the mkrom distribution. Does that look right ?
ppc2003 has the registry init files split over the main file: default.fdf
and several unicode files named 'mxip_XXXXX.rgu'
that is why it is smaller.
rchir said:
Thanks LumpiStefan
I created the default.reg using your suggestion. I somehow got a very small file (26k) compared to the one in the mkrom distribution. Does that look right ?
Click to expand...
Click to collapse
Yes, that´s right. My file have the same size....
Stefan
So i am safe to add my entries only to the small default.reg ?
thanks

[NEW RELEASE] ◄ HyperCore Kitchen ► MULTIDEVICE !!!

As you can see I made a hard copy of one of the posts of anichillus!
This is his HyperCore Kitchen and I made some minor changes to make it work for our Polaris!
HyperCore
PUBLIC BETA​
The most complex KITCHEN a begginer cook may ever need.
Easy to use but also very complex, it can be usefull to anyone.
Why ask and wait for others to make the perfect ROM for you when you got the power to do it yourself ?
~. Base ROM .~​* NO BASE ROM ! but ANY ROM !
~. Best part .~​* IT USES TADZIO TOOLS
* YOU CAN OPTIMISE EXE's and DLL's, SO IF YOU WANT EVEN MORE SPACE, YOU'LL GET IT
* IT CAN BE USED ON ANY DEVICE WITH VERY LITTLE MODIFICATIONS !!!!!
* NO LONGER LIMITED BY ANYONE OR ANYTHING.
* YOU CAN COOK ANY ROM YOU LAY YOUR EYES ON VERY EASY
* IT HAS ADVANCED ERROR CHECK
~. It will install .~​Core folder on the system drive. Some tools and settings required.
HyperCore folder on the Desktop. There is your kitchen. You can move it wherever you want.
The place where you actually use it is HyperCore\Panel.
~. How To .~​- First of all edit the file named "Device.txt" located on the "Core\ACK\" folder located on systemdrive (mostly drive C:\)
Edit as following.
If you have a :
HTC Wizard : " set device=Wizard "
HTC Hermes : " set device=Hermes "
HTC Artemis : " set device=Artemis "
HTC Herald : " set device=Herald "
HTC Universal : " set device=Universal "
HTC Trinity : " set device=Trinity "
HTC Prophet : " set device=Prophet "
HTC Polaris/Kaiser : " set device=Polaris "
Click to expand...
Click to collapse
Save it and then you're good to go.
It's much similar to the old Core kitchen...so those of you who used it ...will feel comfortable with it. Regenerated batch scripts, better, and i hope bug free.
~. Guides .~​* Hermes Cookbook - THANKS to sambartle
* My Way of cooking
* How to ADD/REMOVE programs -THANKS to mfrazzz
~. Notes .~​Since this is still a public BETA, I await your problems/ideas/concepts.
If you spot a bug, i suggest to send me a PM as well as a post on the thread.
I suggest having a ROM to make a backup in case you do something wrong
I created and tested this tool for WindowsMobile 6 , but WM5 should work OK too.
~. Download .~​
HyperCore_1.02 on RapidShare
Special thanks :
* anichillus - for this kitchen
* Papamopps - for real support
* nandlal_mk - for answering questions and DSM editor
* mUn - for finding the time to answer some of my questions
* molski - for i started working on his tools and still used some of them
* Tadzio - for his tools and patience
* bepe - for his tools
* the-equinoxe - for his splash-screen tools
* naboleo - for his initflashfiles generator
* dutty - for his NBH Tool
few others that surely i forgot to mention Sorry..
Thanks for sharing this! It's a revolution for the chef's here.
I suggest working on the Polaris Project with this baby!
THX too ... i will Port it on the Niki Plattform too ... or if you can Handle it ... pls write a PM and i will help you!
thx NikMel for sharing...and happy to see that you've got an HTC Cruise...
-maybe your polaris'rom release for next ?
You never know?!?!
Very good job!!! Thank you so much for spreading this info to all of us!!!
Nice work man! Finally we have it also for Polaris
have fun!
Thanks alot for your efforts. I have to say though, the kitchen doesnt work at all for me on my Vista Ultimate x86.
I somewhat got it to work by editinig some of the paths int he BAT files (see below for examples) but it's nearly impossible to track down all paths, I get "could not be found..." and paths errors all the time...
Examples:
DUMP_ROM.BAT, when the working directory is %systemdrive%\Core\Batch\, the provided cd /../../ on line 4 leads to %systemdrive% where the batch stops because IF EXIST "Extract\Source\%rom%" etc breaks because the folders \EXTRACT\etc do - in fact- not exist in %systemdrive%
Extract.bat, the working directory is
%systemdrive%\Core\Batch\Links\ and the provided cd /../../ on line 4 leads to a path error when you try to launch the folder \Extract which doesnt exist in %systemdrive%\Core of course.
And a general question: I didnt really think it through, but it seems illogical and more prone to errors to me: why is there so much stuff doubled, once in HyperCore and once in the systemdrive\Core directory...?
You did install this kitchen and not extracted?
schaggo said:
Thanks alot for your efforts. I have to say though, the kitchen doesnt work at all for me on my Vista Ultimate x86.
Click to expand...
Click to collapse
There is no call to an etc directory where do you see that?
schaggo said:
DUMP_ROM.BAT, when the working directory is %systemdrive%\Core\Batch\, the provided cd /../../ on line 4 leads to %systemdrive% where the batch stops because IF EXIST "Extract\Source\%rom%" etc breaks because the folders \EXTRACT\etc do - in fact- not exist in %systemdrive%
Extract.bat, the working directory is
%systemdrive%\Core\Batch\Links\ and the provided cd /../../ on line 4 leads to a path error when you try to launch the folder \Extract which doesnt exist in %systemdrive%\Core of course.
Click to expand...
Click to collapse
Just some file are double and this is how anichillus made it.
schaggo said:
And a general question: I didnt really think it through, but it seems illogical and more prone to errors to me: why is there so much stuff doubled, once in HyperCore and once in the systemdrive\Core directory...?
Click to expand...
Click to collapse
Oh wow, I didnt expect an answer so soon...! Thanks alot!
There is no etc directory of course, etc means and so on... I figured everybody understands etc... my bad, sorry
What I meant with \Extract\etc is if the script can't reach \Extract it cant reach any subdirectory either...
Ok, now to the kitchen. No, I didnt use WinRAR to extract it, I executed the EXE and it got extracted to C:\Core\... and the HyperCore folder gets moved to the desktop after the extraction is done. So the directories are just fine, they are how they are supposed to be. But - and that I suppose is the problem - when I check the properties of the shortcuts in the HyperCore\Panel directory, their working directory (the directory the script does its actions in) is the directory the target batch script lays at and not the directory where the shortcut is placed. So the batch tries to access empty, non-existant folders all the time...
Example: Shortcut in Desktop\HC\Panel\Extract will execute a batch script, but the working directory of the batchscript isnt Desktop\HC\Panel\Extract where it got executed from but its the directory where the BAT effectively is: C:\Core\Tools\Extract
So placing a cd \..\..\ in the batch file won't change the working directory two levels up to Desktop\HC\Panel\Extract but it changes two levels up from the folder the batch lies: to C:\Core\Tools\Extract
Do you use Vista too? It could be that the relative (and correct) paths get updated in the shortcuts when you move the directory to another place. Could it be that this new "feature" exists in Vista? I guess I have to try it in an XP installation in a virtual machine...
<edit>
I found the cause: a cd / changes to the root directory! so cd /../../ will result in C:\ which of course is wrong! I started editing the batch files and I'm replacing all cd /.. with cd .. and now its working!
Check it out and try yourself in your command line tool:
Code:
Microsoft Windows [Version 6.0.6000]
Copyright (c) 2006 Microsoft Corporation. Alle Rechte vorbehalten.
C:\>cd "Program Files"
C:\Program Files>cd Adobe
C:\Program Files\Adobe>cd "Reader 8.0"
C:\Program Files\Adobe\Reader 8.0>[B][COLOR=red]cd ..[/COLOR][/B]
[B][COLOR=red]C:\Program Files\Adobe>[/COLOR][/B]
C:\Program Files\Adobe>cd "Reader 8.0"
C:\Program Files\Adobe\Reader 8.0>[B][COLOR=red]cd /[/COLOR][/B]
[B][COLOR=red]C:\>[/COLOR][/B]
</edit>
Dear schaggo,
I'm in XP and it works as is.
True when you use "cd /" it gets you back to the root of drive.
C:\etc..\etc..\etc..\>cd / goes to C:\
D:\etc..\etc..\etc..\>cd / goes to D:\
etc..
The path issue is a VISTA behavior so you better try it in XP (virtually or hard installed).
Desktop\HC\Panel\Extract is a directory and all the batch file to extract a rom file are in that directory.
schaggo said:
...
Example: Shortcut in Desktop\HC\Panel\Extract will execute a batch script, but the working directory of the batchscript isnt Desktop\HC\Panel\Extract where it got executed from but its the directory where the BAT effectively is:....
Click to expand...
Click to collapse
Thanks for sharing this!
Well yeah, I know where the files are.
But hey, if there are cd /../../ commands all over the batch files (check them yourself), it would mean that almost every batch file is trying to access the \Extract folder on C:\ at some point, which just ISNT placed in C:\ on any system!
And you say the cd / command produces the exact same behaviour on XP, then it can't be a Vista issue.
schaggo,
I don't know if it's me or you but we talk parallel and we don't listening to each other.
You better try it on a XP system.
Thanks a lot.
It works when i changed "/../" to "../" in my Vista.
It seems some ROM can't dump well, such as "Polaris_WWE_0.67_Opera_bepe"
alanxzg,
Bepe is using a method to bundle all rgu/dsm files in one.
This is the reason.
alanxzg said:
Thanks a lot.
It works when i changed "/../" to "../" in my Vista.
It seems some ROM can't dump well, such as "Polaris_WWE_0.67_Opera_bepe"
Click to expand...
Click to collapse
Hey, I just found out about this
For it to work on Vista you'll need to edit all the batch files located in C:\Core\Batch so that instead of cd /../ or cd /../../ ...and so on will be cd ../ or cd ../../
More exactly remove first / after cd.
Don't worry about how it's made...it was the only possible way to link icons and folders that are dynamic. You can move the HyperCore folder wherever you want on your harddrive. It will work.
I am guessing you added the new IMGFS tools to it so it works with WM6.1 ?
This version also works on Kaiser...since from what I know same arguments are used. Only difference is the RUU and possibly others. Anyway the HyperCore 2 is under way .
Cheers !
TNX for your input!!!
anichillus,
TNX for your input!!!

Extracting Omnia Rom

Hi there,
i would like to try to make a hybrid rom with an omnia rom.
Can anyone explain how to extract the exe file.
I downloaded the rom from kaiser rom dev section.
Its the normal update file from Samsung
Thanks in advance
C'mon guys, no one around here knows how to get the rom out of that file?
JeckyllHavok said:
C'mon guys, no one around here knows how to get the rom out of that file?
Click to expand...
Click to collapse
Get winrar or something, right click on the exe and click extract here?
veyka said:
Get winrar or something, right click on the exe and click extract here?
Click to expand...
Click to collapse
thats not the way for Omnia's ROM
the procedure is as follows:
1. check out this post.
2. after step 5, download this and use viewbin.exe to find out the start offset and length of imgfs.
3. use cvrtbin -r -a (start offset, don't use '0x' prefix) -l (length of imgfs, don't use '0x' prefix) -w 32 xxx.bin
4. after this u will get an nb0 file. use nbsplit with -kaiser switch on the nb0 to get xx.nb0.payload
5. use prepare_imgfs.exe xxx.nb0.payload -nosplit
6. use view_imgfs.exe or imgfstodump.exe to get the 'dump' folder.
thats not the way for Omnia's ROM
Click to expand...
Click to collapse
Yes, you can't open the file with winrar or zip.
Its not just a self extractin file.
It doesn't create temp files, too.
JeckyllHavok said:
Yes, you can't open the file with winrar or zip.
Its not just a self extractin file.
It doesn't create temp files, too.
Click to expand...
Click to collapse
check out my post above for the procedure
PS: i didn't learn this procedure myself, so i don't take the credit.
Hey man,
thanks for your answer, but i can't find B000F in the file.
I use WinHex
JeckyllHavok said:
Hey man,
thanks for your answer, but i can't find B000F in the file.
I use WinHex
Click to expand...
Click to collapse
B000FF is in ASCII (text). search again, it must be there 3 times
OK now i found it but i don't understand part 3 of the manual.
The string 0x060000EA3B is in Hex 30 78 30 36 30 30 30 30 45 41 33 42, right?
But i can't find it.
htctouchp said:
thats not the way for Omnia's ROM
the procedure is as follows:
1. check out this post.
2. after step 5, download this and use viewbin.exe to find out the start offset and length of imgfs.
3. use cvrtbin -r -a (start offset, don't use '0x' prefix) -l (length of imgfs, don't use '0x' prefix) -w 32 xxx.bin
4. after this u will get an nb0 file. use nbsplit with -kaiser switch on the nb0 to get xx.nb0.payload
5. use prepare_imgfs.exe xxx.nb0.payload -nosplit
6. use view_imgfs.exe or imgfstodump.exe to get the 'dump' folder.
Click to expand...
Click to collapse
Great! it works for me. In my case I had an img file (I presume that some one extracted from exe). If you run GrandPrix flahs utility and load this .img file you get a _xip0.nb0 that can be used as xxx.bin as stated above.
btw, how can we extract xip? Failed to extract with dumprom/rommaster the payload file generated in step 5...
hey guys,
no luck with the above procedure.
i Made a bin file starting at B000FF and finish after the 12 "00" before
060000EA3B .
But cvrtbin gives the error "Could not allocate memory for raw data"
Please Help
g77 said:
Great! it works for me. In my case I had an img file (I presume that some one extracted from exe). If you run GrandPrix flahs utility and load this .img file you get a _xip0.nb0 that can be used as xxx.bin as stated above.
btw, how can we extract xip? Failed to extract with dumprom/rommaster the payload file generated in step 5...
Click to expand...
Click to collapse
sorry, i didn't work on extrating xip.bin from the 'exe', didn't get time to.
JeckyllHavok said:
hey guys,
no luck with the above procedure.
i Made a bin file starting at B000FF and finish after the 12 "00" before
060000EA3B .
But cvrtbin gives the error "Could not allocate memory for raw data"
Please Help
Click to expand...
Click to collapse
thats the only procedure which should work for u. just follow/read everything carefully and also make sure u downloaded the cvrtbin.exe from the link that i gave (msvcr80.dll should also be there).
Thanks for your answer, i made the mistake that i just cut the unneeded lines and save it as an other filename. When i copy the lines in a new file it workes
JeckyllHavok said:
Thanks for your answer, i made the mistake that i just cut the unneeded lines and save it as an other filename. When i copy the lines in a new file it workes
Click to expand...
Click to collapse
could you zip that .bin up and upload it please?
i'm having a ton of trouble with this
anybody?
sorry to be a nag
There's a thread in modaco.com where they are extracting the ROM with a P535 kitchen. You can join in the funs there

[SOLVED] Errorlevel: -1073741819

Hello everyone I have a small issue here hope someone knows how to fix it or if someone had this error before what did you do to fix it??
Well Im Using Ervius kitchen and it was working fine, I'm able to cook with SYS 21901 but if I want to do an upgrade and use something else like 23563, 24611 or others it gives me this error: -1073741819
This error usually comes up when I hit the create rom button, but at first everything looks fine but in the middle of the process it tells me that RomKitchenExecutable and Imgfsfromdump.exe are not responding and it just shut down.
Thanks to everyone in advance
hi,
check this reply from twopumpchump: from this thread
twopumpchump said:
michal_banszel said:
Actually I always got error:
ERROR! (errorlevel: -1073741819)
ERROR executing: kitchen_build_rom.bat
ERROR!!!
What is more... some files in my kitchen f.g. erviuskitchen.exe is now... hidden It has changed itself. And I'm not able to change it all exe files in my main folder (PagePool Changer 2.21.exe and nueSpinLockPatcher.exe) and S00x files in my ROM folder changed into hidden. With no reason. It happend first time to me and don't know why??
Click to expand...
Click to collapse
have you edited your kitchen_build_rom.bat? the files didnt change attribute by themselves i dont think, im guessing you may have edited your bat file to give hidden attribute to your dump and possibly didnt do it right. having the attributes changed to hidden in some files will cause platformrebuilder to crash. maybe try using ervius's bat unedited and unhiding all the files you said you werent able to change the hidden attribute, but you can with the unhide.bat i posted a few pages back. again im just guessing, maybe it will help.
Click to expand...
Click to collapse
lion75y said:
Hello everyone I have a small issue here hope someone knows how to fix it or if someone had this error before what did you do to fix it??
Well Im Using Ervius kitchen and it was working fine, I'm able to cook with SYS 21901 but if I want to do an upgrade and use something else like 23563, 24611 or others it gives me this error: -1073741819
This error usually comes up when I hit the create rom button, but at first everything looks fine but in the middle of the process it tells me that RomKitchenExecutable and Imgfsfromdump.exe are not responding and it just shut down.
Thanks to everyone in advance
Click to expand...
Click to collapse
regards,
mike
This solution didn't help, I did edit the .bat file but only to change the device name, and add REM to the line specified and still it gives me that those programs from the kitchen have stop working or not responding and it stops the process.
where did you get your new SYS???
is from PPCkitchen format?
download another pkg diferente source...
post your build log
+ Que PPC said:
where did you get your new SYS???
is from PPCkitchen format?
download another pkg diferente source...
post your build log
Click to expand...
Click to collapse
the new SYS I have been obtaining them from these page
http://forum.ppcgeeks.com/showpost.php?p=1710334&postcount=55
also the SYS from our friend NRGZ28 doesnt work for me it gives me the same error and keeps telling me that those applications from the kitchen are not responding ( or Crash) but its weird because I can cook with 21901 but I cannt add or if I select another SYS it gives me the error.
http://forum.xda-developers.com/showthread.php?t=650783
P.S. On the build lod it shows that is missing alot of modules and files and thats because at that moment is when it gives me the warning that the romkitchenexecutable.exe and imgfsfromdump.exe are not respnding
mmmm
weird did you check that modules are fine?
i suggest you to use the PPC kitchen file attribs.. i will post them at night to edit the bat.. so the kitchen will be ready to accept PPCkitchen attribs SYS
Ok Thanks I will be waiting bud. I will keep messing with it, and reading to see if I can find the answer to this issue now.
Insert the following as third line into the kitchen_build_rom.bat:
Code:
attrib -a -r -h -s /s
so the kitchen_build_rom.bat reads like this:
Code:
@echo off
cd..
attrib -a -r -h -s /s
REM........................
set IMGSTART=0
set ULDR=ULDR
.
.
.
Do not fiddle around with attributes anywhere else ...
cheers
Cool thanks i forgot this totally
vogonj said:
Insert the following as third line into the kitchen_build_rom.bat:
Code:
attrib -a -r -h -s /s
so the kitchen_build_rom.bat reads like this:
Code:
@echo off
cd..
attrib -a -r -h -s /s
REM........................
set IMGSTART=0
set ULDR=ULDR
.
.
.
Do not fiddle around with attributes anywhere else ...
cheers
Click to expand...
Click to collapse
Thanks, Am testing right now to see if this solves the issue.
Found the answer to my problem, I just needed to add the EXT packages for 6.5 and 6.5x . I was using the same ones that the kitchen created when I dump the rom. I found this out by doing alot of tests between a good kitchen already set up and mine ...
Can someone provide me the link to obtain a clean set of EXT packages for Rhodium and that are 6.5 and 6.5x plz
That my friend is hard... so hard... and the PKGS hunt is a task that we must to do by ourselves you know.... if you search as "Tachi phone canvas EXT PKG" you will find something interesting like a thread with the cab.. so you need to convert it... then maybe in the same or another post or thread there is the OEM and you need to transform it to EXT there arent all full of EXT PKGS repository you know... thats the Cooking world bud search for ressolution too
Thanks
Just to let everyone know I also found out that on my dumped EXT files from my stock rom the GlobalSmartDialing makes the Ervius Kitchen to crash if you erase them or make them NOT to be inlcuded in the rom will solve the issue.

Categories

Resources