Oukitel WP15 - Android Q&A, Help & Troubleshooting

Hey everyone,
Just bought a brand new Oukitel WP15 and would love to go with LineageOS 17 or 18 if possible. I was wondering if that is possible (from the specs of the phone) and what method would be best. Sorry for my total nooby question - I am new to the game, but would want to add some privacy to my life.
Thanks for your help.

I tried Andy Yan's build at the end of autumn and it had worked. not sure about version, more likely it was a 17.
also, not sure, but seems builds based on aosp12 will not work with current official (oukitel) boot. so if you'll want to try, builds based on aosp11 would be prefer, but anyway - no warranties.
p.s. I use a phhusson's 11.0 v313 and it works fine enough for me.

=>redirected from https://forum.xda-developers.com/t/oukitel-wp15-bootloop.4371295
ok. again, english is not my first language, so it's a bit hard to explaining. if you more interesting, you may find information at any other en sources. but at least now you would understand what to search more clearly.
I would talk about only mostly important parts to be short.
about partitions:
- boot - it's a kernel and a first main partition we have a 4.14 version. not sure, but seems android 12 required 5.4 kernel. so, perhaps you can't use aosp12, only aosp11 builds.
- super - it's a main dynamic partition (you may treat it like an archive file), what contain at least 3 partitions for operation system:
- - system - part of original google gsi
- - product - vendor modified part of gsi
- - vendor - device drivers only
ok. we can schematically draw it like this (sizes for current official wp15 fw):
{
"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"
}
so, basically, "whole virtual os drive" is a couple of a 3 partitions: "system + product + vendor". where "system + product" is a os part independent of device and vendor is a device specified part.
but, as google gsi as 3d party gsi is a stand alone os without drivers and they not use a "product" partition.
so if you want to use 3d party os, you need enough free space in dynamic partition. in case of above, at first, you must remove/resize to 0 "product" partition, then you may upload desired gsi as a "system" partition.
theoretically that's all.
partitions accessing.
- dark green partitions (boot and super) can be accessing via adb through bootloader mode, i.e. via using:
adb reboot bootloader
you'll can see a small white text at a bottom left corner of a phone display "fastboot mode...".
- light green partitions (system product, vendor) can be accessing via adb through fastbootD (seems "D" means "dynamic"), i.e. via using magic manipulations of power and volume buttons at power on, or via adb command:
fastboot reboot fastboot
you'll can see a big blue text "fastboot" at top of a display and some orange menu texts
partition manipulations:
- erase:
fastboot erase <partition_name>
so for system and product it'll be a:
fastboot erase system
fastboot erase product
n.b. erasing have no affect to size of partition.
- resizing
fastboot resize-logical-partition <partition_name_with_slot> <size_in_bytes>
so for resizing product to 0 with slot "a" (look at erase log, it show you current active slot in erased name of partition)
fastboot resize-logical-partition product_a 0
so, as I talk above, basically, wp15 have a too small size of a "system" partition ~42mb. so you need to resize it enough to desired not sparsed gsi. I mean more or equal in bytes. you may try to experiment with numbers and resize it to maximum possible. for sample:
fastboot resize-logical-partition system_a 2850000000
- uploading img to device
fastboot --disable-verity --disable-verification flash <partition_name> <image_file_name.img>
of cource img file must be visible to adb. also it must be sparsed. you may easily detect it via any text/hex viewer:
you may upload not sparsed image, but not sure what it would work, also adb woul send you error message about wrong header. if your image is not sparced, you may sparse it by "img2simg" tool, but do not try to sparse already sparsed image - it would not work after uploading.
seems that's all main information what you need to set 3d party gsi.
of course, you must enable developer mode, allow flashing and unlock your phone at first (and even do not try to lock it back to avoid red state).
so if you do it at first time, you must do this:
unlock boot
- go to bootloader:
adb reboot bootloader
- unlock it
fastboot flashing unlock
push some keys - see instruction at phone display
- disable verification
fastboot --disable-verification flash vbmeta vbmeta.img
"vbmeta.img" is a file from your current fw and it must be visible to adb, seems you may download it directly from your phone, but not sure about correct command.
- clear user data
fastboot -w
- go to fastbootD
fastboot reboot fastboot
- erase system, product and resize them both
fastboot erase system
fastboot erase product
fastboot resize-logical-partition product_a 0
fastboot resize-logical-partition system_a 2850000000
- upload desired image as system
fastboot --disable-verity --disable-verification flash system <desired_image.img>
- clear user data and create it partitions
fastboot -w
- go back to bootloader
fastboot reboot bootloader
- format user data partitions
fastboot erase userdata
- that's all. just reboot
fastboot reboot
at next time, if you want to set another gsi, you just need:
- go to fastbootD
fastboot reboot fastboot
- erase system
fastboot erase system
- upload desired image as system
fastboot --disable-verity --disable-verification flash system <desired_image.img>
- clear user data and create it partitions
fastboot -w
- go back to bootloader
fastboot reboot bootloader
- format user data partitions
fastboot erase userdata
- reboot
fastboot reboot
n.b. if you use 3d party boot (twrp or similar), gsi may not work.
also not all of gsi would work. phhusson's 11.0 v313 works fine enough (I use it, but without root), linage of Andy Yan works too, but I did not remember version. any clear google gsi did not work. perhaps any aosp12 would not work with current kernel (may be wrong).

Thanks bro, i will try again, i remember i did try erase system, but same error, partition not found, i don't know the erase commad for oukitel wp15
On command "getvar all" it show that some files are on partition slot_a and some on slot_b

slots is just an active version of used partitions. you can't use them both at once. seems you must read or view about slots too)) try to watch this. it's very useful and informative
use translate subtitles, if your language is not en.
Asqq said:
i did try erase system, but same error, partition not found
Click to expand...
Click to collapse
it's depend of from where you tried to do it. you must do it while you in fastbootD, not fastboot (bootloader). i.e. you must be "inside super" to work with system.

