Unlock bootloader found something - Sony Xperia C

guyz found this at
http://androidforums.com/threads/forcing-fastboot.704668/
we know our device cant be unlocked because it cant reboot into fastboot thats why when u see in ur phone BOTLOADER UNLOCK ALLOWED:NO
it tells us a way to boot into fastboot if the phone does not enter fastboot through ""adb reboot bootloader"
Steps++))
If a phone doesn't go into fastboot by command:
Code:
adb reboot bootloader
First you must have your boot.img backed up if you want to ever get out:
Code:
adb shell
su
dd if=/dev/block/[COLOR="red"]path to boot[/COLOR] of=/sdcard/boot.img
exit (type exit again if not out of shell)
adb pull /sdcard/boot.img
Now to erase boot partition and force fastboot:
Code:
db shell
su
dd if=dev/zero of=dev/block/[COLOR="Red"]path to boot block[/COLOR]
reboot
You are now in fastboot.
To get out:
Code:
fastboot flash boot boot.img
fastboot continue
guyz this can be our chance to unlock the bootloader please anyone with the skills and who knows those red statements try this and report.....

Anyone who have tried this one? Kindly explain clearly on how to edit those boot.img in xperia c3.
Thanks!

abhishekr700 said:
Code:
adb shell
su
dd if=/dev/block/[COLOR="red"]path to boot[/COLOR] of=/sdcard/boot.img
exit (type exit again if not out of shell)
adb pull /sdcard/boot.img
.
Click to expand...
Click to collapse
More details please.

Related

Completely Restore to Stock

Hi! I wouldl ike to restore my phone from being S-off, custom recovery, and a custom rom. Can anyone please guide me through the steps ? (I just need to know what I have to do I know my way around android devices just not that used with HTC. Should I flash a stock rom, flash stock recovery, then s-off ?)
Thanks
You should read the threads in dev section carefully before proceding, but the short version should be like this:
1. copy "misc_version" to android sdk / adb folder
2. cmd: adb push misc_version /data/local/tmp
3. set older software version with misc_version to flash a older RUU File
cmd: adb shell /data/local/tmp/misc_version -s 1.27.405.6
4. copy original hboot.img (0.98.00...) to root of microSD card.
5. open cmd :
cd/
cd android-sdk-windows
cd platform-tools
adb devices
adb shell mount /sdcard
adb shell
su
dd if=/dev/block/mmcblk0p18 of=/sdcard/backup.img
dd if=/sdcard/hboot.img of=/dev/block/mmcblk0p18
6. restart to bootloader
7. enter fastboot
8. run RUU
THIS IS NOT A HOWTO, check yourself if this is the right way for you!!!
Or check this thread: http://forum.xda-developers.com/showthread.php?t=1187231
Maybe it's the simple way...

help flashing twrp 2.2.2 via terminal

Alright so I put twrp recovery image on the root of my sd ... I open terminal type
Su
Cd sdcard
Flash_image recovery recoveryname(Der the name of it).img
And it says command not found
deleted
omario8484 said:
Alright so I put twrp recovery image on the root of my sd ... I open terminal type
Su
Cd sdcard
Flash_image recovery recoveryname(Der the name of it).img
And it says command not found
Click to expand...
Click to collapse
If you want to do it from terminal emulator on android, say name of recovery is twrp.img and is on root of sd....
Open terminal emulator
Type - su
Allow superuser permission,
Type -
dd if=sdcard/twrp.img of=/dev/block/mmcblk0p22
It will push, then do it again for good measure-
dd if=sdcard/twrp.img of=/dev/block/mmcblk0p22
Now power off, boot to bootloader and select recovery
as long as your rooted w. Bootloader unlocked you will have twrp recovery installed

[REQUEST] [Dumps] [Evita-Utl] Need (hboot,misc partition,radio,adsp,wcnss) imgs

