unlock oem bootloader unlocked - OnePlus Nord N10 5G Questions & Answers

hi It says im unlocked in the unlock app. and I also have the token.bin from oneplus. I can't do anything in adb to unlock becuase i can't seem to unlock the bootloader it's greyed out in the developers options. How do you get the grey out?

i dont follow. you already got the token but cant enable OEM unlock? in order to get the token you need to have had OEM unlock enabled. to enable OEM unlock follow the debloat thread script. it will enable OEM unlock.

droidbot1337 said:
i dont follow. you already got the token but cant enable OEM unlock? in order to get the token you need to have had OEM unlock enabled. to enable OEM unlock follow the debloat thread script. it will enable OEM unlock.
Click to expand...
Click to collapse
I have the token from my last logic board that broke. Since I had to install a new logic board from e bay my IMEI has also changed since that is what it's attached to.

Also I tried contacting the carrier and they said I need the original owners information in order to continue. I stated it's my phone from your company but i just replaced the part. Of course they told me the same thing. That I need the original owners information... Since the IMEI is no longer the same. The IMEI really is just a fingerprint for carriers to track. Doesn't really hold much more significance.

Related

Cant unlock boot loader!

I was trying to unlock the bootloader of my phone and when i type fastboot oem unlock it shows me three dots "..." for hours.
Device : Micromax q324 (it is a spreadtrum 7731 device)
PC OS : Windows 8 64 bit
You can't unlock all bootloader like that. Really that only works on nexus devices and a few others without the oem unlocking it. If I'm not mistaken you need something from the oem for that device.
then how do i unlock bootloader for my device????
shubhamnarsaria said:
then how do i unlock bootloader for my device????
Click to expand...
Click to collapse
Contact the oem and see if there is a bootloader unlock method for the device.
Well i dont think that the indian customer representatives will know the meaning of bootloader
shubhamnarsaria said:
Well i dont think that the indian customer representatives will know the meaning of bootloader
Click to expand...
Click to collapse
You would be wrong. That oem has other devices that it unlocks bootloader for, so they will at least know what it is and will tell you if it can be unlocked or not.
Understand that not all devices get an unlock for the bootloader. They don't want to do it.
I will contact oem tommorrow
Thnx for the assistance

OEM Unlock SM-G9650

So I just got in an s9+ snapdragon model that is supposedly oem unlockable. It's brand new running android 8. All I care about right now is getting the oem unlock to show in developer options. I've tried the date trick and all, but I don't mind waiting a week if it means I can unlock the bootloader. I've set it up with a sim card, samsung account, and google account to hopefully ensure that I can unlock it. Is there anything I can do to bypass the rmm state thing, and would there be any reason that the oem unlock toggle would not show up eventually?
cosmogroid said:
So I just got in an s9+ snapdragon model that is supposedly oem unlockable. It's brand new running android 8. All I care about right now is getting the oem unlock to show in developer options. I've tried the date trick and all, but I don't mind waiting a week if it means I can unlock the bootloader. I've set it up with a sim card, samsung account, and google account to hopefully ensure that I can unlock it. Is there anything I can do to bypass the rmm state thing, and would there be any reason that the oem unlock toggle would not show up eventually?
Click to expand...
Click to collapse
9 out of 10 times waiting the week with no power downs is all it takes. Suposedly you.can flash a combination file. then do the date trick and it can show up right away but I dont know the exacts.
But welcome to the club mate. There are several of us with the device. New roms just came out los 17.1 havoc evo x

Unable to unlock bootloader!!