vxsw said:
=>redirected from https://forum.xda-developers.com/t/oukitel-wp15-bootloop.4371295
ok. again, english is not my first language, so it's a bit hard to explaining. if you more interesting, you may find information at any other en sources. but at least now you would understand what to search more clearly.
I would talk about only mostly important parts to be short.
about partitions:
- boot - it's a kernel and a first main partition we have a 4.14 version. not sure, but seems android 12 required 5.4 kernel. so, perhaps you can't use aosp12, only aosp11 builds.
- super - it's a main dynamic partition (you may treat it like an archive file), what contain at least 3 partitions for operation system:
- - system - part of original google gsi
- - product - vendor modified part of gsi
- - vendor - device drivers only
ok. we can schematically draw it like this (sizes for current official wp15 fw):
View attachment 5543487
so, basically, "whole virtual os drive" is a couple of a 3 partitions: "system + product + vendor". where "system + product" is a os part independent of device and vendor is a device specified part.
but, as google gsi as 3d party gsi is a stand alone os without drivers and they not use a "product" partition.
so if you want to use 3d party os, you need enough free space in dynamic partition. in case of above, at first, you must remove/resize to 0 "product" partition, then you may upload desired gsi as a "system" partition.
theoretically that's all.
partitions accessing.
- dark green partitions (boot and super) can be accessing via adb through bootloader mode, i.e. via using:
adb reboot bootloader
you'll can see a small white text at a bottom left corner of a phone display "fastboot mode...".
- light green partitions (system product, vendor) can be accessing via adb through fastbootD (seems "D" means "dynamic"), i.e. via using magic manipulations of power and volume buttons at power on, or via adb command:
fastboot reboot fastboot
you'll can see a big blue text "fastboot" at top of a display and some orange menu texts
partition manipulations:
- erase:
fastboot erase <partition_name>
so for system and product it'll be a:
fastboot erase system
fastboot erase product
n.b. erasing have no affect to size of partition.
- resizing
fastboot resize-logical-partition <partition_name_with_slot> <size_in_bytes>
so for resizing product to 0 with slot "a" (look at erase log, it show you current active slot in erased name of partition)
fastboot resize-logical-partition product_a 0
so, as I talk above, basically, wp15 have a too small size of a "system" partition ~42mb. so you need to resize it enough to desired not sparsed gsi. I mean more or equal in bytes. you may try to experiment with numbers and resize it to maximum possible. for sample:
fastboot resize-logical-partition system_a 2850000000
- uploading img to device
fastboot --disable-verity --disable-verification flash <partition_name> <image_file_name.img>
of cource img file must be visible to adb. also it must be sparsed. you may easily detect it via any text/hex viewer:
View attachment 5543517
you may upload not sparsed image, but not sure what it would work, also adb woul send you error message about wrong header. if your image is not sparced, you may sparse it by "img2simg" tool, but do not try to sparse already sparsed image - it would not work after uploading.
seems that's all main information what you need to set 3d party gsi.
of course, you must enable developer mode, allow flashing and unlock your phone at first (and even do not try to lock it back to avoid red state).
so if you do it at first time, you must do this:
unlock boot
- go to bootloader:
adb reboot bootloader
- unlock it
fastboot flashing unlock
push some keys - see instruction at phone display
- disable verification
fastboot --disable-verification flash vbmeta vbmeta.img
"vbmeta.img" is a file from your current fw and it must be visible to adb, seems you may download it directly from your phone, but not sure about correct command.
- clear user data
fastboot -w
- go to fastbootD
fastboot reboot fastboot
- erase system, product and resize them both
fastboot erase system
fastboot erase product
fastboot resize-logical-partition product_a 0
fastboot resize-logical-partition system_a 2850000000
- upload desired image as system
fastboot --disable-verity --disable-verification flash system <desired_image.img>
- clear user data and create it partitions
fastboot -w
- go back to bootloader
fastboot reboot bootloader
- format user data partitions
fastboot erase userdata
- that's all. just reboot
fastboot reboot
at next time, if you want to set another gsi, you just need:
- go to fastbootD
fastboot reboot fastboot
- erase system
fastboot erase system
- upload desired image as system
fastboot --disable-verity --disable-verification flash system <desired_image.img>
- clear user data and create it partitions
fastboot -w
- go back to bootloader
fastboot reboot bootloader
- format user data partitions
fastboot erase userdata
- reboot
fastboot reboot
n.b. if you use 3d party boot (twrp or similar), gsi may not work.
also not all of gsi would work. phhusson's 11.0 v313 works fine enough (I use it, but without root), linage of Andy Yan works too, but I did not remember version. any clear google gsi did not work. perhaps any aosp12 would not work with current kernel (may be wrong).
Click to expand...
Click to collapse
Broo thanks! Worked! Finaly instaled a GSI on this devices

vxsw said:
I tried Andy Yan's build at the end of autumn and it had worked. not sure about version, more likely it was a 17.
also, not sure, but seems builds based on aosp12 will not work with current official (oukitel) boot. so if you'll want to try, builds based on aosp11 would be prefer, but anyway - no warranties.
p.s. I use a phhusson's 11.0 v313 and it works fine enough for me.
Click to expand...
Click to collapse
I tryed Andy Yan versions and works only version ,,lineage-18.1-20220217-UNOFFICIAL-treble_arm64_bvS-vndklite.img ”- only that, others make boot loop, phhusson's 11.0 v313 seems to be great, but i dont like the logo