Hey
Please can anyone have 'Evita-Utl' (Middle eastern variant) help me by dumping (hboot,misc partition,radio,adsp,wcnss) imgs from his working device .. and here is how:
1)first you must get into recovery(cwm) because img token from booted device is useless for me
2)then while you are in cwm recovery connect to pc and adb
Code:
adb shell
dd if=/dev/block/mmcblk0p12 of=/sdcard/hboot.img
exit
adb pull /sdcard/hboot.img
adb shell
dd if=/dev/block/mmcblk0p23 of=/sdcard/misc.img
exit
adb pull /sdcard/misc.img
adb shell
dd if=/dev/block/mmcblk0p17 of=/sdcard/radio.img
exit
adb pull /sdcard/radio.img
adb shell
dd if=/dev/block/mmcblk0p18 of=/sdcard/adsp.img
exit
adb pull /sdcard/adsp.img
adb shell
dd if=/dev/block/mmcblk0p19 of=/sdcard/wcnss.img
exit
adb pull /sdcard/wcnss.img
and upload these 5 files from your sdcard .. I will be grateful
Thanks for help
Why?
tjhooker73 said:
Why?
Click to expand...
Click to collapse
Do you have the middle eastern variant?
Sent from my Evita
tjhooker73 said:
Why?
Click to expand...
Click to collapse
timmaaa said:
Do you have the middle eastern variant?
Sent from my Evita
Click to expand...
Click to collapse
Someone in other thread tell that middle east version(ul flashed) can be fixed by those 3 blocks and radio block ofcours .. but do you have any suggestions for recover my misc partition .. if I was lucky and someone upload it to me .. do you think that adb can restore it ??
dr.scofield said:
Someone in other thread tell that middle east version(ul flashed) can be fixed by those 3 blocks and radio block ofcours .. but do you have any suggestions for recover my misc partition .. if I was lucky and someone upload it to me .. do you think that adb can restore it ??
Click to expand...
Click to collapse
What's wrong with your phone?
Need the imgs because no firmwares or ruu fo this phone .. and my utl flashed ul and bricked .. then relifed with evita-ul dll because no dll for it .. so since there no firmwares for it and I replaced mine .. I need it from any working phone by dumping it .. if you can help
Anyone??
Sent from my HTC One XL using XDA Premium 4 mobile app
dr.scofield said:
Anyone??
Click to expand...
Click to collapse
I upload these 5 files on my google drive
But I can't post the link
Send me you contact at "sladefoto" a t gmail
Sladefoto said:
I upload these 5 files on my google drive
But I can't post the link
Send me you contact at "sladefoto" a t gmail
Click to expand...
Click to collapse
Thanks .. i've managed these files and fixed this phone
dr.scofield said:
Hey
Please can anyone have 'Evita-Utl' (Middle eastern variant) help me by dumping (hboot,misc partition,radio,adsp,wcnss) imgs from his working device .. and here is how:
1)first you must get into recovery(cwm) because img token from booted device is useless for me
2)then while you are in cwm recovery connect to pc and adb
Code:
adb shell
dd if=/dev/block/mmcblk0p12 of=/sdcard/hboot.img
exit
adb pull /sdcard/hboot.img
adb shell
dd if=/dev/block/mmcblk0p23 of=/sdcard/misc.img
exit
adb pull /sdcard/misc.img
adb shell
dd if=/dev/block/mmcblk0p17 of=/sdcard/radio.img
exit
adb pull /sdcard/radio.img
adb shell
dd if=/dev/block/mmcblk0p18 of=/sdcard/adsp.img
exit
adb pull /sdcard/adsp.img
adb shell
dd if=/dev/block/mmcblk0p19 of=/sdcard/wcnss.img
exit
adb pull /sdcard/wcnss.img
and upload these 5 files from your sdcard .. I will be grateful
Thanks for help
Click to expand...
Click to collapse
i have same problem and still my device (no service )not antenna after jtag with riff box
my device one xl (evita utl pj83500) s-off and super cid
i dumped this 5 files but i dont know how to solve my problem and flash misc.radio and hboot files ==> when i write fastboot flash radio radio.img say error : not allowed
how to eng-s-off this model to flash radio.img and hboot.img
pls help
How did you flash them?
I have the same problem but I don't know how to flash the partitions.
Thread Cleaned, there is no "trading", "selling" for device files or anything of that sort, of funds or gifts, as per Forum Rules.
dr.scofield said:
Hey
Please can anyone have 'Evita-Utl' (Middle eastern variant) help me by dumping (hboot,misc partition,radio,adsp,wcnss) imgs from his working device .. and here is how:
1)first you must get into recovery(cwm) because img token from booted device is useless for me
2)then while you are in cwm recovery connect to pc and adb
Code:
adb shell
dd if=/dev/block/mmcblk0p12 of=/sdcard/hboot.img
exit
adb pull /sdcard/hboot.img
adb shell
dd if=/dev/block/mmcblk0p23 of=/sdcard/misc.img
exit
adb pull /sdcard/misc.img
adb shell
dd if=/dev/block/mmcblk0p17 of=/sdcard/radio.img
exit
adb pull /sdcard/radio.img
adb shell
dd if=/dev/block/mmcblk0p18 of=/sdcard/adsp.img
exit
adb pull /sdcard/adsp.img
adb shell
dd if=/dev/block/mmcblk0p19 of=/sdcard/wcnss.img
exit
adb pull /sdcard/wcnss.img
and upload these 5 files from your sdcard .. I will be grateful
Thanks for help
Click to expand...
Click to collapse
thanks god, could you tell me how did you do with 5 files, please share? we have the same problems, hope you help us? pls!
vincent844 said:
thanks god, could you tell me how did you do with 5 files, please share? we have the same problems, hope you help us? pls!
Click to expand...
Click to collapse
Do you have these 5 files If yes please please send them to me [email protected]
u will send for evita UTL?
and u have all the 5 files?
Hboot.img
Misc.img
Radio.img
Adsp.img
Wcnss.img
Can you send me these files please
I will also help you to flash them but please send them to me