Hi guys, how y'all doing?
I've been trying to unlock the bootloader of my phone a couple of months now and every single attempt is a failure. I've done all the steps right but, in the Motorola website I receive a message that my phone don't apply for unlocking the bootloader.
Anyone knows anything about this, if it can be bypassed somehow or if has anyway to contact Motorola to get any information about this issue.
Thanks in advance.
1Apokalypsis said:
Hi guys, how y'all doing?
I've been trying to unlock the bootloader of my phone a couple of months now and every single attempt is a failure. I've done all the steps right but, in the Motorola website I receive a message that my phone don't apply for unlocking the bootloader.
Anyone knows anything about this, if it can be bypassed somehow or if has anyway to contact Motorola to get any information about this issue.
Thanks in advance.
Click to expand...
Click to collapse
Well, I can think of a few reasons why you can't unlock your bootloader.
1. The most obvious one: you haven't enabled OEM unlocking under developer settings.
2. You're not using a retail device. Only retail devices can unlock BL AFAIK. Non-retail devices are those sold by carriers (AT&T, Verizon, whatever else).
3. Your bootloader is not unlockable, even if its retail.
The 1st problem is easy to solve and I won't discuss it.
The other two are stored as variables on your bootloader and can be checked with the "fastboot getvar [x]" command, where [x] is the variable name.
The variables of interest here are:
1. "ro.build.version.full" - this tells if device is retail or not. It should return something like "retail.en.US" or "retail.xx.XX", depends on region.
2. "cid" - I have no idea cid stands for, but I think it's related to bootloader type.
3. Be aware that I don't know if the 1st variable has the same name on all motorola devices. In case of doubt, use "fastboot getvar all" to list all variables, then you can check manually.
Nowadays, it's not common for Motorola devices to have locked cids. In Lollipop/Marshmallow days, some devices had that issue where it was retail but impossible to unlock due to cid. The un-unlockable cids should be the same for all devices but you'll have to research, I don't remember which is which anymore.
SUMMARY:
1. check the developer setting "Allow OEM unlocking". It's a switch. If it's off, turn it on and you'll be able to unlock the BL
2. If that doesn't work, check if your phone is a retail model. If not, you're out of luck.
3. If it is retail and you can't unlock it, you are either providing the wrong unlock code to fastboot, or you have an unlockable cid, in which case you're also out of luck.
[edit]
Forgot to mention this, if your device has a mediatek CPU/SoC, forget about it, they're impossible to unlock too.
[edit 2]
I found the cid list: https://forums.lenovo.com/t5/MOTOROLA-Android-Developer/Bootloader-Unlock-Problems/m-p/3222809
freeZbies said:
Well, I can think of a few reasons why you can't unlock your bootloader.
1. The most obvious one: you haven't enabled OEM unlocking under developer settings.
2. You're not using a retail device. Only retail devices can unlock BL AFAIK. Non-retail devices are those sold by carriers (AT&T, Verizon, whatever else).
3. Your bootloader is not unlockable, even if its retail.
The 1st problem is easy to solve and I won't discuss it.
The other two are stored as variables on your bootloader and can be checked with the "fastboot getvar [x]" command, where [x] is the variable name.
The variables of interest here are:
1. "ro.build.version.full" - this tells if device is retail or not. It should return something like "retail.en.US" or "retail.xx.XX", depends on region.
2. "cid" - I have no idea cid stands for, but I think it's related to bootloader type.
3. Be aware that I don't know if the 1st variable has the same name on all motorola devices. In case of doubt, use "fastboot getvar all" to list all variables, then you can check manually.
Nowadays, it's not common for Motorola devices to have locked cids. In Lollipop/Marshmallow days, some devices had that issue where it was retail but impossible to unlock due to cid. The un-unlockable cids should be the same for all devices but you'll have to research, I don't remember which is which anymore.
SUMMARY:
1. check the developer setting "Allow OEM unlocking". It's a switch. If it's off, turn it on and you'll be able to unlock the BL
2. If that doesn't work, check if your phone is a retail model. If not, you're out of luck.
3. If it is retail and you can't unlock it, you are either providing the wrong unlock code to fastboot, or you have an unlockable cid, in which case you're also out of luck.
[edit]
Forgot to mention this, if your device has a mediatek CPU/SoC, forget about it, they're impossible to unlock too.
[edit 2]
I found the cid list: https://forums.lenovo.com/t5/MOTOROLA-Android-Developer/Bootloader-Unlock-Problems/m-p/3222809
Click to expand...
Click to collapse
Thanks for all the info.
1. I liked that you mentioned the "OEM Unlocking" switch, but I'm not a total dummy, it's turned on lol.
2. I don't believe that my model is one of those sold by carriers, at least afaik.
3. I will try to get the variables and look it up, but I'm feeling that I'm out of luck already.
It's the Qualcomm version of the One Fusion+
1Apokalypsis said:
Thanks for all the info.
1. I liked that you mentioned the "OEM Unlocking" switch, but I'm not a total dummy, it's turned on lol.
2. I don't believe that my model is one of those sold by carriers, at least afaik.
3. I will try to get the variables and look it up, but I'm feeling that I'm out of luck already.
It's the Qualcomm version of the One Fusion+
Click to expand...
Click to collapse
If it's the qualcomm version and it doesn't unlock it must be bc it must be either bc it is not retail or cid. If you're using a retail phone and cid is unlockable then keep trying/check unlock code/try asking for it again, whatever, it should work.

General Why must device be SIM Unlocked for bootloader unlocking?

