View Full Version : GUI v0.91373013 31-01-2006


vascof1
31st January 2006, 07:41
GUI v0.91373013



- RED49 W550/W600 no-tp flashig finalized (all operations works now and no special flashes need. warning ! not set your cid to anything <49 - phone will require testpoint to revive.

- script is changed almost completely.

new command:
readpkg:/dir/in/phone

makes a file package for transferring to other phones (so-called customizing )

example:
readpkg:/tpa/user

new command:
writepkg: \package\on\pc

write previously backuped files back to phone

example:
writepkg:c:\package\k600\emea1.pkg

new command:
readdir:/starting/dir/in/phone

extracts all files and directories from phone to ph_out/ folder in setool2 directory

example:
readdir:/tpa/user

new command:
mkdir:/dir/in/phone

new command:
rmdir:/dir/in/phone

new command:
delfile:/file/in/phone.ext

changed command:to write a file into phone filesystem now use
wrfile:file\on\pc,/file/in/phone



now, short script example with explanations:

gdfsread:00000013
; read gdfs block 0 unit 0x13. variable will be written as ready script.
gdfsreadbinary:00000013
; read gdfs block 0 unit 0x13. variable will be written in raw binary form.
gdfswrite:00020CBF31323334
; write gdfs block 2 unit 0xcbf bytes 0x31323334 (ascii 1234)
chdir:/
; change dir to root
readfile:/tpa/preset/log.txt
; readfile sample
readfile:/tpa/preset/system/language/ru.lng
; readfile sample
readfile:/tpa/preset/custom/customize.xml
; readfile sample
chdir:/tpa
; change dir to /tpa
listdirs:
; show all directory and filenames
mkdir:/ifs/security/tester
; make directory example
wrfile:cora.fps,/ifs/security/tester/test.txt
; write file .\cora.fps to /ifs/security/tester/test.txt
makepkg:/ifs
; make package from /ifs directory as pkg_your_imei.pkg in current directory
delfile:/ifs/security/tester/test.txt
; delete file
rmdir:/ifs/security/tester
; delete directory (can only be done after all files removed)
writepkg:test.pkg
; write package from test.pkg
chdir:/ifs/security/tester
; chdir
listfiles:
; show all files in /ifs/security/tester
readdir:/tpa/user/
; extract all data to ph_out directory