Hi there,
The device is
- usb debugging;
- oem unlock in Developer options;
both enabled.
adb devices recognized device.
In fastboot mode,
Code:
fastboot oem unlock
returned
Code:
OKAY [ 0.007s]
Finished. Total time: 0.019s
And the device rebooted from fastboot mode into Twrp recovery.
After the device rebooted into fastboot mode, fastboot oem device-info showed
Code:
(bootloader) Device tampered: false
(bootloader) Device unlocked: false
(bootloader) Device is_verified: false
(bootloader) Charger screen enabled: false
(bootloader) Display panel:
(bootloader) console_locked: 1
(bootloader) exec_console_unconsole: 0
OKAY [ 0.072s]
Finished. Total time: 0.072s
Bootloader remained unlocked.
In addition, fastboot flashing unlock produced
Code:
FAILED (remote: 'unknown command')
fastboot: error: Command failed
How to unlock the bootloader of this device?
May you need any further information, please do not hesitate to contact me.
Thanks in advance.
Hi there,
after fastboot oem unlock, the device booted into recovery.
And fastboot erase cache , it returns
******** Did you mean to fastboot format this ext4 partition?
Erasing 'cache' FAILED (remote: 'device is locked. Cannot erase')
The same result was produced after fastboot erase recovery.
How to solve it?
Thanks.
Wen
PS: The device was detected following fastboot devices
sounds like you did not unlock bootloader right way. most devices need another predecessor step: oem unlocking in developer options.
Btw do not use fastboot erase command at all, do not follow any tutorial that suggest this.
aIecxs said:
sounds like you did not unlock bootloader right way. most devices need another predecessor step: oem unlocking in developer options.
Btw do not use fastboot erase command at all, do not follow any tutorial that suggest this.
Click to expand...
Click to collapse
Thanks for your reply.
Could you please specify the reason that "fastboot erase" commands should not be used?
fastboot 'erase' is dangerous command. it will erase the entire partition, which is not what you want. for example erasing recovery (like you tried) will brick your device (what was the intention behind?)
'erase' is useless intermediate step in most cases. for example when fastboot 'flash' recovery, the recovery partition will be sequentially overwritten from given file anyway. you can just skip erase it doesn't matter in such case.
partitions containing mountable file system must formatted like this (unlocked bootloader required)
Code:
fastboot format:ext4 cache
fastboot format:f2fs userdata
without formatting, the phone cannot mount the partition and will brick (few phones are smart enough to complete the formatting step automatically, though)
aIecxs said:
fastboot 'erase' is dangerous command. it will erase the entire partition, which is not what you want. for example erasing recovery (like you tried) will brick your device (what was the intention behind?)
'erase' is useless intermediate step in most cases. for example when fastboot 'flash' recovery, the recovery partition will be sequentially overwritten from given file anyway. you can just skip erase it doesn't matter in such case.
partitions containing mountable file system must formatted like this (unlocked bootloader required)
Code:
fastboot format:ext4 cache
fastboot format:f2fs userdata
without formatting, the phone cannot mount the partition and will brick (few phones are smart enough to complete the formatting step automatically, though)
Click to expand...
Click to collapse
Hi, thank you for your replies, sorry for my belated responsiveness, owing to the recent recovery from (severe) covid symptoms.
I once used "fastboot erase recovery" because the device was stuck on the logo of newly installed recovery, and had no other means to resolve it.
So do you mean that the right way to format cache, userdata or system partitions should include the format of the partition (ex. ext4, f2fs) in adb commands fastboot format:ext4 cache, fastboot format:f2fs userdata?
If so, will the simple command fastboot erase userdata do the same thing, given that userdata is located in one simple partition, ex. mmcblk0p43?
Both fastboot format:ext4 system and fastboot erase system will wipe out the same partition (say, mmcblk0p19 where the system partition is lcoated)?
What is the function to include disk format (ext4 or f2fs) in adb commands?
aIecxs said:
sounds like you did not unlock bootloader right way. most devices need another predecessor step: oem unlocking in developer options.
Btw do not use fastboot erase command at all, do not follow any tutorial that suggest this.
Click to expand...
Click to collapse
Hi,
I tried to unlock the device by fasboot oem unlock, it booted into recovery one more time.
And I verified in "Developer options", "OEM unlocking" is enabled.
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
How to resolve it?
Thanks.
unexpected behaviour. did you try fastboot flashing unlock as well?
wenyendev said:
Both fastboot format:ext4 system and fastboot erase system will wipe out the same partition (say, mmcblk0p19 where the system partition is located)?
What is the function to include disk format (ext4 or f2fs) in adb commands?
Click to expand...
Click to collapse
Yes, but there is a difference.
erase will delete entire partition.
format will only format file system.
including file system type is optional.
aIecxs said:
unexpected behaviour. did you try fastboot flashing unlock as well?
Yes, but there is a difference.
erase will delete entire partition.
format will only format file system.
including file system type is optional.
Click to expand...
Click to collapse
Yes, it was the same difference.
What is the difference between "delete entire partition" and "format file system"?
Thanks.
wenyendev said:
What is the difference between "delete entire partition" and "format file system"?
Click to expand...
Click to collapse
I assume once in your life you have created partition table with one or more partitions on single disk, be it windows or linux. every partition must formatted to receive a valid file system (NTFS FAT32 ext4 swap etc.) otherwise the raw partition is just unused inaccessable disk space.
"format file system" is when you format existing partition to valid file system type, in order to make it mountable
Ok thanks.
What else do "delete entire partition" and "format file system" do, apart from wiping out the data?
So the difference between two is that one would be mountable afterwards, the other not?
right. erase will just write 00 00 00 00 00 00 00 00 zeros on whole partition (invalid/empty disk space)
format will create a valid file system, so partition becomes useable.
aIecxs said:
without formatting, the phone cannot mount the partition and will brick (few phones are smart enough to complete the formatting step automatically, though)
Click to expand...
Click to collapse
to be nitpicky: partitions aren't mounted. file systems are.
Thanks.
So fastboot erase userdata,
fastboot erase system,
fastboot erase cache,
fastboot erase recovery
will overwrite their respective partitions (userdata, system, cache, recovery) by 00 00 00 00?
And by format like factory-reset, the data remain intact on the file system?
What are the relations between file systems and partitions?
It's good to be nitpicky in the context.
Here, by "mountable" you mean "to be able to read and write" (the file systems)?
Thanks in advance.
if you erase cache partition, the phone will no longer boot.
wenyendev said:
And by format like factory-reset, the data remain intact on the file system?
Click to expand...
Click to collapse
on formatting, no data remains intact, new (empty) file system is written to partition.
https://www.wikipedia.org/wiki/Disk_formatting
aIecxs said:
if you erase cache partition, the phone will no longer boot.
on formatting, no data remains intact, new (empty) file system is written to partition.
https://www.wikipedia.org/wiki/Disk_formatting
Click to expand...
Click to collapse
It is contrary to my experience.
After running fastboot erase cache, the device safely rebooted.
Here, "intact" means not overwritten by new data.
your bootloader is locked, therefore any harmful cmd (such as flash, erase, format) is forbidden and has no effect. (btw phone gave you warning you mixed up cmds format with erase)
Code:
fastboot erase cache
******** Did you mean to fastboot format this ext4 partition?
Erasing 'cache'
FAILED (remote: 'device is locked. Cannot erase')
I said on formatting, no data remains (nothing survives) because it is overwritten by new file system.
(Maybe on quick format some data may survive, but not provided by file system and therefore invisible/non existent, like free disk space.)
I was talking about fastboot erase cache that worked on another bootloader-free device.
then you are lucky your phone...
aIecxs said:
(few phones are smart enough to complete the formatting step automatically, though)
Click to expand...
Click to collapse
aIecxs said:
unexpected behaviour. did you try fastboot flashing unlock as well?
Yes, but there is a difference.
erase will delete entire partition.
format will only format file system.
including file system type is optional.
Click to expand...
Click to collapse
fastboot flashing unlock produced the following error.
What brand/device model/android version you are trying to unlock?
Code:
adb shell
$ getprop ro.build.fingerprint
$ getprop sys.get_unlock_ability
$ getprop ro.oem_unlock_supported
$ getprop ro.oem_unlock_allowed
Related
I can't format my device I enter recovery --> advanced wipe check all things and when he comes to wiping data he restart. Is memory dead ? I still have warranty, but custom recovery is on it, and custom ROM, what to do ?
EDIT:
I tried to wipe one by one(internal storage, system, cache, dalvik, and last data) and he only restarts on data when data is trying to be wiped.
Thermaltake868 said:
I can't format my device I enter recovery --> advanced wipe check all things and when he comes to wiping data he restart. Is memory dead ? I still have warranty, but custom recovery is on it, and custom ROM, what to do ?
EDIT:
I tried to wipe one by one(internal storage, system, cache, dalvik, and last data) and he only restarts on data when data is trying to be wiped.
Click to expand...
Click to collapse
reboot into bootloader, and type the following:
fastboot format system
fastboot format userdata
fastboot erase chace
this should make life easier
fastboot format system give me a bunch of commands, same as userdata. Only erase cache did the thing.
I tried to enter fastboot erase data, and he gave me this:
erasing 'data'...
FAILED (remote: not allowed)
finished. total time: 0.005s
Click to expand...
Click to collapse
these are commands that he gave me :
C:\fastb>fastboot format system
usage: fastboot [ <option> ] <command>
commands:
update <filename> reflash device from update.zip
flashall flash boot + recovery + system
flash <partition> [ <filename> ] write a file to a flash partition
erase <partition> erase a flash partition
getvar <variable> display a bootloader variable
boot <kernel> [ <ramdisk> ] download and boot kernel
flash:raw boot <kernel> [ <ramdisk> ] create bootimage and flash it
devices list all connected devices
continue continue with autoboot
reboot reboot device normally
reboot-bootloader reboot device into bootloader
help show this help message
options:
-w erase userdata and cache
-s <serial number> specify device serial number
-p <product> specify product name
-c <cmdline> override kernel commandline
-i <vendor id> specify a custom USB vendor id
-b <base_addr> specify a custom kernel base address
-n <page size> specify the nand page size. default:
2048
C:\fastb>fastboot format userdata
usage: fastboot [ <option> ] <command>
commands:
update <filename> reflash device from update.zip
flashall flash boot + recovery + system
flash <partition> [ <filename> ] write a file to a flash partition
erase <partition> erase a flash partition
getvar <variable> display a bootloader variable
boot <kernel> [ <ramdisk> ] download and boot kernel
flash:raw boot <kernel> [ <ramdisk> ] create bootimage and flash it
devices list all connected devices
continue continue with autoboot
reboot reboot device normally
reboot-bootloader reboot device into bootloader
help show this help message
options:
-w erase userdata and cache
-s <serial number> specify device serial number
-p <product> specify product name
-c <cmdline> override kernel commandline
-i <vendor id> specify a custom USB vendor id
-b <base_addr> specify a custom kernel base address
-n <page size> specify the nand page size. default:
2048
Click to expand...
Click to collapse
If I'm not wrong this works only if you are S-OFF I am S-ON
Thermaltake868 said:
fastboot format system give me a bunch of commands, same as userdata. Only erase cache did the thing.
I tried to enter fastboot erase data, and he gave me this:
these are commands that he gave me :
If I'm not wrong this works only if you are S-OFF I am S-ON
Click to expand...
Click to collapse
hmm yeah, you are right, sorry been used to my Nexus 5
I relock the phone now and trying to install stock RUU currently my image version is 2.18.401.2 and RUU is 1.17.401.1 will that work ? I mean did anyone try this already ?
There is still no android 4.2.2 RUU for one x +
Thermaltake868 said:
I relock the phone now and trying to install stock RUU currently my image version is 2.18.401.2 and RUU is 1.17.401.1 will that work ? I mean did anyone try this already ?
There is still no android 4.2.2 RUU for one x +
Click to expand...
Click to collapse
What is ur hboot version.......
if it is higher 1.35 it wont work.......
[email protected] said:
What is ur hboot version.......
if it is higher 1.35 it wont work.......
Click to expand...
Click to collapse
It's 1.72. Then how am I supposed to return my phone to stock I mean it's my only hope, I really don't know what else to do.
Thermaltake868 said:
It's 1.72 how am I supposed to return my phone to stock I mean it's my only hope. I really don't know what else to do.
Click to expand...
Click to collapse
I exactly had the same issue with my HOX+.......
I flashed TWRP formatted Internal SDCARD itself to get it working...
But Can u try these commands from fastboot
Code:
fastboot erase userdata
fastboot erase system
fastboot erase cache
reboot into ur recovery
try installing the ROM.........
[email protected] said:
I exactly had the same issue with my HOX+.......
I flashed TWRP formatted Internal SDCARD itself to get it working...
But Can u try these commands from fastboot
Code:
fastboot erase userdata
fastboot erase system
fastboot erase cache
reboot into ur recovery
try installing the ROM.........
Click to expand...
Click to collapse
Read up I already try that, can't use fastboot erase system or data, only erase cache works. I was at TWRP trying to wipe all but can't when trying to wipe data phone restarts. I successfully erase internal storage, system, cache and dalvik in TWRP.
Thermaltake868 said:
Read up I already try that, can't use fastboot erase system or data, only erase cache works. I was at TWRP trying to wipe all but can't when trying to wipe data phone restarts. I successfully erase internal storage, system, cache and dalvik in TWRP.
Click to expand...
Click to collapse
Deleted
FIXED:
By Installing cwm recovery, and in cwm he manage to wipe all, and I return to TWRP and did the same thing there, now it's all working again, something was messed up, don't know exactly what, but it's gone now.
So I accidentally deleted my cache partition of my Kindle HD 6 in fastboot. What a dork!
Code:
C:\kindle>fastboot update
archive does not contain 'android-info.txt'
archive does not contain 'android-product.txt'
error: update package has no android-info.txt or android-product.txt
C:\kindle>fastboot erase cache
erasing 'cache'...
OKAY [ 0.086s]
finished. total time: 0.086s
C:\kindle>fastboot format cache
formatting 'cache' partition...
Formatting is not supported for filesystem with type 'unknown'.
FAILED ()
finished. total time: 0.022s
C:\kindle>fastboot reboot
rebooting...
finished. total time: 0.015s
C:\kindle>fastboot reboot
^Was the command I entered, and then I rebooted... Now my Kindle is just a happy paper weight that is forever booting up. Any help? I have a factory flash cable coming but I'm unsure how to recreate the cache partition. And I did attempt to, it just said it can't format an unknown filesystem.
Thank you for the help and God bless!
If I could get a dd .bin file of the cache partition that may work, then I could flash the bin back to cache with fastboot. I need some help from the community on this one.
Could I get someone with a HD6 to adb shell into their device and then
cat /proc/mounts
Then find the cache partition (from cat /proc/mounts) and copy the cache in ADB shell on the device:
dd if=/dev/block/*the cache block partition goes here* of=/sdcard/cache.img
Then upload the cache.img file to me on dropbox. Thank YOU!
Yeah, permission denied.
sorry,
miniletsmotor said:
If I could get a dd .bin file of the cache partition that may work, then I could flash the bin back to cache with fastboot. I need some help from the community on this one.
Could I get someone with a HD6 to adb shell into their device and then
cat /proc/mounts
Then find the cache partition (from cat /proc/mounts) and copy the cache in ADB shell on the device:
dd if=/dev/block/*the cache block partition goes here* of=/sdcard/cache.img
Then upload the cache.img file to me on dropbox. Thank YOU!
Click to expand...
Click to collapse
Hello Friends,
i have used
'fastboot erase userdata -w' command
and wiped all my partitions and now i can't flash or mount anything stucked at boot.
When i try to flash it says
FAILED <remote failure>
Can anyone help?:angel::angel::angel:
i did an upgrade from 7.0 nougat to oreo 8.0 using firmware finder.apk, after that every thing was going good, i backed up my stock rom and wanna try 8.0 custom rom and accidentally i formatted my backup and and tried many custom roms but no survival chances,
now my oem info shows RNE-L21C432B133, i had also downloaded the full ota + hw/eu file but dont know how to flash properly mate 10 lite.
can any one help ????
you should format by using fastboot. First download your stock ROM and extract with Huawei Firmware Extracter. Select UPDATE.APP and extract following files:
erecovery_kernel.img
erecovery_ramdisk.img
erecovery_vbmeta.img
cust.img
erecovery_vendor.img
kernel.img
ramdisk.img
recovery_vbmeta.img
recovery_vendor.img
system.img
Reboot your device in to fastboot mode (recovery mode) and flash those files one by one:
fastboot flash erecovery_kernel erecovery_kernel.img
...
fastboot flash system system.img
//
Erase your userdata space:
fastboot -w
//reboot
fastboot reboot
Now go to your stock recovery and do factory reset, wide cache.
Now your device back to stock OREO
Install Stock ROM Huawei
-.phone connected USB
-.connected To On TWRP
-.Rename xxxxxx to update_all_hw
-.Rename xxxxxx to update_data_public
-----------------------------------------------------
Install
-.Shift + right click the folder and open command prompt here
-.adb push HuRUpdater_0.3.zip /sdcard
-.adb push update.zip /sdcard
-.adb push update_all_hw.zip /sdcard
-.adb push update_data_public.zip /sdcard
-----------------------------------------------------
install on TWRP
-.install - Press HuRUpdater_0.3.zip
-.Then follow instructions on screen VOLUME DOWN
-.Press back once more -- Select reboot recovery
-.Wipe data/factory reset -- Then reboot system
-.DONE GOODLUCK
JAZZYBUTT999 said:
i did an upgrade from 7.0 nougat to oreo 8.0 using firmware finder.apk, after that every thing was going good, i backed up my stock rom and wanna try 8.0 custom rom and accidentally i formatted my backup and and tried many custom roms but no survival chances,
now my oem info shows RNE-L21C432B133, i had also downloaded the full ota + hw/eu file but dont know how to flash properly mate 10 lite.
can any one help ????
Click to expand...
Click to collapse
ma sauvegarde de rne-l21c432b133 full https://mega.nz/#!ksdhmCQJ!fb5TDWpBEEA_BwXnO4gd86ry33tD6rVaGdXQ3kYy7LU
copy all to your TWRP folder from your SD card.
Use this TWRP because the backup was done with.
* https://mega.nz/#!c1tyRL7Z!r3fhcK5eNHR1aaN_s8OwafD1eQutvpc2cF-lG4guQdk
restart in TWRP.
go to wipe.
check all except oeminfo. and wipe all.
go to wipe, data format, write yes and validate.
go to wipe check data and change to f2f.
now, go to restore, and restore all files one by one, except oeminfo.
once finished, go to install, install the file meta-inf.zip (it's product).
https://mega.nz/#!d5sgDQba!Zntk05RjlDLFi7Wmz7mmVvvr7nc4vp7Kv2SZtcLjB5Q
then restart.
here is.
thanks for the info
Chisetdel31260 said:
ma sauvegarde de rne-l21c432b133 full https://mega.nz/#!ksdhmCQJ!fb5TDWpBEEA_BwXnO4gd86ry33tD6rVaGdXQ3kYy7LU
copy all to your TWRP folder from your SD card.
Use this TWRP because the backup was done with.
* https://mega.nz/#!c1tyRL7Z!r3fhcK5eNHR1aaN_s8OwafD1eQutvpc2cF-lG4guQdk
restart in TWRP.
go to wipe.
check all except oeminfo. and wipe all.
go to wipe, data format, write yes and validate.
go to wipe check data and change to f2f.
now, go to restore, and restore all files one by one, except oeminfo.
once finished, go to install, install the file meta-inf.zip (it's product).
https://mega.nz/#!d5sgDQba!Zntk05RjlDLFi7Wmz7mmVvvr7nc4vp7Kv2SZtcLjB5Q
then restart.
here is.
Click to expand...
Click to collapse
i will try asap and after that i will let u know the results.... thumbs up:good::good::good:
Help
Hi I also have my Mate 10 Lite RNE-L21C432 locked. I can only get into fastboot.
These are the results of fast boot:
C:\adb fastboot oem get—product—mode1
(bootloader) RNE-L21
OKAY [ 0.016s]
finished, total tine: 0.031s
C:\adb>fastboot getvar vendorcountry
vendorcountry: hw/eu
finished, total tine: 0.016s
C:\adb>fastboot oem get-build-number
(bootloader) :Systen 8.0.0.046(07P2)
OKAY [ 0.031s]
finished, total tine: 0.031s
C:\adb)fastboot getvar rescue_enter_recovery
(bootloader) This is sec phone??
(bootloader) NOT secboot recovery image?
getvar:rescue_enter_recovery FAILED (remote: FAIL:verify secure image fail? )
finished, total tine: 0.078s
C:\adb)fastboot oem oeminforead-SYSTEM_VERSION
(bootloader) :Systen 8.0.0.046(07P2)
OKAY I 0.031s]
finished, total tine: 0.031s
C:\adb>
can someone help me? Thank you
pabbata said:
Hi I also have my Mate 10 Lite RNE-L21C432 locked. I can only get into fastboot.
These are the results of fast boot:
C:\adb fastboot oem get—product—mode1
(bootloader) RNE-L21
OKAY [ 0.016s]
finished, total tine: 0.031s
C:\adb>fastboot getvar vendorcountry
vendorcountry: hw/eu
finished, total tine: 0.016s
C:\adb>fastboot oem get-build-number
(bootloader) :Systen 8.0.0.046(07P2)
OKAY [ 0.031s]
finished, total tine: 0.031s
C:\adb)fastboot getvar rescue_enter_recovery
(bootloader) This is sec phone??
(bootloader) NOT secboot recovery image?
getvar:rescue_enter_recovery FAILED (remote: FAIL:verify secure image fail? )
finished, total tine: 0.078s
C:\adb)fastboot oem oeminforead-SYSTEM_VERSION
(bootloader) :Systen 8.0.0.046(07P2)
OKAY I 0.031s]
finished, total tine: 0.031s
C:\adb>
can someone help me? Thank you
Click to expand...
Click to collapse
Hello
do you have TWRP for emui 8.0 that starts?
if so, use HurUpdater 0.3, reinstall rne-l21c432b304.
Chisetdel31260 said:
Hello
do you have TWRP for emui 8.0 that starts?
if so, use HurUpdater 0.3, reinstall rne-l21c432b304.
Click to expand...
Click to collapse
Hello
as I indicated in the previous post, I can only enter fastboot mode. when I try to install Oreo recovery from this message:
C:\Users\Pabbata\Desktop\TWRP oreo Mate 10 lite\TWRP oreo\data>fastboot flash re
covery_ramdisk recovery_ramdisk.img
target reported max download size of 471859200 bytes
sending 'recovery_ramdisk' (9882 KB)...
OKAY [ 0.359s]
writing 'recovery_ramdisk'...
FAILED (remote: partition length get error)
finished. total time: 0.374s
It does not let me install any TWRP either Oreo or Nougat. As you can see fastboot says that the operating system 8.0.0.046(07P2) is currently installed.
pabbata said:
Hello
as I indicated in the previous post, I can only enter fastboot mode. when I try to install Oreo recovery from this message:
C:\Users\Pabbata\Desktop\TWRP oreo Mate 10 lite\TWRP oreo\data>fastboot flash re
covery_ramdisk recovery_ramdisk.img
target reported max download size of 471859200 bytes
sending 'recovery_ramdisk' (9882 KB)...
OKAY [ 0.359s]
writing 'recovery_ramdisk'...
FAILED (remote: partition length get error)
finished. total time: 0.374s
It does not let me install any TWRP either Oreo or Nougat. As you can see fastboot says that the operating system 8.0.0.046(07P2) is currently installed.
Click to expand...
Click to collapse
teste this TWRP https://forum.xda-developers.com/showpost.php?p=76397635&postcount=2
---------- Post added at 07:43 PM ---------- Previous post was at 07:43 PM ----------
pabbata said:
Hello
as I indicated in the previous post, I can only enter fastboot mode. when I try to install Oreo recovery from this message:
C:\Users\Pabbata\Desktop\TWRP oreo Mate 10 lite\TWRP oreo\data>fastboot flash re
covery_ramdisk recovery_ramdisk.img
target reported max download size of 471859200 bytes
sending 'recovery_ramdisk' (9882 KB)...
OKAY [ 0.359s]
writing 'recovery_ramdisk'...
FAILED (remote: partition length get error)
finished. total time: 0.374s
It does not let me install any TWRP either Oreo or Nougat. As you can see fastboot says that the operating system 8.0.0.046(07P2) is currently installed.
Click to expand...
Click to collapse
teste this TWRP https://forum.xda-developers.com/showpost.php?p=76397635&postcount=2 : p
---------- Post added at 07:44 PM ---------- Previous post was at 07:43 PM ----------
pabbata said:
Hello
as I indicated in the previous post, I can only enter fastboot mode. when I try to install Oreo recovery from this message:
C:\Users\Pabbata\Desktop\TWRP oreo Mate 10 lite\TWRP oreo\data>fastboot flash re
covery_ramdisk recovery_ramdisk.img
target reported max download size of 471859200 bytes
sending 'recovery_ramdisk' (9882 KB)...
OKAY [ 0.359s]
writing 'recovery_ramdisk'...
FAILED (remote: partition length get error)
finished. total time: 0.374s
It does not let me install any TWRP either Oreo or Nougat. As you can see fastboot says that the operating system 8.0.0.046(07P2) is currently installed.
Click to expand...
Click to collapse
teste this TWRP https://forum.xda-developers.com/showpost.php?p=76397635&postcount=2 : p
Chisetdel31260 said:
teste this TWRP https://forum.xda-developers.com/showpost.php?p=76397635&postcount=2
---------- Post added at 07:43 PM ---------- Previous post was at 07:43 PM ----------
teste this TWRP https://forum.xda-developers.com/showpost.php?p=76397635&postcount=2 : p
---------- Post added at 07:44 PM ---------- Previous post was at 07:43 PM ----------
teste this TWRP https://forum.xda-developers.com/showpost.php?p=76397635&postcount=2 : p
Click to expand...
Click to collapse
Hi I also installed this twrp, this is the result:
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
pabbata said:
Hi I also installed this twrp, this is the result:
Click to expand...
Click to collapse
ME TOO Help Me
---------- Post added at 03:08 PM ---------- Previous post was at 03:00 PM ----------
++++++++++++++++
*Deleted*
tried but failed
Chisetdel31260 said:
ma sauvegarde de rne-l21c432b133 full https://mega.nz/#!ksdhmCQJ!fb5TDWpBEEA_BwXnO4gd86ry33tD6rVaGdXQ3kYy7LU
copy all to your TWRP folder from your SD card.
Use this TWRP because the backup was done with.
* https://mega.nz/#!c1tyRL7Z!r3fhcK5eNHR1aaN_s8OwafD1eQutvpc2cF-lG4guQdk
restart in TWRP.
go to wipe.
check all except oeminfo. and wipe all.
go to wipe, data format, write yes and validate.
go to wipe check data and change to f2f.
now, go to restore, and restore all files one by one, except oeminfo.
once finished, go to install, install the file meta-inf.zip (it's product).
https://mega.nz/#!d5sgDQba!Zntk05RjlDLFi7Wmz7mmVvvr7nc4vp7Kv2SZtcLjB5Q
then restart.
here is.
Click to expand...
Click to collapse
twrp does'nt flash, this happens see pic after flashing
https://lh3.googleusercontent.com/-...G99AIgCJoC/w530-h942-n-rw/AAAAAAAAAAAAAAA.jpg
I used HuRu today, to flash a Firmware Finder stock Oreo ROM as per my build number
I was partially on elemntal 1.1 (oreo) the phone got boot loop, I tried with my stock
oreo backups, it would show error on Venor and System, tried with Mounting unmounting
from TWRP, didnt work, restarted phone Lost TWRP, but the good thing was my Bootloader
and FRP were unlocked (used a file from Elemental rom thread to unlock FRP,
when my bootloader was already unlocked). In TWRP finally I tried to wipe
every thing (not SD Card), then tried to restore my back up again, unchecked vendor then
restarted, after a few bootloop restarts, I got stock recovery and used Format option, then got nothing on phone just the Stock recovery, format would close with ! mark in between.
So at this point, I would repeatedly get following error when installing any of TWRPs for mate 10 lite:
FAILED (remote: Command not allowed)
Was worried thinking I am not going to get any thing from this point, but then just tried the dload method
which worked only once for me in the past, and later always failed @ 5 %
So tried dload with the files for Nougat (RNE-L21C185B142), luckily it worked for me, I am on nougat again
sentavn said:
you should format by using fastboot. First download your stock ROM and extract with Huawei Firmware Extracter. Select UPDATE.APP and extract following files:
erecovery_kernel.img
erecovery_ramdisk.img
erecovery_vbmeta.img
cust.img
erecovery_vendor.img
kernel.img
ramdisk.img
recovery_vbmeta.img
recovery_vendor.img
system.img
Reboot your device in to fastboot mode (recovery mode) and flash those files one by one:
fastboot flash erecovery_kernel erecovery_kernel.img
...
fastboot flash system system.img
//
Erase your userdata space:
fastboot -w
//reboot
fastboot reboot
Now go to your stock recovery and do factory reset, wide cache.
Now your device back to stock OREO
Click to expand...
Click to collapse
Forgive me How is the exact procedure for formatting via fastboot Thanks I have the phone in these conditions
Diego1976 said:
Forgive me How is the exact procedure for formatting via fastboot Thanks I have the phone in these conditions
Click to expand...
Click to collapse
I think by running this command fastboot flash system system.img will automatically erase your data.
JAZZYBUTT999 said:
twrp does'nt flash, this happens see pic after flashing
https://lh3.googleusercontent.com/-...G99AIgCJoC/w530-h942-n-rw/AAAAAAAAAAAAAAA.jpg
Click to expand...
Click to collapse
hello did you solve it? the image like you comes out to me too ..
I also tried with hwota but nothing to do!
let me know if you found a solution
thanks in advance
Aniwat12 said:
Install Stock ROM Huawei
-.phone connected USB
-.connected To On TWRP
-.Rename xxxxxx to update_all_hw
-.Rename xxxxxx to update_data_public
-----------------------------------------------------
Install
-.Shift + right click the folder and open command prompt here
-.adb push HuRUpdater_0.3.zip /sdcard
-.adb push update.zip /sdcard
-.adb push update_all_hw.zip /sdcard
-.adb push update_data_public.zip /sdcard
-----------------------------------------------------
install on TWRP
-.install - Press HuRUpdater_0.3.zip
-.Then follow instructions on screen VOLUME DOWN
-.Press back once more -- Select reboot recovery
-.Wipe data/factory reset -- Then reboot system
-.DONE GOODLUCK
Click to expand...
Click to collapse
This Works on Semi-Brick (Start normally and when Android wakes up it reboots in recovery)?
hi, my mate 10 seems bricked. i can't go into fastboot mode neither in recovery. when i charge the phone, the led remain off.
but if i connect the phone to pc, hisuite starts. what can i do?
if i use hwota, the results is
writing 'recovery_ramdisk'...
FAILED (remote: partition length get error)
finished. total time: 0.529s
Dyzzy Solution
Guys I am now with some dyzzy solution but... with some logic to me, ok I will explain how I have my device alive again.
to be clear, this brick was caused because I want to have my device from ATT Mexico rebranded with dual sim ROM, then I lost oem info and cant go back 4G, so I installed Custom MORFUZ ROM 3.4, but I still without 4G and now with my second simcard deactivated, so... I tried to reflash with HWOTA the RNE-L03 rom single sim and... that was the mistake, after the procedure.. I got the semi-brick (since 2 days ago), ok then I was searching and reading a lot (and using more common sense haha) so, I needed to repair my device partitions because there was a mess triying to flash from another partition so, thats how I ended here, let's start:
*** First of all, prepare an SD card with the files for the HuRUpdater_0.3 mode, (just a tip, I leaved my phone run out of battery because I had the bootloop on the prompt screen that says that "your bootloader is unlocked and device is not trusted" so its easier to have acces to fastboot mode if you do this way)
- Step 1: I did the fastboot manual flashing unpacking my UPDATE.APP with HuaweiUpdateExtractor (see post#2)
once succesfully finished I rebooted my phone and still bricked
- Step 2: I entered fastboot mode and flashed the recovery image from CATUVA21 for Oreo (see post #9)
(IMPORTANT: DO NOT TRY TO ENTER ON TWRP RECOVERY RIGHT NOW OR YOU WILL NEED TO START AGAIN FROM STEP 1)
-Step 3: Connect the phone to energy (charger?, sorry I have very bad english) just 2 percent an unpplug, that's because if you can't go forward from here, you have to wait less to re-enter in fastboot and try another solution
-Steep 4: Here is the magic, press vol+ and plug the phone to your pc (yea, like entering eRecovery Wifi Mode) and Voilá!!! entered TWRP
-Steep 5: Flash HuRUpdater_0.3.zip, leave it finish, reboot device
Now you will be prompted to EMUI black screen with a message that says "partition is several damaged, you need to clean all partitions" you click on "clean all partitions" once finished, click in "Reboot System" be patient, for me was 4-6 minutes and some bootloops untill I heared the bootanimation tune and there is, initial config and now you are in a very dirty ROM but from here you can reflash a full rom, I hope It Help to anyone.
I have a Motorola XT1941-4, which I have from some time ago which is currently not able to be used. I wanted to try and fix it but cannot get any progress done. The problem I'm having is as follows: Whenever I boot the phone it goes right into the bootloader and at the bottom it says flashing_locked. I' able to communicate with the phone via fastboot and am able to boot into TWRP with fastboot boot twrp.img and when I am in TWRP the phone is also recognized in ADB. However I cannot get the phone to boot into Android. Is there anything I can do to fix this?
ogruendel said:
I have a Motorola XT1941-4, which I have from some time ago which is currently not able to be used. I wanted to try and fix it but cannot get any progress done. The problem I'm having is as follows: Whenever I boot the phone it goes right into the bootloader and at the bottom it says flashing_locked. I' able to communicate with the phone via fastboot and am able to boot into TWRP with fastboot boot twrp.img and when I am in TWRP the phone is also recognized in ADB. However I cannot get the phone to boot into Android. Is there anything I can do to fix this?
Click to expand...
Click to collapse
Have you tried to blankflash it?
FilipeET said:
Have you tried to blankflash it?
Click to expand...
Click to collapse
How would I go about doing that?
ogruendel said:
How would I go about doing that?
Click to expand...
Click to collapse
I'll leave the Motorola qboot utility in this reply.
Start device in fastboot mode, and
run the following command:
Code:
fastboot oem blankflash
fastboot oem blankflash
after that, extract and run the Unbrick.bat that I'll leave in this reply, your phone should be on a black screen when running the command, but after running the "Unbrick.bat" it should restart to the unlocked bootloader!
but before running it, verify if your phone codename is "deen"
FilipeET said:
I'll leave the Motorola qboot utility in this reply.
Start device in fastboot mode, and
run the following command:
Code:
fastboot oem blankflash
fastboot oem blankflash
after that, extract and run the Unbrick.bat that I'll leave in this reply, your phone should be on a black screen when running the command, but after running the "Unbrick.bat" it should restart to the unlocked bootloader!
but before running it, verify if your phone codename is "deen"
Click to expand...
Click to collapse
Sorry for the late reply, I had issues with my computer and then forgot about this... I've tried running the command fastboot oem blankflash but I get
Code:
(bootloader) command restricted
FAILED (remote: '')
fastboot: error: Command failed
ogruendel said:
Sorry for the late reply, I had issues with my computer and then forgot about this... I've tried running the command fastboot oem blankflash but I get
Code:
(bootloader) command restricted
FAILED (remote: '')
fastboot: error: Command failed
Click to expand...
Click to collapse
Try to switch the slot,
Code:
fastboot set_active other
FilipeET said:
Try to switch the slot,
Code:
fastboot set_active other
Click to expand...
Click to collapse
I've tried this command, however this also fails with the message
Code:
Setting current slot to 'a' (bootloader) Command is not allowed
FAILED (remote: '')
fastboot: error: Command failed
What appears when you start the phone? could you send me a picture? Have you tried starting the recovery? Tried to use Lenovo Moto Smart Assistant?
have you tried unlocking the bootloader again?
ogruendel said:
I've tried this command, however this also fails with the message
Code:
Setting current slot to 'a' (bootloader) Command is not allowed
FAILED (remote: '')
fastboot: error: Command failed
Click to expand...
Click to collapse
What appears when you start the phone? could you send me a picture? Have you tried starting the recovery? Tried to use Lenovo Moto Smart Assistant?
have you tried unlocking the bootloader again?
I saw that you put in the post that you can start twrp, try changing the slot there in Reboot > Switch to slot B,
if it is in slot b: Reboot > Switch to slot A.
FilipeET said:
What appears when you start the phone? could you send me a picture? Have you tried starting the recovery? Tried to use Lenovo Moto Smart Assistant?
have you tried unlocking the bootloader again?
I saw that you put in the post that you can start twrp, try changing the slot there in Reboot > Switch to slot B,
if it is in slot b: Reboot > Switch to slot A.
Click to expand...
Click to collapse
What appears when you start the phone?
Click to expand...
Click to collapse
https://imgur.com/a/Veg48Bs
Have you tried starting the recovery? Tried to use Lenovo Moto Smart Assistant?
Click to expand...
Click to collapse
Yes, however when I start the program it detects that a phone is connected but tells me "RSA detected, that your device flash is locked. [...]"
Have you tried unlocking the bootloader aagin?
Click to expand...
Click to collapse
Yes, I have. I remember when trying this before and following the steps on the official Motorola website, I would receive a new unlock code, however when I run fastboot oem get_unlock_data now and enter the output into the Motorola website it comes up with an error telling me that my device does not qualify for bootloader unlocking.
I saw that you put in the post that you can start twrp, try changing the slot there in Reboot > Switch to slot B,
if it is in slot b: Reboot > Switch to slot A.
Click to expand...
Click to collapse
I did this but the behaviour is the same. Commands come back with the same errors etc.
I saw the image, your phone can be unlocked, its says flashing_unlocked, so, he got unlocked 1 time, Just run "fastboot flashing unlock" ir "fastboot oem unlock"
ogruendel said:
https://imgur.com/a/Veg48Bs
Yes, however when I start the program it detects that a phone is connected but tells me "RSA detected, that your device flash is locked. [...]"
Yes, I have. I remember when trying this before and following the steps on the official Motorola website, I would receive a new unlock code, however when I run fastboot oem get_unlock_data now and enter the output into the Motorola website it comes up with an error telling me that my device does not qualify for bootloader unlocking.
I did this but the behaviour is the same. Commands come back with the same errors etc.
Click to expand...
Click to collapse
FilipeET said:
I saw the image, your phone can be unlocked, its says flashing_unlocked, so, he got unlocked 1 time, Just run "fastboot flashing unlock" ir "fastboot oem unlock"
Click to expand...
Click to collapse
When running
Code:
fastboot flashing unlock
two times (adb tells me to) it comes back with
Code:
(bootloader) Check 'Allow OEM Unlock' in Android Settings > Developer
(bootloader) Options.
OKAY [ 0.002s]
Finished. Total time: 0.002s
Although the first part looks like the command failed, the OKAY in the end kind of contradicts that. The problem here is that I obviously cannot access the OS to enable OEM Unlocking in the Developer settings.
When running
Code:
fastboot oem unlock
the output says
Code:
(bootloader) invalid boot state
OKAY [ 0.001s]
Finished. Total time: 0.002s
ogruendel said:
When running
Code:
fastboot flashing unlock
two times (adb tells me to) it comes back with
Code:
(bootloader) Check 'Allow OEM Unlock' in Android Settings > Developer
(bootloader) Options.
OKAY [ 0.002s]
Finished. Total time: 0.002s
Although the first part looks like the command failed, the OKAY in the end kind of contradicts that. The problem here is that I obviously cannot access the OS to enable OEM Unlocking in the Developer settings.
When running
Code:
fastboot oem unlock
the output says
Code:
(bootloader) invalid boot state
OKAY [ 0.001s]
Finished. Total time: 0.002s
Click to expand...
Click to collapse
Can you start the recovery?
FilipeET said:
Can you start the recovery?
Click to expand...
Click to collapse
If by starting the recovery you mean using the Motorola Smart Assistant, then no. The behaviour is the same as it was before. If you mean something else, please let me know
Try this:
fastboot flash partition gpt.bin
FilipeET said:
Try this:
fastboot flash partition gpt.bin
Click to expand...
Click to collapse
When running this the output again looks kind of weird, both looking like it failed and it working.
Code:
(bootloader) is-logical:partition: not found
(bootloader) is-logical:partition: not found
(bootloader) is-logical:partition: not found
Warning: skip copying partition image avb footer (partition partition size: 0, partition image size: 46592).
Sending 'partition' (45 KB) OKAY [ 0.168s]
Writing 'partition' (bootloader) Validating 'gpt.default.xml'
(bootloader) Committing 'gpt.default.xml'
(bootloader) - flashing 'gpt_main0.bin' to 'partition:0'
(bootloader) Flashing primary GPT image...
(bootloader) Flashing backup GPT image...
OKAY [ 0.081s]
Finished. Total time: 0.591s
ogruendel said:
When running this the output again looks kind of weird, both looking like it failed and it working.
Code:
(bootloader) is-logical:partition: not found
(bootloader) is-logical:partition: not found
(bootloader) is-logical:partition: not found
Warning: skip copying partition image avb footer (partition partition size: 0, partition image size: 46592).
Sending 'partition' (45 KB) OKAY [ 0.168s]
Writing 'partition' (bootloader) Validating 'gpt.default.xml'
(bootloader) Committing 'gpt.default.xml'
(bootloader) - flashing 'gpt_main0.bin' to 'partition:0'
(bootloader) Flashing primary GPT image...
(bootloader) Flashing backup GPT image...
OKAY [ 0.081s]
Finished. Total time: 0.591s
Click to expand...
Click to collapse
try to start the phone now
FilipeET said:
try to start the phone now
Click to expand...
Click to collapse
When trying to start it now, it bootloops on this screen for a while.
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
I left it on there and went to do something else and when I came back it showed this.
ogruendel said:
When trying to start it now, it bootloops on this screen for a while.
View attachment 5936813
I left it on there and went to do something else and when I came back it showed this.
View attachment 5936815
Click to expand...
Click to collapse
Oh!!! Flash the stock rom now!
If it doesn't flash the stock rom, blank flash it.
You flashed the partition scheme, so it needs to be "UnHardBricked"
FilipeET said:
Oh!!! Flash the stock rom now!
If it doesn't flash the stock rom, blank flash it.
You flashed the partition scheme, so it needs to be "UnHardBricked"
Click to expand...
Click to collapse
Is there some central place for stock roms that I can trust or do I have to look for them on various different websites?
Edit: I think I was able to download the stock ROM directly from the Rescue Assistant. Also which commands do I need to run in order to flash the stock rom?