This is regarding unlocking bootloader on T-Mobile varient. There are two observations.
1) After device is SIM unlocked modification of the setting that was greyed out, 'OEM Unlocking' will be possible..​2) Without device being SIM unlocked, modification of same setting is possible by performing the ADB command ("adb shell pm uninstall --user 0 com.qualcomm.qti.uim")​​Surely the manufacturer wouldn't make SIM unlocking as easy as performing a simple ADB command. But if not, wouldn't that imply that it is, in fact, NOT necessary for device to be SIM Unlocked to Unlock bootloader? It Don't make any sense.
Has anyone tried to unlock bootloader on SIM Locked device and did it work? what happened?
I took my SIM Locked T-Mobile N200 that I never paid a single month for and that was blacklisted and account sent off to collections.
I did ADB command to enable OEM Unlocking. Went to FASTBOOT and acquired the unlocking key. I sent key to ONEplus via their T-Mobile Unlocking webpage. And Oneplus responded a week later with my unlock_code.bin file.. DEVICE UNLOCKED
So I guess this would imply that ability to modify the greyed out OEM unlocking is the only way to unlock bootloader and NOT that 'device must SIM Unlocked' as instructed in the unlocking process.. Device being SIM unlocked is simply just ONE method of allowing modification of that setting? Right??
If you use the adb command and send your IMEI through the device unlock portal on OnePlus.com, you can be bootloader unlocked without being sim unlocked.
It just seems too easy for a T-Mobile locked Contract phone to be unlocked, don't they check the Device against some sort of database or something before providing you the unlock_code.bin??
alienG0D said:
It just seems too easy for a T-Mobile locked Contract phone to be unlocked, don't they check the Device against some sort of database or something before providing you the unlock_code.bin??
Click to expand...
Click to collapse
Nope, mine is still on bill credits.
alienG0D said:
It just seems too easy for a T-Mobile locked Contract phone to be unlocked, don't they check the Device against some sort of database or something before providing you the unlock_code.bin??
Click to expand...
Click to collapse
The unlock_code.bin file lets you bootloader unlock the phone. This does NOT SIM/network unlock your phone... Though with T-Mobile you're supposed to be SIM unlocked before you can bootloader unlock, we just figured out how to bypass that.
They just linked the SIM unlock to the same thing we've been using, is my guess. I'd be interested to know if I'm right, but at this point, it's moot.
SIM UNLOCKED (bought in September/2021)
It got sim-unlocked after 180day, by simply pressing "unlock permanently" without using Metro or T-Mobile sim ever. after 180day however the phone is seems out of time (outdated).

Question Is it possible to unlock Metro by Tmobile Variant Nord N20?

Usually it will automatically unlock after 180 days, but I am wondering if it can be done faster?
what exactly are you trying to unlock? the SIM unlock i think has to be requested through the carrier or possibly a business that specifically does those but i cant recommend any or the use of those services. bootloader unlock on the tmobile variant(which should be the exact same device, the tmobile variant has the metro apps installed but disabled" was already available in the first security patch...... but i ran the Nord debloat script from another oneplus thread before ever attempting the bootloader unlock the first time so i cant verify whether thats even needed to get the oem unlock option available or not. maybe someone else can comment on that
my device is MetroPCS, hasn't been 180 days and anyone should be able to unlock the bootloader on these carrier devices. and as stated above, sim unlock and bootloader unlock are two different things. you will not be able to force a sim unlock, and the bootloader unlock will not expedite the process either.
pay off your device or search the forums for someone who might just be able to help you, if you fall within their guidelines.
dmtec said:
my device is MetroPCS, hasn't been 180 days and anyone should be able to unlock the bootloader on these carrier devices. and as stated above, sim unlock and bootloader unlock are two different things. you will not be able to force a sim unlock, and the bootloader unlock will not expedite the process either.
pay off your device or search the forums for someone who might just be able to help you, if you fall within their guidelines.
Click to expand...
Click to collapse
I just received token. Can I update the system before unlock bootloader?
update: bootloader unlocked after system update.
AmazingZ said:
I just received token. Can I update the system before unlock bootloader?
update: bootloader unlocked after system update.
Click to expand...
Click to collapse
yes and take a full backup while u r pulling ur boot image to root
What's the procedure to sim unlock I am currently in India and can't use local sim any help will be appreciated
only way i know of right now is to use the carrier app or possibly pay a 3rd party that does sim unlocks and i honestly dont know any i could recommend. If anyone 3lse has found a way to do this it would b nice to know

Categories

Resources