Dead pc, looking for M-SYS DiskOnChip G3 flasher - Windows Mobile Development and Hacking General

I have Typhoon MyGuide 5500xl pocket pc. Which became a brick during the normal (through CF) flashing. It doesn't react into any button combination and any rom putted into CF.
Decided to flash by connecting with jtag. Made wiggler cable, connected. Processor was identified:
jtag> detect
IR length: 5
Chain length: 1
Device Id: 01101001001001100100000000010011
Manufacturer: Intel
Part: PXA250
Stepping: PXA255A0
Filename: /usr/local/share/jtag/intel/pxa250/pxa250c0
But flash not:
jtag> detectflash
jedec_detect: mid 4, did ea00
Flash not found!
Because my flash is M-SYS DiskOnChip G3 and it is not yet supported by jtag .
What can I do more?
Is it dificult to program jtag to support this flash?
[according http://www.m-sys.com/NR/rdonlyres/8B28C9C6-275D-44F4-9D15-4F6E54EAD0F7/0/Boot_Software_Dev_Kit_6x_Rev11.pdf|Boot_Software_Dev_Kit_6.x_Rev1.1.pdf]
Or maybe you know or have another flasher which supports this flash?
Thanks for any help

Possible this you will help -but I have not found this program VTI-Host.
http://www.m-sys.com/NR/rdonlyres/2FCFAE9F-7604-4C5E-B3CF-ED4B8926EED0/0/Programming_DOC_With_VTIHost.pdf|Programming_DOC_With_VTIHost.pdf
I also search for this program for OMAP .

The problem is that I have dead Typhoon MyGuide 5500 xl pocket pc, which is based on Asus A620.
There is a JTAG DoC (Disk On Chip) support. http://www.handhelds.org/moin/moin.cgi/MyPal620JTAG
Flashing of dead pocket PC should be easy. BUT.
I can connect to it using jtag 0.5.1 using WIGGLER or DLC5 cables. Now I have only DLC5. I can successfully detect flash but when I am trying to flash it (referencing to the link above ) then problems starts. Looks like system works randomly, or something interferes signal. My DLC5 cable is as short as possible, max 12cm. There are some checkings of signals to start flashing:
if ((c1 & DOC_TOGGLE_BIT) == (c2 & DOC_TOGGLE_BIT)) {printf("Probe DoCM+ failed !\n"); return 0;}
if ((c2 & DOC_TOGGLE_BIT) == (c3 & DOC_TOGGLE_BIT)) {printf("Probe DoCM+ failed !\n"); return 0;}
if ((c1 & DOC_TOGGLE_BIT) != (c3 & DOC_TOGGLE_BIT)) {printf("Probe DoCM+ failed !\n"); return 0;}
So most of the time I cannot pass these checking. Then I start to move connected pocket and suddenly it passes them. Then flashing starts. But again it loops and reaches max iteration count, because of not getting some signal:
while (((DoC_reg_read(DoC_Mplus_FlashControl) & CDSN_CTRL_FR_B_MASK) != CDSN_CTRL_FR_B_MASK) &&
(it++ < max_iter));
So again I am stuck. I was testing on Windows (cygwin) platform. Found a fellow who tried it on Linux and had exactly the same results. Means no difference.
What could you suggest me more?
Thank you.

Hi there,
any progress with mDOC G3 implementation?
I just put a link to this thread in here:
http://forum.xda-developers.com/showthread.php?t=353072
We're trying to solve the same issue for the HTC universal hardware .
At least after some experiments on the platform we decided, it would be most useful to modify an existing JTAG software tool to support mDOC G3 devices.
If there are any news, that are worth to mention, please join our discussion if you like!
By the way:
Code:
if ((c1 & DOC_TOGGLE_BIT) == (c2 & DOC_TOGGLE_BIT)) {printf("Probe DoCM+ failed !\n"); return 0;}
if ((c2 & DOC_TOGGLE_BIT) == (c3 & DOC_TOGGLE_BIT)) {printf("Probe DoCM+ failed !\n"); return 0;}
if ((c1 & DOC_TOGGLE_BIT) != (c3 & DOC_TOGGLE_BIT)) {printf("Probe DoCM+ failed !\n"); return 0;}
This routine is not useable on G3 because of different register definitions. There seems to be no toggle bit like on mDOC M+...
That's why it fails. We have to use another syntax for mDOC G3 (at least other defines!!!).
Best regards,
scholbert

Related

ByteBlaster vs Xilink - JTAG

Hi I just killed my bootloader and just read http://xda-developers.com/jtag/
anyone else has succeed using this method?
please share more experiences before i open my Xda O2
also i search lil bit more deep on the net and found this doc on how to built the ByteBlaster
http://www10.brinkster.com/nsfreecore/Build%20your%20own%20ByteBlaster!.htm
which one is good? ByteBlaster or Xilink ? or both are the same?
TIA
other option
Hi,
Probably your best bet is: http://xda-developers.com/phpBB/viewtopic.php?t=2079
Only if this fails I would start to think about JTAG.
hmm my xda is really dead no bootloader at all,
i put on the cradle with power
Usb detected as USB Device not recognized
trying the bootloaderfix -> failed, nothing happened :|
I think its the JTAG way
is the simpliest JTAG cable download with only 5 resistors and db25 can help?
just like the one on http://openwince.sourceforge.net/jtag/iPAQ-3600/
this simpliest JTAG schematic:
http://openwince.sourceforge.net/jtag/iPAQ-3600/images/interface.png
or do we really need to build ByteBlaster/ Xilink board?
W4XY, please let me know
TIA
jtag
Ah my mistake. I confused the byteblaster with the bootblaster (another tool to write bootloaders).
About the interface I'm not sure. I would think that it should work with the simple one. Mostly because the iPAQ and XDA are similar enough. The more complex interfaces are a bit better because they do clean voltage level conversion. I suspect that the reason the simple interface works is because 3.3V is also seen as 1 for a 5V parallel port.
I've used a ByteBlaster cable. If you try the simple one let us know if it works.
I thought that I read somewhere that if the SD Card had the bootloader on it, the PocketPC would try and boot from the SD Card. Am I wrong?
I haven't tried it, but how else does the Manufacture restore a dead rom?
It seems that it should be able to use an alternate boot device if the first one fails.
??????
Wade
You can only boot from SD if a working OS is running. Now it is possible that PocketPC still works with a dead bootloader, and then you can reflash the bootloader in a number of ways. However if both are dead also the manufacturer will have to use jtag or other incircuit means to reflash the device. Normally this happens in the factory or with specific personalization hardware. The XDA has no backup boot ROM.
Hiya,
I just opened my XDA, wow looks like jungle for me! lil bit hard for newbie
well i read about a small patch for Jtag,
http://xda-developers.com/jtag/
"...I created a small patch to version 0.4 that takes care of flipping the bit just before erasing and writing of the flash. You can download the patch here"
download the patch where?
Thanks in advance
Brumie
Where can i download the patch for jtag 0.4
Hi,
Where can i download the patch for jtag 0.4?
or how can i access to the cvs version of jtag 0.4 with the poke command.
thanks
cvs version
Hi,
Sorry for not getting back to this, currently at CCC working on some other stuff.
The CVS version can be found at http://openwince.sf.net
or more precisely here: http://sourceforge.net/cvs/?group_id=52603
The patch will be there latest next week.
patch
thanks for your answer.
i finally got access to the cvs server and will try it monday with teh xilinx cable
have a nice time at the CCC ;-)
cvs version of jtag :-(
i tried to compile the jtag cvs version from yesterday
but i get error messages after make :-(
snip
###########
make[1]: Entering directory `/usr/local/src/cvsroot/jtag'
Making all in libbrux
make[2]: Entering directory `/usr/local/src/cvsroot/jtag/libbrux'
if gcc -DPACKAGE_NAME=\"libbrux\" -DPACKAGE_TARNAME=\"libbrux\" -DPACKAGE_VERSIO
N=\"0.1\" -DPACKAGE_STRING=\"libbrux\ 0.1\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE=\
"libbrux\" -DVERSION=\"0.1\" -D_GNU_SOURCE=1 -I. -I. -I/usr/local/include/ope
nwince -I/usr/local/include/openwince/device -I/usr/local/include/openwince/arm
-I./.. -I./../include -g -O2 -Wall -MT cmd.o -MD -MP -MF ".deps/cmd.Tpo" \
-c -o cmd.o `test -f 'cmd/cmd.c' || echo './'`cmd/cmd.c; \
then mv ".deps/cmd.Tpo" ".deps/cmd.Po"; \
else rm -f ".deps/cmd.Tpo"; exit 1; \
fi
cmd/cmd.c: In function `cmd_run':
cmd/cmd.c:40: error: `cmds' undeclared (first use in this function)
cmd/cmd.c:40: error: (Each undeclared identifier is reported only once
cmd/cmd.c:40: error: for each function it appears in.)
cmd/cmd.c: In function `cmd_get_number':
cmd/cmd.c:77: warning: comparison between signed and unsigned
cmd/cmd.c:82: warning: comparison between signed and unsigned
make[2]: *** [cmd.o] Error 1
make[2]: Leaving directory `/usr/local/src/cvsroot/jtag/libbrux'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/usr/local/src/cvsroot/jtag'
make: *** [all] Error 2
snip
#############
It is possible to make a full working source version availiable for download ?
thanks
klaus

New flash support in JTAG

Hi,
I have Typhoon MyGuide 5500XL pocket PC with M-SYS Diskonchip G3 flash inside. Exact flash model would be: MD4832-d512-V3Q18-X. In their site (www.m-systems.com) I can find that chip specification. Everything is ok.
Then I have compiled jtag 0.5.1, connected to my pocket pc through WIGGLER cable, recognized processor. Left unsupported flash.
I would like to write JTAG support for this diskonchip g3 flash. As I understand I should write new file aka \jtag-0.5.1\libbrux\flash\diskonchip.c and to modify \jtag-0.5.1\libbrux\flash\jedec.c file.
But from where to start? Which metods I should implement? How to programm flash interface according it's specification?
Give me some hints or somethingf please. After wouldn't be a problem to add and share diskonchip g3 support in jtag.
my mail [email protected]

Please Help me To Unbrick my device

Brother i am upgrading my device it stoped at 2% now its dead only goes to bootloader show
ipl 1.81.00001
spl 1.81.00001
i master reset but nothing happened i flash all roms on wiki nothing happened always say invalid tool
i need this rom because this has previous this
Rom version 1.8.415.2 wwe
Rom date 11-3-06
Radio 02.71.90
protocol version 4.1.13.31
EXT Rom 1.8.415.102
Thanks in advance who help me in this case
I have another set of that how can i read other set rom and flash in to that set
Was it CID locked? did you buy the phone r did you get it with a subsciption?
oddball1 said:
Was it CID locked? did you buy the phone r did you get it with a subsciption?
Click to expand...
Click to collapse
Not it is Not Cid locked & Also Not Sim Locked.. yes i buy from a shop in pakistan but when i upgrade i get problem
I also have bricked my Herald after upgrading to Aserg but nothing now ,,only green screen and off ...
it was CID locked
from Mobinil Plz Help
zubi1984: i had the same problem.
try mtty.exe (use wiki), and try the commands for it.
if it says something clearly, then you can -somehow- unbrick your device.
if it gives error..
-this happedned to me-
you should bring it to the service, with warranty.
if you are lucky, they will fix it to you without price.
i hope you have warranty, because the man in the service said that i really fuc*ed it up... the new motherboard would have been very expensive.. without warranty
so first of all, calm down, and let's start reading about the upgrade, read a lot, and go to another forums, maybe somebody can help to you unbrick your device
____
my device said:
error 30* invalid upgrade tool (for any roms)
only in bootloader mode running
hard reset failed
reset does not works
no charge lights on charge
mtty.exe error, commands: no answere.
pulyka
Hi pulyka, Can you Please tell me about commands for mtty.exe..what to write inside te command box exactly ,,
any more details about "mtty " would be thankful
for me:
Cmd>info 1
Invalid command : info 1
For a help screen, use command ? or h
Cmd>info 2
Invalid command : info 2
For a help screen, use command ? or h
_____________
this is wrong.
___
read it carefully!
http://wiki.xda-developers.com/index.php?pagename=Hermes_BootLoader
try it, but in your own risk..
unfortunately i am not an expert in this..
some people helped me in a hungarian forum.. and they said, my pda is bricked completely:S
if mtty working properly:
sb
I already connect to USB!
Cmd>info 0
GetDeviceInfo=0x00000000
Wizard
Cmd>info 1
GetDeviceInfo=0x00000001
2.21.0000
Cmd>info 2
GetDeviceInfo=0x00000002
+ SD Controller init
- SD Controller init
+StorageInit
***** user area size = 0x1EB80000 Bytes
HTCSWIZTMO07 â-r€HTCE
Cmd>info 3
GetDeviceInfo=0x00000003
this is died device:
info1
Invalid command : info1
For a help screen, use command ? or h
Cmd>info 1
GetDeviceInfo=0x00000001
2.24.0000
Cmd>info 0
GetDeviceInfo=0x00000000
Wizard
Cmd>r2sd all
***** user area size = 0x1DE40000 Bytes
R2SDBackup() - Download type = 5
usTotalBlock = 1 sizeof(SDCARD_SIGNATRUE_TABLE)=512
GetDeviceCID: Error - InitDecoder
GetDeviceCID: Error - InitDecoder
You didn't get the proper security level to download a specific image
Cmd>
pulyka

replace gwes.exe

Who can assists me replacing the gwes.exe on a Toshiba G500 smartphone?
I was so silly to buy this phone instead of trusting in htc's
No updates available from Toshiba, no helpfull email replies.
Many applications are not working due to gwes.exe error.
Toshiba just replies : no this software and the other asked doesn't run on G500.
So i have to help myself to get the most out of the misery.
On the phone is WM5 with AKU 3.2
Does someone have the files gwes.exe and gwes.exe.0407.mui from another WM5 release and can upload them.
How can i replace them? Due to the fact that gwes is running in the background i can't delete or rename it.
Also the files in the windows dirctory are protected.
Who can help me?
xda-graphite said:
Who can assists me replacing the gwes.exe on a Toshiba G500 smartphone?
I was so silly to buy this phone instead of trusting in htc's
No updates available from Toshiba, no helpfull email replies.
Many applications are not working due to gwes.exe error.
Toshiba just replies : no this software and the other asked doesn't run on G500.
So i have to help myself to get the most out of the misery.
On the phone is WM5 with AKU 3.2
Does someone have the files gwes.exe and gwes.exe.0407.mui from another WM5 release and can upload them.
How can i replace them? Due to the fact that gwes is running in the background i can't delete or rename it.
Also the files in the windows dirctory are protected.
Who can help me?
Click to expand...
Click to collapse
Sell your Toshiba, and buy a HTC.
xda-graphite said:
Who can assists me replacing the gwes.exe on a Toshiba G500 smartphone?
I was so silly to buy this phone instead of trusting in htc's
No updates available from Toshiba, no helpfull email replies.
Many applications are not working due to gwes.exe error.
Toshiba just replies : no this software and the other asked doesn't run on G500.
So i have to help myself to get the most out of the misery.
On the phone is WM5 with AKU 3.2
Does someone have the files gwes.exe and gwes.exe.0407.mui from another WM5 release and can upload them.
How can i replace them? Due to the fact that gwes is running in the background i can't delete or rename it.
Also the files in the windows dirctory are protected.
Who can help me?
Click to expand...
Click to collapse
Hi,
I don't know what you can do replacing such files, ( I think you must first make a dump of the rom, reconstruct it with the new files and then repack an flash again ) anyway you can try to extract gwes.exe and gwes.exe.0407.mui from the localized emulator on Microsoft web site... search with google for that if you don't have the link, I don't remember it now...
Really hope this help
Do you try to do a hardreset?
Surely you could use pput from ITSUTILS to drop the replacement files in, and then do a soft reset?
As for the files themselves, you'll just have to hope someone sends them to you
a majority of these errors was not caused by gwes.exe itself, i think. if you installed any software recently, uninstall them and try again
Hey guys, thank You for Your help. Never expected this resonance after the first reply
@[email protected]
you can try to extract gwes.exe and gwes.exe.0407.mui from the localized emulator on Microsoft web site...
Click to expand...
Click to collapse
just extracted it from WM5, but complete crash after replace
@THEVK
Do you try to do a hardreset?
Click to expand...
Click to collapse
a few times with no success
@Aquilo
Surely you could use pput from ITSUTILS to drop the replacement files in, and then do a soft reset?
Click to expand...
Click to collapse
just replaced the files with pput, but after soft reset complete crash of the phone.
@dandycheung
a majority of these errors was not caused by gwes.exe itself, i think. if you installed any software recently, uninstall them and try again
Click to expand...
Click to collapse
after a hardreset just installed tomtom -> crash
TomTom 5.21 / 5.20 both worked on my old xda graphite with WM5 but with another AKU version, i think 2.xx (don'T know bc. it's in the cellphone-heaven)
Don't know further, i have no ideas, maybe you guys
sell this and DO NOT buy htc!
gwes.exe is device dependant, so your phone wil never work with another device's version.
gwes.exe is device dependant, so your phone wil never work with another device's version.
Click to expand...
Click to collapse
no. it's device independent, but can have different components.
Also you can't replace it directly.
just extracted it from WM5, but complete crash after replace
Click to expand...
Click to collapse
it contains relocations. Do you fix it?
Also it must be signed.
Maybe this is interesting for someone:
left software button + power on
RUU update!
Waiting USB Connection ......
connecting usb cable
Updating
Receive call + power on
Factory update!
udc_enable
usb connect
Error occured, usbdev ep0 stalled!
and on Windows -> Driver installer -> TFW USB Download DR/V -> no driver found
(1 + power on) or (vol + power on)
PB Update!
Connecting...
INFO: Trying to initialize USB RNDIS...
HostMINIlnit:: !!
Rndis:: initialization: with addr=0
Rndis:: initialization!
Rndis:: Get MAC address yyyy,yyyy,yyyy
Rndis:: initialization: Fail!
ERROR: Failed to initialize Bulverde Rnd is USB Ethernet controller.
ERROR: Failed to detect and initialize Ethernet controller.
usb connection + 1 + battery connect
PB Update!
Connecting...
INFO: Trying to initialize USB RNDIS...
HostMINIlnit:: !!
Rndis:: initialization: with addr=0
Rndis:: initialization!
Rndis:: PDDInit Success!
Rndis:: Get MAC address XXXX,XXXX,XXXX
xxxx -> maybe device specific numbers
.
.
and on Windows -> Driver installer -> Microsoft RNDIS KITL for Intel PXA27x no driver found
.
.
Rndis:: initialization: Fail!
ERROR: Failed to initialize Bulverde Rnd is USB Ethernet controller.
ERROR: Failed to detect and initialize Ethernet controller.
4 + power on
KITL Enable...
Cellphone remains in "Toshiba Startscreen"
* + power on
SDCard update!
.
.
TFW Windows Mobile PDA SW DOwnload!
Initilization T-FLASH Card... SD Card CMD: Card Response timed out: 0x2142Initlization card fail!
Initilization T-FLASH Card... SD Card CMD: Card Response timed out: 0x2142Initlization card fail!
with MiniSD Card in slot:
* + power on
SDCard update!
Sectors per cluster: 32
First FAT Sector: 98
FatSectors: 31
First Dir sector: 160
First Data Sect : 192
Root DIR Entry Count: 512
...Dirctoy listing...
Search root dir fail!
fat search sector: Fail (fat_locate)
Find file fail!
Open file Error
Upgrade Fail!
0 + power on
------------------------
Xloader Version: MDOC4(mcp25) V1.00
Eboot Version: Eboot-1.02-00
(1) Download with USB_RNDIS
(2) Boot from IPL KITL enable
(3) Boot from IPL KITL disable (default)
(4) Test Key Value
(5) Test Memory
(6) Run ULDR. default FALSE
(7) Clean Reboot
(8) Abnormal Reboot
(9) Goto Sleep
----------from oallog------------
-----------------------------
Enter your selection:
This is your bootloader menu. All devices have some version of it.
Though all manufacturers put an option to upgrade in to their devices (just in case and for internal test purposes) few bother actually releasing updates.
There is no way to just replace gwes.exe and have the system working. What you need is a whole new ROM, so unless you can find someone cooking one I guess you are out of luck.
Thanks levenum,
i agree, there is no way just replacing it.
Just spoke to Toshiba support.
I asked for a hardware reset -> he searched and searched -> and told me "on this phone no way to do a hardware reset"
I ask myself WHO is working on toshiba support?
Why couldn't he say: press "0" + power on and then press 7
Does somebody know how to backup the rom e.g. on sd-card.
Flashing from sd card is possible with * + power on, but i don't know the filename the phone is requiring, and dont have one. Maybe after rom-dump the file will be known.
Toshiba also upgrades the G900 modell only by sending it in. There is no rom-update on the net. Maybe if someone tries (and knows) to backup the G900 rom maybe there is a chance to kook to WM6 for the G500.
Toshiba G500 Call outgoing problem
Toshiba G500 Call outgoing problem.But Idid formeted it "Format user partition" system. After have same problem & all incoming call ok.
any 1 will can give me solution for this problem ?

Bricked U8800 - how to unbrick it? - SOLVED!!!

I have search whole internet how to unbrick Huawei U8800 no luck
Anyone knows how to unbrick it without taking it to service? (I already get new one from my telecom provider in warranty period).
Is there some step by step unbrick procedure?
I have seen there is procedure for Samsung Captivate but not for Huawei
http://forum.xda-developers.com/showthread.php?t=1206216
Any reference?
Brgds,M.
UPDATE: 7. Jan
--------------------
Symptoms:
Can get into PINK and BLUE screen but cannot update phone. It stuck in:
Firmaware update step 1/2
Unpacking
... and there it hangs or sometimes saying: Update failed
----------------------------------------------------------
SOLUTION:
I found the way and it is so simple i couldn't believe it
1) Remember which ROM you have installed prior to bricking your phone (i had official GB V100R001C00B522G001)
2) Format SD Card and copy dload dir (for V100R001C00B522G001) to root of your SD card.
3) MOST IMPORTANT STEP: PULL OUT THE BATTERY from your bricked phone
4) Insert SD Card into phone
5) Connect your phone using USB cable to your computer
6) Wait until it says: UPDATING
That's it
The battery inserted into phone was causing why phone cannot be updated So you have to updated it WITHOUT the battery inserted!
Hope this helps!
You can buy me a beer
M.
So it doesn't turn on in any way? No reaction when inserting USB?
Sent from my U8800
I am getting into PINK screen but cannot install any original firmware: it just hangs while trying to install from dload directory from SD Card. It says:
Firmaware update step 1/2
Unpacking
... and there it hangs
I tried two official updates:
V100R001C00B522G001
and V100R001C00B138SP04CUSTC185D002
but with no success
I also tried 2 different SD cards.
If i try to get into recovery mode (VOL +, Power) i am getting BLUE screen
Latest firmware installed on phone was official GB: V100R001C00B522G001
btw: no reaction when inserted into USB
And on blue screen it does not mount usb too?
I actually have an idea that we could hex replace pink screen from B518 to B522.
Sent from my U8800
In blue screen it found hardware:
Qualcomm CDMA Technologies MSM
But it failed to install drivers. I tried with http://android.modaco.com/topic/341011-ultimate-guide-to-the-huawei-u8800/ drivers but it says no valid driver or something (
Same is in the PINK screen:
Qualcomm CDMA Technologies MSM
But it failed to install drivers. I tried with http://android.modaco.com/topic/3410...-huawei-u8800/ drivers but it says no valid driver or something (
There is NO WAY to install these driver from HUAWEI site:
http://www.huaweidevice.com/tcpsdownload/downLoadCenter?category=&flay=software&downloadID=Mzk1MzA=
I mean i can install drivers it but doesn't recognize these Qualcom blablabla (
I tried on two diff computers without a success
Here is the screenshot:
In Ubuntu, it should mount without drivers, but it doesn't, so yeah, that won't help.
I will help again tomorrow when I can investigate update.app to see why it fails on unpacking.
Sent from my U8800
Blefish said:
In Ubuntu, it should mount without drivers, but it doesn't, so yeah, that won't help.
I will help again tomorrow when I can investigate update.app to see why it fails on unpacking.
Sent from my U8800
Click to expand...
Click to collapse
I have Ubuntu and i tried also
With dmesg i cannot find device (sdb or sdc)
Any other idea?
Btw: before unbricking my device i did: dd if=/dev/sdb of=u8800.img bs=512
and created big file 3.8GB.
But now i cannot restore it if Ubuntu cannot find device
Brgds,
S:
I had the same problem but I managed to flash without the battery inserted, only connected with the USB cable, do not know why.
portuga2 said:
I had the same problem but I managed to flash without the battery inserted, only connected with the USB cable, do not know why.
Click to expand...
Click to collapse
Yeah that's what i have written on my updated first post!
Thanks anyway!
Brgds,
USB cable is only to provide energy, the files must be on the sdcard, and make the key combination for me only flash in this way, with battery does not work.
Glad you got it solved. When you get a new one, you'll have two phones?
Blefish said:
Glad you got it solved. When you get a new one, you'll have two phones?
Click to expand...
Click to collapse
No they took the first one )
The method without battery didnt worked for me But when I wanted to put a different software on sd i found a file sd_update and i tlooks like this:
notesdld_file_ptr != -1) !
dload_sd_file_data_proc-(dld_retry >= DLOAD_RETRY) failed!
notesdld_file_ptr != -1) !
dload_sd_file_data_proc-(dld_retry >= DLOAD_RETRY) failed!
notesdld_file_ptr != -1) !
dload_sd_file_data_proc-(dld_retry >= DLOAD_RETRY) failed!
notesdld_file_ptr != -1) !
dload_sd_file_data_proc-(dld_retry >= DLOAD_RETRY) failed!
notesdld_file_ptr != -1) !
dload_sd_file_data_proc-(dld_retry >= DLOAD_RETRY) failed!
notesdld_file_ptr != -1) !
dload_sd_file_data_proc-(dld_retry >= DLOAD_RETRY) failed!
Does this tell anything except that the update failed?
yannn007 said:
The method without battery didnt worked for me But when I wanted to put a different software on sd i found a file sd_update and i tlooks like this:
notesdld_file_ptr != -1) !
dload_sd_file_data_proc-(dld_retry >= DLOAD_RETRY) failed!
notesdld_file_ptr != -1) !
dload_sd_file_data_proc-(dld_retry >= DLOAD_RETRY) failed!
notesdld_file_ptr != -1) !
dload_sd_file_data_proc-(dld_retry >= DLOAD_RETRY) failed!
notesdld_file_ptr != -1) !
dload_sd_file_data_proc-(dld_retry >= DLOAD_RETRY) failed!
notesdld_file_ptr != -1) !
dload_sd_file_data_proc-(dld_retry >= DLOAD_RETRY) failed!
notesdld_file_ptr != -1) !
dload_sd_file_data_proc-(dld_retry >= DLOAD_RETRY) failed!
Does this tell anything except that the update failed?
Click to expand...
Click to collapse
Sorry it doesn't
I just sent huawei an e-mail told them that i bricked my phone when downgrading o b138 and how I could easily solve this through pink screen- at the end I asked them where can i download those drivers so I can unbrick my phone
such topics have to be sticked imo.
Hi, I'm having a problem with my phone. I installed the official 2.3.5 ROM and rooted it as well, and everything was working.
Then I decided to remove the bundled apps after this tutorial -
http://forum.xda-developers.com/showpost.php?p=21354334&postcount=77
After that I always got a force close error after starting because of some status bar error thing (the tutorial is somehow flawed). Anyway I decided to re-install the new official 2.3.5 ROM again.
Did everything the same as the first time, but this time the update failed on step2.
I did a bit of Googling and it seems to be the same problem as mentioned in this thread -
http://www.intomobile.com/2010/09/2...te-failed-error-while-installing-android-2-2/
Meaning I removed some bundled apps and now it wont let me re-install the official ROM.
I can't get into recovery anymore because the failed update must have corrupted something. I can get into pink screen with the SD-card removed, but nothing appears under my computer. If SD-card is not removed then it always wants to start installing the ROM and then fails on step 2.
What can I do at this point? Do I have to format the SD-card with some other device and put something on it as pointed in the intomobile.com link? I am pretty clueless as to what to do
The bootloader is locked - this is why nothing shows on your computer. In think that at this point the only thing you can do is to try to install different offcial ROMs or take your phone to the service center.

Categories

Resources