My phone is bricked... this is why I need EDL mode. I cannot enable usb debug.
fastboot device works.
.\fastboot.exe reboot-edl
rebooting into edl...
FAILED (remote: Device is already locked!)
finished. total time: 0.006s
.\fastboot.exe getvar all
(bootloader) crc:1
Hello, @BRoy_98, can you help me?
hey i know this post is super old but i am trying all options.
will this method work in redmi note 5 pro(whyred)?
is it work for new VIVO mobiles?[GUIDE][TOOL] Reboot to EDL mode from FASTBOOT! No More "Test Point Method"! [kenzo]
Reboot to EDL mode from FASTBOOT!
No more Test Point Method needed
Technical Details:
Redmi Note 3 support rebooting to EDL in Android Bootloader aboot module (the "reboot-edl" command) but fastboot utility doesn't recognize "reboot-edl" in the command line and refuses to sent the command to the device. Since FastBoot command protocol is simple and text-based, it is enough to send a packet containing "reboot-edl" text over USB. The simplest way to do that is to patch Windows fastboot.exe file, replacing "reboot-bootloader" text with "reboot-edl". As "reboot-bootloader" string is found in the command line, fastboot.exe sends the same constant string to the device. So if "reboot-bootloader" is replaced with "reboot-edl", you can specify "reboot-edl" in the command line and the same text will be sent to the device.
New Update: Fastboot updated to latest version.
Tutorial:
1. Download the Fastboot_edl-v2.zip from Here.
2. Extract the zip in your desktop
3. Open the folder and double Click on Reboot.bat
![]()
4. Reboot your device to Fastboot Mode by pressing
Vol Down + Power button and connect your device with PC and Press Enter.
![]()
5. Your Device will be rebooted to EDL!
6. Now flash your Fastboot Rom with Mi Flash Tool to Unbrick your Mi Note 3.
Proof:
![]()
Thanks to @emuzychenko for the Idea!
Especially since most of text had been copied "as is".It would've been better if the source of this guide is also mentioned
mkdir /tmp/fastboot &&
cd /tmp/fastboot &&
apt-get source android-tools-fastboot </dev/null &&
cd android-tools-*
cat <<EOF | patch -p1
--- a/core/fastboot/fastboot.c
+++ b/core/fastboot/fastboot.c
@@ -284,6 +284,7 @@ void usage(void)
" continue continue with autoboot\n"
" reboot reboot device normally\n"
" reboot-bootloader reboot device into bootloader\n"
+ " reboot-edl reboot device into EDL (RedMi Note 3 Pro)\n"
" help show this help message\n"
"\n"
"options:\n"
@@ -803,6 +804,7 @@ int main(int argc, char **argv)
int wants_wipe = 0;
int wants_reboot = 0;
int wants_reboot_bootloader = 0;
+ int wants_reboot_edl = 0;
int erase_first = 1;
void *data;
unsigned sz;
@@ -929,6 +931,9 @@ int main(int argc, char **argv)
} else if(!strcmp(*argv, "reboot-bootloader")) {
wants_reboot_bootloader = 1;
skip(1);
+ } else if(!strcmp(*argv, "reboot-edl")) {
+ wants_reboot_edl = 1;
+ skip(1);
} else if (!strcmp(*argv, "continue")) {
fb_queue_command("continue", "resuming boot");
skip(1);
@@ -1009,6 +1014,8 @@ int main(int argc, char **argv)
fb_queue_reboot();
} else if (wants_reboot_bootloader) {
fb_queue_command("reboot-bootloader", "rebooting into bootloader");
+ } else if (wants_reboot_edl) {
+ fb_queue_command("reboot-edl", "rebooting into EDL mode");
}
if (fb_queue_is_empty())
EOF
apt-get build-dep android-tools-fastboot -y </dev/null
dpkg-buildpackage -rfakeroot -b
cd ..
dpkg -i android-tools-fastboot*.deb
I have a bricked xiaomi pad 5 that has a locked bootloader when i trired using this tool to go to EDL mode via fastboot it just restarts and boot loops... need help.This must be driver problem. Install MI PC suite and it will install all necessary drivers. Then try it again.