Stuck at fastboot, won't show device

Hi all, I've got a TF300T running stock 4.2. The device is unlocked (says so when starting). I can get ADB to recognize the device and reboot it. If I run reboot fastboot I get to a screen with 3 icons (RCK, android, wipe) and the text above "starting fastboot USB download protocol".
Running fastboot commands (with or without sudo) from my Mac doesn't provide a list of devices and I can't push TWRP.
If I choose RCK I get the little dude belly up with the red triangle.
Any help in getting fastboot to work? I"d love to go to a slimed down marshmallow rom if possible.
Thanks in advance!
FYI - I'm using moto-fastboot-osx64 as my fastboot file.
Liamfm said:
Hi all, I've got a TF300T running stock 4.2. The device is unlocked (says so when starting). I can get ADB to recognize the device and reboot it. If I run reboot fastboot I get to a screen with 3 icons (RCK, android, wipe) and the text above "starting fastboot USB download protocol".
Running fastboot commands (with or without sudo) from my Mac doesn't provide a list of devices and I can't push TWRP.
If I choose RCK I get the little dude belly up with the red triangle.
Any help in getting fastboot to work? I"d love to go to a slimed down marshmallow rom if possible.
Thanks in advance!
FYI - I'm using moto-fastboot-osx64 as my fastboot file.
Click to expand...
Click to collapse
Try to start adb and put in the command shell. ~# appear!
Copy into the open line:
dd if=/dev/zero of=/dev/block/mmcblk0p4 bs=100 count=1 > enter!
Copy into the open line:
dd if=/dev/zero of=/dev/block/mmcblk0p3 bs=16 count=1 >enter!
Now the tablet should start again into Android. If not try to start TWRP.
That's it!
ebonit said:
Try to start adb and put in the command shell. ~# appear!
Copy into the open line:
dd if=/dev/zero of=/dev/block/mmcblk0p4 bs=100 count=1 > enter!
Copy into the open line:
dd if=/dev/zero of=/dev/block/mmcblk0p3 bs=16 count=1 >enter!
Now the tablet should start again into Android. If not try to start TWRP.
That's it!
Click to expand...
Click to collapse
I'm unsure as to where these commands are going. am I going into Terminal on my mac, running ADB and then the commands? ($ adb dd if=/dev/zero of=/dev/block/mmcblk0p4 bs=100 count=1 > enter!)
I'm not trying to start it in Android, I'm trying to start in fastboot so I can load TWRP. Currently I think I have the stock recovery, but I can't even get into that.
Liamfm said:
I'm unsure as to where these commands are going. am I going into Terminal on my mac, running ADB and then the commands? ($ adb dd if=/dev/zero of=/dev/block/mmcblk0p4 bs=100 count=1 > enter!)
I'm not trying to start it in Android, I'm trying to start in fastboot so I can load TWRP. Currently I think I have the stock recovery, but I can't even get into that.
Click to expand...
Click to collapse
Did you do the first step:Try to start adb and put in the command shell. ~# appear! ?
I'm not sure what you mean by "Start ADB" - if in a terminal, I can write adb device and see my device. Running adb ~# appear! returns the same as if I just hit "adb" and "enter".
Sorry - I'm used to the reboot commands, the device commands, etc - just not this "appear" command with the ~#
Liamfm said:
I'm not sure what you mean by "Start ADB" - if in a terminal, I can write adb device and see my device. Running adb ~# appear! returns the same as if I just hit "adb" and "enter".
Sorry - I'm used to the reboot commands, the device commands, etc - just not this "appear" command with the ~#
Click to expand...
Click to collapse
I'm verry sorry for that fail, but we rescued TF300T with Stock Rom JB 4.2 which got stuck several times using Windows 7/10
First step "adb devices": your device as a serial number or so on should appear,
Second step "shell": ~# should appear. After that you may use the commands I mentioned in my post. If it doesn't work forget my post.
BTW you may try this one http://forum.xda-developers.com/showpost.php?p=62498968&postcount=1046
Good luck!
Bricked after attempting TWRP 2.8.2 Flash
I have the same problem, only now my TF300T will only boot as far as the Asus Logo. I can use ADB to recognize it, however when I attempt "fastboot reboot recovery," or "fastboot reboot bootloader" the tablet will only reboot to the Asus Logo. I can only force it into fastboot manually holding the Vol Down key. From this point neither adb devices nor fastboot devices will recognize the tablet. I've triedyou shell command and this is what I get:
C:\adb>adb devices
List of devices attached
015d262e0b20041a device
C:\adb>adb shell ~# appear!
- exec '/system/bin/sh' failed: No such file or directory (2) -
C:\adb>fastboot devices
C:\adb>adb devices
List of devices attached
C:\adb>
Any suggestions?

z5 e6653 unable to boot unless done over ADB

Got a problem with a new z5 e6653
ran the command
fastboot flash boot z3_stock_fixed.img
fastboot boot recovery.img
adb shell mount
adb shell cat /proc/partitions
adb shell mount /dev/block/platform/soc.0/by-name/system /system
adb shell mount /dev/block/platform/soc.0/by-name/userdata /data
following this guide here at androiding.how/root-xperia-z5/
everything went fine so
Then i pushed the supersu
adb push UPDATE-SuperSU-v2.46.zip /data/media/0/
adb shell twrp install /data/media/0/UPDATE-SuperSU-v2.46.zip
adb shell rm /data/media/0/UPDATE-SuperSU-v2.46.zip
however supersu or anything didnt get permissions to access the system so I couldnt load write anything there.
So i decided to do the process again.
Now the phone will not boot off the power button.
I cannot start the phone unless I put in the command line Fastboot flash boot z3_stock_fixed.img
and I can only get into boot by doing flashboot boot recovery.img
Anyone able to help me? I dont know what to do.

Categories

Resources