Appearance
One Plus Nord CE
Flashing new Android version
Download OTA.zip from https://www.oneplus.com/fi/support/softwareupgrade/details?code=PM1605596915581
Use payload dumper to extract it
Make sure to execute one command at a time, don't copy-paste all at once.
bash
fastboot flash boot boot.img
fastboot flash dtbo dtbo.img
fastboot flash modem modem.img
fastboot flash recovery recovery.img
fastboot --disable-verity flash vbmeta vbmeta.img
fastboot --disable-verity flash vbmeta_system vbmeta_system.img
fastboot flash boot boot.img
fastboot flash dtbo dtbo.img
fastboot flash modem modem.img
fastboot flash recovery recovery.img
fastboot --disable-verity flash vbmeta vbmeta.img
fastboot --disable-verity flash vbmeta_system vbmeta_system.img
1
2
3
4
5
6
2
3
4
5
6
One-half of the commands have been flashed in the Fastboot mode, the other half will now be flashed in the FastbootD mode. So use the below command to boot your device to FastbootD Mode
bash
fastboot reboot fastboot
fastboot reboot fastboot
1
Your device will now boot to FastbootD, you may now execute the rest of the commands:
bash
fastboot flash abl abl.img
fastboot flash aop aop.img
fastboot flash bluetooth bluetooth.img
fastboot flash devcfg devcfg.img
fastboot flash dsp dsp.img
fastboot flash featenabler featenabler.img
fastboot flash hyp hyp.img
fastboot flash imagefv imagefv.img
fastboot flash keymaster keymaster.img
fastboot flash oplusstanvbk oplusstanvbk.img
fastboot flash odm odm.img
fastboot flash qupfw qupfw.img
fastboot flash tz tz.img
fastboot flash uefisecapp uefisecapp.img
fastboot flash xbl xbl.img
fastboot flash xbl_config xbl_config.img
fastboot flash system system.img
fastboot flash vendor vendor.img
fastboot flash product product.img
fastboot flash abl abl.img
fastboot flash aop aop.img
fastboot flash bluetooth bluetooth.img
fastboot flash devcfg devcfg.img
fastboot flash dsp dsp.img
fastboot flash featenabler featenabler.img
fastboot flash hyp hyp.img
fastboot flash imagefv imagefv.img
fastboot flash keymaster keymaster.img
fastboot flash oplusstanvbk oplusstanvbk.img
fastboot flash odm odm.img
fastboot flash qupfw qupfw.img
fastboot flash tz tz.img
fastboot flash uefisecapp uefisecapp.img
fastboot flash xbl xbl.img
fastboot flash xbl_config xbl_config.img
fastboot flash system system.img
fastboot flash vendor vendor.img
fastboot flash product product.img
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Once that is done, you can now reboot the device back to Fastboot mode from the FastbootD mode.
bash
fastboot reboot bootloader
fastboot reboot bootloader
1
Finally reboot the device to the Android.
bash
fastboot reboot
fastboot reboot
1