Asqq said:
phhusson's 11.0 v313 seems to be great, but i dont like the logo
Click to expand...
Click to collapse
yep. dislike it too, but have no choise((

vxsw said:
yep. dislike it too, but have no choise((
Click to expand...
Click to collapse
Test the Andy Yan version, until now works pretty well, and it can separate the notification sound and call sound

I tried lineage, but didn't like it. phhusson's build more prefer for me.
just subjective, no real reasons

Asqq said:
it can separate the notification sound and call sound
Click to expand...
Click to collapse
not sure what you talking about, but seems it's a standard ability and may be configured via default sound settings for any android (at least 7+)

vxsw said:
I tried lineage, but didn't like it. phhusson's build more prefer for me.
just subjective, no real reasons
Click to expand...
Click to collapse
hehe

vxsw said:
not sure what you talking about, but seems it's a standard ability and may be configured via default sound settings for any android (at least 7+)
Click to expand...
Click to collapse
Well that, the volume of notifications are linked with call volume, sometime that is annoying

oh, you mean volume. then yep. good feature, but not so critical for me))
also oukitel in promises of update to android 12, so I'll wait. reinstall all of this software and reconfiguring soooo anoying and I'm sooo lazzy((

vxsw said:
oh, you mean volume. then yep. good feature, but not so critical for me))
also oukitel in promises of update to android 12, so I'll wait. reinstall all of this software and reconfiguring soooo anoying and I'm sooo lazzy((
Click to expand...
Click to collapse
ok )

Related

[GUIDE][FIRMWARE] Moto E (6th Gen) Stock Firmware Installation Guide

Motorola Moto E (6th Gen)​Stock Firmware Installation Guide​
Basic Specs:
Motorola Moto E (6th Gen)
Codename: Surfna
Base SKU: XT2005
Android Version: 9 (Pie)
API: 28
SoC: Qualcomm® Snapdragon™ 435
CPU: Octa-core 1.4 GHz Cortex-A53
GPU: Qualcomm® Adreno™ 505
eMMC: 16 GB
RAM: 2 GB
Arch: armv7l (32-bit)
{
"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"
}
OVERVIEW:
First and foremost, when installing a stock firmware package on your Moto E6 -- or any Motorola smartphone, for that matter -- the simplest and most efficient method is to use the Lenovo-Moto Rescue & Smart Assistant (LMSA) via the firmware rescue option. Whether you are restoring your device to full stock condition, or restoring a device stuck in a boot loop, or that is otherwise unable to boot into the Android OS, the LMSA tool is your best route. The tool will download the most current stock firmware package available for your model and will systematically install the package, all by following a few simple steps. The latest version of the LMSA for Windows can be downloaded here, from Lenovo's official support page: https://support.lenovo.com/us/en/downloads/ds101291, as well as a downloadable and easy-to-follow user guide.​
DISCLAIMER:
Flashing the partitions of your device carries with it the inherent risk of bricking or damaging your phone. By proceeding further, you assume sole responsibility for the integrity and operability of your device. I am not responsible for any good or bad that may occur from the use of this guide. Follow the instructions carefully, and things should go smoothly.​
PREREQUISITES:
You will need a PC or laptop running on Windows 7/8/10/11, and the Motorola supplied (or quality equivalent) micro USB charging/syncing cable. Make sure your PC/laptop has the latest Motorola USB device drivers installed. The latest Motorola Device Manager can be downloaded from the official support page: https://support.motorola.com/us/en/solution/MS88481
This will install the most current Motorola USB device drivers. You'll need to install the Minimal ADB & Fastboot tools on your PC or laptop as well. Here is a direct link to the latest version https://mega.nz/file/z6gyzJya#TZWk0wuVuq5nJSnwsUx0KZClyj7M9BiEvqFdYH_dd6Q
Finally, you will need to download a stock firmware package for your particular model and carrier variant of the Moto E6. A full repo of Moto E6 Surfna official stock firmwares can be found here on the Lolinet mirror site: https://mirrors.lolinet.com/firmware/moto/surfna/official/. Take care to download the firmware for your model and branded carrier, if applicable. It should be noted here that you may install a stock firmware package on your device regardless of whether the bootloader is unlocked. If your bootloader is locked, however, you may only install a firmware build newer than, or the same as, the build currently running on your device. In sum, you cannot downgrade firmware in a bootloader locked state.​
INSTRUCTIONS:
NOTE: The fastboot flashing instructions below have been outlined verbatim from the flashfile.xml of the most current firmware package available for this device. Because the Surfna will not be receiving an official update to Android 10, and because the Surfna's allotted /system partition has been sized for a maximum of ten sparsechunk files (0 thru 9), there is no likelihood of these instructions changing in the future. Moreover, these instructions have been thoroughly tested.
1. Extract the contents of the stock firmware package to the ADB/Fastboot directory on your PC/laptop;
2. Boot your device into AP Fastboot mode. With the phone powered on or off, hold the power and volume down buttons simultaneously for 8 to 10 seconds, or until you see AP Fastboot mode on your device display;
3. Connect your phone to your PC/laptop using your charging/syncing cable. To ascertain a proper connection, open a command window in the path of your ADB/Fastboot directory and execute this command:​
Code:
fastboot devices
If properly connected, the command window will display an alphanumeric string synonymous with your device serial number. If you do not see your device serial number, try changing USB ports, use a different charge/sync cable, or try reinstalling your device drivers;
4. Once a proper connection has been verified, execute the following fastboot commands, preferably in this order (NOTE: the following procedure will erase all userdata on your device. Be sure, if possible, to back up any data or files you want to keep):​
Code:
fastboot oem fb_mode_set
fastboot flash partition gpt.bin
fastboot flash bootloader bootloader.img
fastboot flash dtbo dtbo.img
fastboot flash modem NON-HLOS.bin
fastboot flash fsg fsg.mbn
fastboot erase modemst1
fastboot erase modemst2
fastboot flash dsp adspso.bin
fastboot flash logo logo.bin
fastboot flash boot boot.img
fastboot flash recovery recovery.img
fastboot flash system system.img_sparsechunk.0
fastboot flash system system.img_sparsechunk.1
fastboot flash system system.img_sparsechunk.2
fastboot flash system system.img_sparsechunk.3
fastboot flash system system.img_sparsechunk.4
fastboot flash system system.img_sparsechunk.5
fastboot flash system system.img_sparsechunk.6
fastboot flash system system.img_sparsechunk.7
fastboot flash system system.img_sparsechunk.8
fastboot flash system system.img_sparsechunk.9
fastboot flash vendor vendor.img
fastboot flash oem oem.img
fastboot erase DDR
fastboot erase cache
fastboot erase userdata
fastboot oem fb_mode_clear
fastboot reboot
Upon reboot, your device will be reverted to its stock factory configuration and running official Motorola firmware. It should be noted that this process will not relock your bootloader if it was in an unlocked state at the time you used this guide. Moreover, you do not need a locked bootloader in order to install future OTA updates.​
Much thanks to @sd_shadow for his feedback.
I encourage anyone that is going to flash firmware to their device to get the flash commands from the flashfile.xml
The commands do change from time to time, moto may add another system sparsechunk.
There is a nice online flashfile converter, see link in my thread.
[Guide] Using Fastboot.exe with Motorola devices
Guide: Using Fastboot.exe with Motorola Devices If your device has its own section please post in that section. You can ping me with @sd_shadow MediaTek or Qualcomm Chip? Do I have a MediaTek Device? see post #26 Info: If you have a MediaTek...
forum.xda-developers.com
sd_shadow said:
I encourage anyone that is going to flash firmware to their device to get the flash commands from the flashfile.xml
The commands do change from time to time, moto may add another system sparsechunk.
There is a nice online flashfile converter, see link in my thread.
[Guide] Using Fastboot.exe with Motorola devices
Guide: Using Fastboot.exe with Motorola Devices If your device has its own section please post in that section. You can ping me with @sd_shadow MediaTek or Qualcomm Chip? Do I have a MediaTek Device? see post #26 Info: If you have a MediaTek...
forum.xda-developers.com
Click to expand...
Click to collapse
Always a great tip @sd_shadow Thanks for your input & guidance.
so extract stock firmware to be inside adb min folder n ie:c:\program files (x86)minimal adb and fastboot is that right?
Nagle91 said:
so extract stock firmware to be inside adb min folder n ie:c:\program files (x86)minimal adb and fastboot is that right?
Click to expand...
Click to collapse
That is correct. Then open your command window inside of that directory when ready to start flashing.
its seemed to work but it says bad key when booting up do you have any insight to that
Supr3me_Z_FBLive said:
its seemed to work but it says bad key when booting up do you have any insight to that
Click to expand...
Click to collapse
Yes. The "Bad Key" and "N/A" notifications are not errors. They are simply indicators that you flashed a stock firmware package with your bootloader in an unlocked state. Although annoying, these dialogues do not have any effect on the functionality of the device. In fact, there are custom boot logos you can flash to get rid of the annoyance. Otherwise it has no impact whatsoever on normal operations.
This thread provides what you need to get rid of the "Bad Key" screen and restore the original stock boot logo
Boot Logos!
Flash this using fastboot to remove the black screen on boot. This is the original boot logo. I will update this with more logos very soon. fastboot flash logo logo.bin
forum.xda-developers.com

Development [ROM][UNOFFICIAL][11][OOS CAM][OnePlus 9R][lemonades] Pixel Experience [2021-09-01]

{
"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"
}
PixelExperience for OnePlus9R[lemonades]
What is this?​PixelExperience is an AOSP based ROM, with Google apps included and all Pixel goodies (launcher, wallpapers, icons, fonts, boot animation)
Our mission is to offer the maximum possible stability and security, along with essential and useful features for the proper functioning of the device
Based on Android 11
Whats working?
(fix finger in display)
Wi-Fi
RIL
Mobile data
GPS
Camera
Flashlight
Camcorder
Bluetooth
FM radio
Fingerprint reader
Face unlock
NFC
Lights
Sound/vibration
Known issues
Nothing yet
You tell me
DON'T FLASH GAPPS, THEY'RE ALREADY INCLUDED
Download
MOD EDIT: LINK REMOVED DUE TO GPL VIOLATION
Credits
Pixel Experience (https://github.com/PixelExperience)
And all the other Developers, Testers, Donators and Users.
Installation​1. Download PE Fastboot ROMinstaller ( These zip inciude both payload_dumper and fastboot_installer ) and extract zip in pc
2. Copy the playload.bin file from Rom.zip file to payload_dumper >> payload_input folder
3. On the command window, type the following commands one by one:
fastboot -w
fastboot flash recovery recovery.img
fastboot reboot fastboot
fastboot flash boot boot.img
fastboot flash dtbo dtbo.img
fastboot --disable-verity flash vbmeta vbmeta.img
fastboot --disable-verity flash vbmeta_system vbmeta_system.img
fastboot flash system system.img
fastboot flash system_ext system_ext.img
fastboot flash product product.img
fastboot reboot
ROM OS Version: Android 11
ROM Kernel: Linux 4.x
Based On: AOSP
Version Information
Status: Stable
Current Stable Version: 4.8
Stable Release Date: 2021-07-05
Created 2021-08-26
Last Updated 2021-09-01
Thank you.
Only reason one would stay away from Pixel experience is a lack of Vanilla versions and forced Gapps being shoved down people's throats. Otherwise I've only heard great things about PE everywhere.
Does this break fingerprint reader for anyone else? its mentioned as working, but i cant seem to get it to work
hamppter said:
Does this break fingerprint reader for anyone else? its mentioned as working, but i cant seem to get it to work
Click to expand...
Click to collapse
This problem does exist, and I will fix it in the next version.
Thanks dude, everything else works really smooth and amazing +rep
hamppter said:
Does this break fingerprint reader for anyone else? its mentioned as working, but i cant seem to get it to work
Click to expand...
Click to collapse
The problem has been fixed and a new version has been uploaded
thanatos2057 said:
The problem has been fixed and a new version has been uploaded
Click to expand...
Click to collapse
Thanks dude! I'm going to try it as soon as I get home
Can we use havoc-os recovery to flash this? Also what's different in this compared to official PixelExperience for oneplus 8t? Is there an advantage of using this over the official build?
Is it Plus edition?
Sorry to bother, but does anyone know this error :
It seems that the device doesnt have enough space to resize, so i attempted factory reset + attempted the install steps manually ( currently using PE Rom installer ), and the same issue exists when flashing system.
Thanks.
Seems like the output files from payload dumper are extremely large
hamppter said:
Sorry to bother, but does anyone know this error :
It seems that the device doesnt have enough space to resize, so i attempted factory reset + attempted the install steps manually ( currently using PE Rom installer ), and the same issue exists when flashing system.
Thanks.
Seems like the output files from payload dumper are extremely large
View attachment 5400755
Click to expand...
Click to collapse
You need to flash in fastbootd, not fastboot
thanatos2057 said:
You need to flash in fastbootd, not fastboot
Click to expand...
Click to collapse
Hey sorry to bother you again, but isnt the recovery mode says this is fastbootd
I'm pretty new to this stuff so im sorry!
Same error! Followed steps/commands in same order as Original Post
fastboot -w
fastboot flash recovery recovery.img
fastboot reboot fastboot
fastboot flash boot boot.img
fastboot flash dtbo dtbo.img
fastboot --disable-verity flash vbmeta vbmeta.img
fastboot --disable-verity flash vbmeta_system vbmeta_system.img
fastboot flash system system.img
fastboot flash system_ext system_ext.img
fastboot flash product product.img
fastboot reboot
Click to expand...
Click to collapse
hamppter said:
Hey sorry to bother you again, but isnt the recovery mode says this is fastbootd
I'm pretty new to this stuff so im sorry!
View attachment 5401299
Same error! Followed steps/commands in same order as Original Post
Click to expand...
Click to collapse
I just have same problem with you.First I suggest you ignore it,just do the followed commands.Then enter the recovery mode.Use the factory reset(what's means wipe data).reboot it,and you'll find it can't boot or it will enter fastboot.Don't worry about that.Enter fastboot(or it boot fastboot automatically) and do the followed commands again.You can find the command-line don't report errors.Lastly,enter recovery mode and do the factory reset.The phone will boot normally.
hamppter said:
Hey sorry to bother you again, but isnt the recovery mode says this is fastbootd
I'm pretty new to this stuff so im sorry!
View attachment 5401299
Same error! Followed steps/commands in same order as Original Post
Click to expand...
Click to collapse
Also I suggest you use the ROM install tool in this post .
tokimasa said:
I just have same problem with you.First I suggest you ignore it,just do the followed commands.Then enter the recovery mode.Use the factory reset(what's means wipe data).reboot it,and you'll find it can't boot or it will enter fastboot.Don't worry about that.Enter fastboot(or it boot fastboot automatically) and do the followed commands again.You can find the command-line don't report errors.Lastly,enter recovery mode and do the factory reset.The phone will boot normally.
Click to expand...
Click to collapse
I remember i had this same problem with the older version of this rom.
Somehow it was fixed from some procedure like you mentioned.
Currently it is not working.
I guess i will just continue using havoc for now
thanks for your help! much appreciated!
EDIT: weirdly enough, this works for the older build? I'm so confused lol
Update : I flashed OP8T pixel experience on this device, including OP8T TWRP.
the process for This rom(when i last tried, before installing OP8T PE ) still failed.
a lot of weird **** and weird QualComm errors and i decided to run msmtool.
Held power button + vol up (thinking it would throw me out of the fastboot loop after the OP8T PE rom install)
but lo and behold, this just sent me into system LOL
Im not sure, but is this correct? (the device name being Oneplus 8T)
Yet, the build number seems to align correctly with THIS Rom
PixelExperience_lemonades-11.0-20210901-0343-UNOFFICIAL
Im not even sure what i did, but its working LOL.
@thanatos2057
OP, please check your message from me and feedback. Thanks.

How To Guide Successful conversion of N200 5G from T-Mo to OEM without MSM tool! (Credit to Summersofar)

Hey there. i'm a new XDA Member myself. i've been mostly stalking these forums for the N200 Ever since people started the root phase and twrp projects for codename HOLI. but i'm here to convert @summersofar's guide in order to make it more comfortable for windows users... (Credit to the people who helped make this happen. i take no credit as i am only posting this guide for windows users.)
Now lets get on with the process.
Requirements: Your Bootloader MUST Be unlocked. not just oem Unlocking enabled. NO. that only sets a flag in the bootloader telling the chip that the board can be unlocked. 2nd, you must have sim unlocked your phone in order for the oem unlocking option to appear, Be it t-mobile customer support via 611. or try twitter. there have been cases where users have gotten a free sim unlock from tmobile if you're a veteran customer (Veteran implies you've been with them for a couple of years now and they trust you. this isn't always guaranteed but its worth a shot honestly.) Twitter support will do. (Then unlock the bootloader permanently from oneplus's unlock token website and apply the unlock. they'll get back to you in7 business days.)
Now onto the actual process...
Make sure you first extract your stock image, You can do this by using a well known program called Payload Dumper Go. Note: you no longer need to do any sort of Mumbo jumbo in order to actually extract your stock img. You can download the stock image directly from Oneplus's support website located Here.
Step 1> Enable USB Debugging in the developer options and connect your phone. wait a couple of seconds and authorize the fingerprint on your devices screen. We can move onto step 2.
2>
Code:
/Next reboot into fastboot by typing the command below.\
fastboot reboot fastboot
3> Copy and paste these commands in cmd. (MAKE SURE YOUR COMMAND PROMPT DIRECTORY IS SET IN THE LOCATION WHERE YOUR EXTRACTED PAYLOAD FILES ARE!, or else you'll get an error saying the file cannot be found or executed.
Code:
fastboot delete-logical-partition system_a-cow
fastboot delete-logical-partition odm_a
fastboot delete-logical-partition system_a
fastboot delete-logical-partition system_ext_a
fastboot delete-logical-partition product_a
fastboot delete-logical-partition vendor_a
fastboot create-logical-partition odm_a 0x37ED000
fastboot create-logical-partition system_a 0x6342E000
fastboot create-logical-partition system_ext_a 0x55225000
fastboot create-logical-partition product_a 0x6BD93000
fastboot create-logical-partition vendor_a 0x3ED70000
fastboot flash boot boot.img
fastboot flash dtbo dtbo.img
Then reboot into fastboot once all those commands Above are executed..
Code:
fastboot reboot fastboot
Next we'll actually tell the bootloader to CREATE And delete the partitions. in order to finalize the process.
Code:
fastboot flash --slot=all boot boot.img
fastboot flash --slot=all dtbo dtbo.img
fastboot flash --slot=all abl abl.img
fastboot flash --slot=all bluetooth bluetooth.img
fastboot flash --slot=all devcfg devcfg.img
fastboot flash --slot=all dsp dsp.img
fastboot flash --slot=all featenabler featenabler.img
fastboot flash --slot=all hyp hyp.img
fastboot flash --slot=all imagefv imagefv.img
fastboot flash --slot=all keymaster keymaster.img
fastboot flash --slot=all logo logo.img
fastboot flash --slot=all modem modem.img
fastboot flash --slot=all qupfw qupfw.img
fastboot flash --slot=all tz tz.img
fastboot flash --slot=all uefisecapp uefisecapp.img
fastboot flash --slot=all xbl_config xbl_config.img
fastboot flash --slot=all xbl xbl.img
fastboot flash --slot=all core_nhlos core_nhlos.img
fastboot flash --slot=all oplusstanvbk oplusstanvbk.img
fastboot flash --slot=all rpm rpm.img
fastboot flash --slot=all vendor_boot vendor_boot.img
fastboot flash odm odm.img
fastboot flash system system.img
fastboot flash system_ext system_ext.img
fastboot flash product product.img
fastboot flash vendor vendor.img
fastboot flash --slot=all vbmeta vbmeta.img
fastboot flash --slot=all vbmeta_system vbmeta_system.img
Once thats been done. just go ahead and execute the commands below to boot to the RECOVERY this time.
Code:
fastboot reboot recovery
Once done. Wipe your user cache and settings. you have to press two buttons to execute this. Enjoy a fully (Clean?) stock rom.
The issues and problems post installation can be found in @summersofar's guide Here.
Too long to type out all of them.
Free SIM Unlocking service for T-Mobile variants:
[CLOSED][T-Mobile USA] Free SIM Unlocking Service - [OnePlus/Samsung/Google/LG/Moto]
Hello XDA, I am back at it again with the free T-Mobile network unlocks. Yep, you heard that right... 100% FREE. This service will allow you to go into your Settings and perform a network unlock. I've been doing this for over 3 years now with...
forum.xda-developers.com
Make sure you read the prerequisites to ensure you qualify before making a request.
getting this error
{
"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"
}
l0csta said:
getting this error
View attachment 5419571
Click to expand...
Click to collapse
If you have discord. I can help you setup an environment variable so you can run fastboot commands from anywhere on your system.
But as for this error. Make sure the extracted payload files are in the same directory as fastboot execution files and all the other stuff.
{Mod edit: Quotation fixed and two posts merged - regards Oswald Boelcke}
Winnower Amber said:
But as for this error. Make sure the extracted payload files are in the same directory as fastboot execution files and all the other stuff.
Click to expand...
Click to collapse
Yeah I already did that before I started. I run cmd from this directory and do everything on there.
Add me on discord it's nullpoint#5559
Is your bootloader fully unlocked from the bin file OnePlus support gave you?
Looks like one of them didn't unlock. I tried running fastboot oem unlock_critical but it didn't work, got an error saying the device was already unlocked.
Having same problem, if you guys figure out what's the issue please let me know.
what he is implying is. make sure you reboot to fastbootd. you can tell your in this mode when you actually have an advanced and exit option. this implies your in the actual bootloader
i see... yeah that fixed the issue. I was rebooting into fastbootd but i was selecting the reboot to fastboot option from there. thanks for the help!
l0csta said:
i see... yeah that fixed the issue. I was rebooting into fastbootd but i was selecting the reboot to fastboot option from there. thanks for the help!
Click to expand...
Click to collapse
Yep, I was doing same thing.
So I got it all done and I have bloat free system. YEY!
However, I did notice couple of things and would like to check with rest of you if you have same issues:
- settings -> system -> about phone: 2nd tab just says "verification" and it's missing "Regulatory labels"
- settings -> system -> about phone -> OxygenOS version: says "unknown"
- settings -> buttons & gestures --> alert slider: it just crashes (idk why this option is on when this phone does not have alert slider?)
That's what I noticed so far.
Thanks!
xentonix said:
Yep, I was doing same thing.
So I got it all done and I have bloat free system. YEY!
However, I did notice couple of things and would like to check with rest of you if you have same issues:
- settings -> system -> about phone: 2nd tab just says "verification" and it's missing "Regulatory labels"
- settings -> system -> about phone -> OxygenOS version: says "unknown"
- settings -> buttons & gestures --> alert slider: it just crashes (idk why this option is on when this phone does not have alert slider?)
That's what I noticed so far.
Thanks!
Click to expand...
Click to collapse
yeah i'm having the first two issues as well, never really did anything with buttons & gestures so i don't know if i have the slider issue, i'll take a look when i get home. if you check summersofar's post they did say that the missing info in about phone is an issue they are having as well.
I'm honestly just going to make a zip file for this and upload it here, via Google drive.
Winnower Amber said:
I'm honestly just going to make a zip file for this and upload it here, via Google drive.
Click to expand...
Click to collapse
Got that zip handy?
Getting this error in fastbootd when trying to delete or create partitions:
FAILED (remote: 'Could not open super partition')
fastboot: error: Command failed
Oh for the entire toolkit? I haven't gotten around to it. Been busy with school. Apologies.
can we flash T-Mobile's Stock-ROM on MetroPCS both have same model DE2118? I have unlocked bootloader, but locked SIM and 0day on Metro Network.
kdm6389 said:
can we flash T-Mobile's Stock-ROM on MetroPCS both have same model DE2118? I have unlocked bootloader, but locked SIM and 0day on Metro Network.
Click to expand...
Click to collapse
Yes, I accidentally bricked my bootloader locked MetroPCS model DE2118 (by going into developer options and attempting to load a GSI through dynamic system updates, which fails on a locked bootloader because GSIs aren't signed by oneplus) and I saved it by using the MSMtool for the standard T-mobile edition. Strangely, all the metro stuff is still there including the metroPCS boot animation. Now I'm just waiting on my unlock token so I can bootloader unlock and convert it to the oneplus unlocked firmware, install TWRP, and properly load GSIs.
cognitoinc566 said:
Yes, I accidentally bricked my bootloader locked MetroPCS model DE2118 (by going into developer options and attempting to load a GSI through dynamic system updates, which fails on a locked bootloader because GSIs aren't signed by oneplus) and I saved it by using the MSMtool for the standard T-mobile edition. Strangely, all the metro stuff is still there including the metroPCS boot animation. Now I'm just waiting on my unlock token so I can bootloader unlock and convert it to the oneplus unlocked firmware, install TWRP, and properly load GSIs.
Click to expand...
Click to collapse
Yes, the ROM detects whether a T-Mobile or Metro SIM card is inserted on first boot to determine what carrier apps to load.
Guide worked great on my T-Mobile N200. Phone feels slightly faster on the OEM ROM. Doing the OTA updates hopefully I'll get the boot.img soon so I can make a patch Magisk image for everyone for the current OEM ROM.
Current build is 11.0.4.0.DE17AA
Edit: And here they are.... this is for the OEM ROM 11.0.4.0.DE17AA working great on my end!
OEM Boot Img: https://www.androidfilehost.com/?fid=17825722713688266077
Magisk Patched Img: https://www.androidfilehost.com/?fid=17825722713688266078
darkghost568 said:
Yes, the ROM detects whether a T-Mobile or Metro SIM card is inserted on first boot to determine what carrier apps to load.
Click to expand...
Click to collapse
Very clever, wow. I would never have thought of something like that

Development [ROM][12.1][OFFICIAL] ArrowOS 12.1 for OnePlus 9R [OOS12]

{
"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"
}
ArrowOS for OnePlus 9R (lemonades)​ABOUT​ArrowOS is an AOSP/CAF based project started with the aim of keeping things simple, clean and neat.
Website: https://arrowos.net
Telegram: Channel | TG Portal/Links
Github: https://github.com/ArrowOS
Code Review: review.arrowos.net
E-mail: arrowos.contact
PayPal: Donate to us
Blog: blog.arrowos.net
Checkout more documentation at (maintainership/contributing): Check this out
WHAT WORKS?​Almost everything.
Bugs: You tell me.
DOWNLOADS​Click here to Download
Tip: Select OEM -> Device, choose Arrow version, choose the build type: "GAPPS" or "VANILLA" to download.
INSTALLACTION​- Please note: Be sure that your phone is already OOS12 based !!!
- Download Recovery here
- Download script here
- Download ROM zip file.
- Reboot phone to Fastboot mode
Code: fastboot boot recovery.img
Install in ADB -> copy-partitions-20220613-signed.zip -> Advanced -> reboot to bootloader
fastboot boot recovery.img -> Factery Reset -> Install in ADB -> ROM.zip
- Reboot
INSTRUCTIONS​Read our blog article/post about:
* HOW-TO report a bug
* GAPPS and VANILLA variants
* Checking build integrity
ROM Source: https://github.com/ArrowOS
Kernel Source: https://github.com/ArrowOS-Devices/android_kernel_oneplus_sm8250
The download link seems broken. Also what firmware is ROM based on OOS 11 or 12 ?
With the kebab version should also work
ArrowOS - Downloads
Thanks for your work. Also I want to ask, should I use oos11 or oos12 firmware?
exthomeboy said:
With the kebab version should also work
ArrowOS - Downloads
Click to expand...
Click to collapse
I tried it, but it doesn't work.
slatera18 said:
The download link seems broken. Also what firmware is ROM based on OOS 11 or 12 ?
View attachment 5670887
Click to expand...
Click to collapse
Now it's possible, OOS 11
hiper25 said:
Now it's possible, OOS 11
Click to expand...
Click to collapse
Is also a version only for the 9R. Almost every other rom is flashable on the 8T and 9R, but not here
exthomeboy said:
Is also a version only for the 9R. Almost every other rom is flashable on the 8T and 9R, but not here
Click to expand...
Click to collapse
On my test 9R can't flash 8T ROM
They have to have to separate
hiper25 said:
Now it's possible, OOS 11
Click to expand...
Click to collapse
Yes able to download.
But there is an issue with mic volume when talking on calls. The other person hears feeble voice of me on call.
hiper25 said:
fastboot boot recovery.img
Click to expand...
Click to collapse
Isn't it the code supposed to be fastboot flash recovery <recovery_filename>.img
hiper25 said:
Reboot phone to Fastboot mode
Code: fastboot boot recovery.img
Install in ADB -> copy-partitions-20220613-signed.zip -> Advanced -> reboot to bootloader
fastboot boot recovery.img -> Factery Reset -> Install in ADB -> ROM.zip
- Reboot
Click to expand...
Click to collapse
I'm a newbie here, the last time I have installed a custom ROM on Asus phone over five years ago with lineage os.
Will I be successful if I follow below instructions, as your instructions above are short and suited for pros.
search
Install LineageOS on kebab​keyboard_arrow_left Back to the overview
warning
WARNING: These instructions only work if you follow every section and step precisely.
Do not continue after something fails!
Basic requirements​
Read through the instructions at least once before actually following them, so as to avoid any problems due to any missed steps!
Make sure your computer has adb and fastboot. Setup instructions can be found here.
Enable USB debugging on your device.
Make sure that your model is actually listed in the “Supported models” section here (exact match required!)
warning
WARNING: Before following these instructions please ensure that the device is currently using Android 12 firmware.
If the vendor provided multiple updates for that version, e.g. security updates, make sure you are on the latest!
If your current installation is newer or older than Android 12, please upgrade or downgrade to the required version before proceeding (guides can be found on the internet!).
Unlocking the bootloader​info_outline
NOTE: The steps below only need to be run once per device.
warning
WARNING: Unlocking the bootloader will erase all data on your device! Before proceeding, ensure the data you would like to retain is backed up to your PC and/or your Google account, or equivalent. Please note that OEM backup solutions like Samsung and Motorola backup may not be accessible from LineageOS once installed.
Enable OEM unlock in the Developer options under device Settings, if present.
Connect the device to your PC via USB.
On the computer, open a command prompt (on Windows) or terminal (on Linux or macOS) window, and type:
adb reboot bootloader
You can also boot into fastboot mode via a key combination:
With the device powered off, hold Volume Up + Volume Down + Power.
Once the device is in fastboot mode, verify your PC finds it by typing:
fastboot devices
If you don’t get any output or an error:
on Windows: make sure the device appears in the device manager without a triangle. Try other drivers until the command above works!
on Linux or macOS: If you see no permissions fastboot try running fastboot as root. When the output is empty, check your USB cable and port!
Now type the following command to unlock the bootloader:
fastboot oem unlock
info_outline
NOTE: At this point the device may display on-screen prompts which will require interaction to continue the process of unlocking the bootloader. Please take whatever actions the device asks you to to proceed.
If the device doesn’t automatically reboot, reboot it. It should now be unlocked.
Since the device resets completely, you will need to re-enable USB debugging to continue.
Flashing the dtbo partition​warning
WARNING: This platform requires the dtbo partition to be flashed for recovery to work properly, the process to do so is described below.
Download dtbo file from here. Download the file named dtbo.img from the directory named with the latest date.
Power off the device, and boot it into bootloader mode:
With the device powered off, hold Volume Up + Volume Down + Power.
Flash the downloaded image file to your device by typing (replace <dtbo> with the actual filename!):
fastboot flash dtbo <dtbo>.img
Installing a custom recovery using fastboot​
Download Lineage Recovery. Simply download the latest recovery file, named something like lineage-19.1-20220825-recovery-kebab.img.
Connect your device to your PC via USB.
On the computer, open a command prompt (on Windows) or terminal (on Linux or macOS) window, and type:
adb reboot bootloader
You can also boot into fastboot mode via a key combination:
With the device powered off, hold Volume Up + Volume Down + Power.
Once the device is in fastboot mode, verify your PC finds it by typing:
fastboot devices
If you don’t get any output or an error:
on Windows: make sure the device appears in the device manager without a triangle. Try other drivers until the command above works!
on Linux or macOS: If you see no permissions fastboot try running fastboot as root. When the output is empty, check your USB cable and port!
check
TIP: Some devices have buggy USB support while in bootloader mode, if you see fastboot hanging with no output when using commands such as fastboot getvar ..., fastboot boot ..., fastboot flash ... you may want to try a different USB port (preferably a USB Type-A 2.0 one) or a USB hub.
Flash recovery onto your device (replace <recovery_filename> with the actual filename!):
fastboot flash recovery <recovery_filename>.img
Now reboot into recovery to verify the installation.
Use the menu to navigate to and to select the Recovery option.
Ensuring all firmware partitions are consistent​info_outline
NOTE: The steps below only need to be run once per device.
In some cases, the inactive slot can be unpopulated or contain much older firmware than the active slot, leading to various issues including a potential hard-brick. We can ensure none of that will happen by copying the contents of the active slot to the inactive slot.
To do this, sideload the copy-partitions-20220613-signed.zip package by doing the following:
Download the copy-partitions-20220613-signed.zip file from here. It should have a MD5 sum of 79f2f860830f023b7030c29bfbea7737 or a SHA-256 sum of 92f03b54dc029e9ca2d68858c14b649974838d73fdb006f9a07a503f2eddd2cd.
Sideload the copy-partitions-20220613-signed.zip package:
On the device, select “Apply Update”, then “Apply from ADB” to begin sideload.
On the host machine, sideload the package using: adb sideload copy-partitions-20220613-signed.zip
info_outline
NOTE: The copy-partitions script was created by LineageOS developer erfanoabdi and filipepferraz
Now reboot to recovery by tapping “Advanced”, then “Reboot to recovery”.
Installing LineageOS from recovery​
Download the LineageOS installation package that you would like to install or build the package yourself.
(Optionally): If you want to install an application package add-on such as Google Apps (use the arm64 architecture), please read and follow the instructions on Google Apps page
If you are not in recovery, reboot into recovery:
With the device powered off, hold Volume Down + Power.
Now tap Factory Reset, then Format data / factory reset and continue with the formatting process. This will remove encryption and delete all files stored in the internal storage, as well as format your cache partition (if you have one).
Return to the main menu.
Sideload the LineageOS .zip package:
On the device, select “Apply Update”, then “Apply from ADB” to begin sideload.
On the host machine, sideload the package using: adb sideload filename.zip.
check
TIP: Normally, adb will report Total xfer: 1.00x, but in some cases, even if the process succeeds the output will stop at 47% and report adb: failed to read command: Success. In some cases it will report adb: failed to read command: No error or adb: failed to read command: Undefined error: 0 which is also fine.
(Optionally): If you want to install any add-ons, click Advanced, then Reboot to Recovery, then when your device reboots, click Apply Update, then Apply from ADB, then adb sideload filename.zip those packages in sequence.
info_outline
NOTE: Add-ons aren’t signed with LineageOS’s official key, and therefore when they are sideloaded, Lineage Recovery will present a screen that says Signature verification failed, this is expected, please click Continue.
info_outline
NOTE: If you want the Google Apps add-on on your device, you must follow this step before booting into LineageOS for the first time!
Once you have installed everything successfully, click the back arrow in the top left of the screen, then “Reboot system now”.
hiper25 said:
INSTALLACTION​- Please note: Be sure that your phone is already OOS12 based !!!
- Download Recovery here
- Download script here
- Download ROM zip file.
- Reboot phone to Fastboot mode
Code: fastboot boot recovery.img
Install in ADB -> copy-partitions-20220613-signed.zip -> Advanced -> reboot to bootloader
fastboot boot recovery.img -> Factery Reset -> Install in ADB -> ROM.zip
- Reboot
Click to expand...
Click to collapse
Newbie here.
Need instructions from unlocking the bootloader.
It took almost four hours to figure out and use MSM tool
Please do give me instructions from unlocking the bootloader

Question GSI Rom (Project Treble)

Has anyone out there installed a GSI rom on the DITING? @tze_vitamin
I would like to try gsi rom if srgb color space is working...
I would like to try it also but i didnt really check how to, it look pretty unlogical the way it instal
Próbálkoztam különböző gsi ROM-okkal, indul az eea firmware és mix firmware is, nem tudom kisebb hibák vannak-e, amit az elején találtam, az ujjlenyomat nem megy, de nekem az a fő hiba, hogy sms üzenetek nem jönnek, és ez nekem néhány programnál probléma, pl: távirat belépéskor visszamentem a miuiba, messenger, facebook kétfaktoros hitelesítés. Kipróbáltam az ezen az oldalon leírt modot. fastboot parancs....-
fastboot eszközök
fastboot getvar all
fastboot set_active a
fastboot újraindítás fastboot
fastboot --disable-verity --disable-verification flash vbmeta vbmeta.img
fastboot flash vendor_boot vendor_boot.img
fastboot törlési rendszer
fastboot flash rendszer gsi.img
fastboot -w
fastboot flash boot boot.img
fastboot reboot ugyanúgy indul, a hibák ugyanazok, de ha twrp recovery-t akarsz rá rakni, akkor a bootloop lesz a másik módszer xiaomi 11t pro gsi telepítés fastboot --disable-verity --disable-verification flash vbmeta vbmeta. img fastboot reboot fastboot fastboot erase system fastboot flash system gsi.img fastboot reboot recovery gyári alaphelyzetbe állítás reboot system ha nem törődnek ezek a hibákkal, akkor megpróbálhatod megnézni, hogy továbbra is fennállnak-e ezek a hibák, tudom, hogy nem volt hiba az előző mobilom, xiaomi 11t pro, se android 12, se android 13 gsi, a meglévő hibák pph beállításokkal javítható volt benne
I've tried different gsi ROMs, eea firmware and mix firmware also start, I don't know if there are minor errors, which I found at the beginning, the fingerprint doesn't work, but for me the main error is that sms messages don't come, and this is a problem for me with some programs, e.g.: telegram I went back to miui when logging in, messenger, facebook two-factor authentication. I tried the mod described on this page. fastboot command....-
fastboot devices
fastboot getvar all
fastboot set_active a
fastboot reboot fastboot
fastboot --disable-verity --disable-verification flash vbmeta vbmeta.img
fastboot flash vendor_boot vendor_boot.img
fastboot erase system
fastboot flash system gsi.img
fastboot -w
fastboot flash boot boot.img
fastboot reboot it starts the same, errors are the same, but if you want to put a twrp recovery on it, bootloop will be the other method xiaomi 11t pro gsi installation fastboot --disable-verity --disable-verification flash vbmeta vbmeta.img fastboot reboot fastboot fastboot erase system fastboot flash system gsi.img fastboot reboot recovery factory reset reboot system if you don't care about these errors, you can try to see if these errors are still there, I know that there were no errors on my previous mobile phone, xiaomi 11t pro, neither android 12 nor android 13 gsi, the existing errors are it could be fixed with pph settings in it
sorry for the stupid question, what alternative do we have that works with few bugs? EliteRom only? Thanks for replying so soon guys!
ronniecalipsis said:
sorry for the stupid question, what alternative do we have that works with few bugs? EliteRom only? Thanks for replying so soon guys!
Click to expand...
Click to collapse
or Xiaomi EU rom.
I tried crDroid GSI.
lagg, slow,
No fingerprint, bad sound.
I wish Kernel would come.
edit:
The installation description above is GENERAL! I did it based on that. (Not model dependent) I think.
user2332 said:
I tried crDroid GSI.
lagg, slow,
No fingerprint, bad sound.
I wish Kernel would come.
edit:
The installation description above is GENERAL! I did it based on that. (Not model dependent) I think.
Click to expand...
Click to collapse
General problem,thanks Xiaomi.
https://forum.xda-developers.com/t/xiaomi-12-xiaomi-12-pro-oss-kernel-sources.4470899/
https://github.com/MiCode/Xiaomi_Kernel_OpenSource
Thanks @NOSS8
I check Xiaomi_Kernel_OpenSource every 4-5 days and wait for the diting kernel.
Maybe after the Xiaomi 13 presentation at the end of February... maybe...
user2332 said:
Thanks @NOSS8
I check Xiaomi_Kernel_OpenSource every 4-5 days and wait for the diting kernel.
Maybe after the Xiaomi 13 presentation at the end of February... maybe...
Click to expand...
Click to collapse
Maybe, but since it's incomplete, there will always be bugs or missing features.
Solved.
If you want to use fastbootd mode to flash GSI in this phone, You have to flash a third-party recovery first (such as TWRP).
now if you run
Code:
fastboot reboot fastboot
You will go to TWRP's fastbootd mode. It works well. The xiaomi official fastbootd mode have something wrong. Please use a third-party recovery
Original problem:
=============================
I used k50Ultra China version. I have unlocked . In bootloader mode (the screen shows FASTBOOT) I can flash boot.img I can set active slot. I have all permission. BUT in fastbootd mode(the screen shows FASTBOOTD), I do not have permission to flash any image or set active slot.
(super.img=system.img+vendor.img+product.img)
After a new super partition was used on Android. We can not flash system.img in bootloadr mode because it can only flash the whole super.img. Fortunately, we can still flash system.img in fastbootd mode. BUT it looks like Xiaomi didn't give users enough permissions in fastbootd mode.
Fastbootd is the only way to simply flash system.img. bootloader and TWRP can flash super.img can not flash system.img.
So I flash GSI faild.
{
"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"
}
On screens, fails because the bootloader is locked.
NOSS8 said:
On screens, fails because the bootloader is locked.
Click to expand...
Click to collapse
It is unlocked. In bootloader mode is unlocked, in fastbootd mode is locked.
Can be useful
https://forum.xda-developers.com/t/how-to-install-custom-roms-gsi-11t-pro.4396021/
NOSS8 said:
Can be useful
https://forum.xda-developers.com/t/how-to-install-custom-roms-gsi-11t-pro.4396021/
Click to expand...
Click to collapse
Useless. I found the problem. It is neccessary to flash a third-party recovery such as TWRP.
Dispossible said:
Useless. I found the problem. It is neccessary to flash a third-party recovery such as TWRP.
Click to expand...
Click to collapse
TWRP
https://sourceforge.net/projects/recovery-for-xiaomi-devices/files/diting/
NOSS8 said:
TWRP
https://sourceforge.net/projects/recovery-for-xiaomi-devices/files/diting/
Click to expand...
Click to collapse
Thanks. Use the TWRP's fastbootd mode. It work well
NOSS8 said:
Can be useful
https://forum.xda-developers.com/t/how-to-install-custom-roms-gsi-11t-pro.4396021/
Click to expand...
Click to collapse
does this process work for diting? I'm looking for information and I don't quite understand how GSI roms work. Any help to understand is greatly appreciated.
Dispossible said:
Thanks. Use the TWRP's fastbootd mode. It work well
Click to expand...
Click to collapse
does the rom work? Could you please give a short summary of the installation process. Thanks a lot in advance.
ronniecalipsis said:
does the rom work? Could you please give a short summary of the installation process. Thanks a lot in advance.
Click to expand...
Click to collapse
Hello!
My method. (This works for me so far, but an expert will tell you what is right!)
Starting point: EEA V13.0.13.0
What did I install from GSI? ProjectElixir_3.5
How?
Enable USB debugging on an active system
PC connection
start adb, there are the following commands:
- adb reboot bootloader
- fastboot devices
- fastboot flash recovery_ab twrp.img
- fastboot getvar all
- fastboot set_active a
- fastboot reboot fastboot
- fastboot --disable-verity --disable-verification flash vbmeta vbmeta.img
- fastboot flash vendor_boot vendor_boot.img
- fastboot erase system
- fastboot flash system GSI_rom_name.img
- fastboot -w
- fastboot flash boot boot.img
- fastboot reboot recovery
- TWRP -> Wipe -> Format Data -> Yes -> Reboot System
*twrp.img, boot.img, vendor_boot.img, vbmeta.img, GSI_rom_name.img files to the adb folder.
(boot.img, vendor_boot.img, vbmeta.img -> V13.0.13.0 EEA fastboot rom.zip)
I do not use!
I just tried it!
Waiting for AOSP and Kernel!

Categories

Resources