How to change slot on Nokia devices

How to change slot on Nokia devices

Vicente Nuñez

Many current phones come with a system called Google Seamless Updates. This one was released in Android 8.0 and basically it consists of the device having two system slots (Slot A and Slot B) and they are exchanged between them during the updates. However, we can use that system at our convenience using a fastboot command.

Requirements:

Once everything is installed, we will put our Nokia in fastboot mode:

Press Power + Vol (-) until the screen appears saying "Download mode" in the upper left corner of the phone (on 2019 Nokia devices, the description of our phone appears along with a black background)
Fastboot mode on a Nokia 7 Plus

Then we connect our phone to our PC and open the newly installed Minimal ADB and Fastboot. We will get a CMD window, in which we will write the following:

fastboot devices

This command helps us to verify if our phone recognized it perfectly.

If the connection was successful, it will return our serial number (a set of letters and numbers). If it was not successful and you see a message "waiting for any device" check the ADB driver and try again:

If the connection was successful, it will return our serial number

Before doing the slot change, we must know in which slot the current system is running. For that, we write the following:

fastboot getvar current-slot

It will return the current slot in which the system is running:

The bootloader indicated that we are in slot B.

Now that we know what slot we are in, it's time to make the change:

fastboot --set-active=a(or b, depending on where the bootloader tells you)

After that we restart with:

fastboot reboot

An error message will appear in the phone recovery:

This error appears because you cannot keep your data on a different system.

Select "Factory data reset"

Then your phone will normally start on the system loaded in the other slot.

I hope this guide has helped you xD

Check out Nokia OTA Repository on Telegram!

Report Page