Download the latest Android 10 AOSP GSI img and flash it to system partition via TWRP. After booting do a factory reset.Hello could you explain how you boot Android 10 on your Nokia 8 it can be used as a daily drive
Download the latest Android 10 AOSP GSI img and flash it to system partition via TWRP. After booting do a factory reset.Hello could you explain how you boot Android 10 on your Nokia 8 it can be used as a daily drive
Thanks will give it a tryDownload the latest Android 10 AOSP GSI img and flash it to system partition via TWRP.
Yes, I did before A10 was officially released but I can't use it as a daily driver as I need Bluetooth audio & I'm really not sure there are any developers with the skills (and device!) to fix the issue
Hi THMSP:
May I ask if you would port the Android 10 from Nokia 8 Sirroco to Nokia 8, just as what you did on Android 9?
Also, will you release the rom for this build as well ?
I'm actually ready to pay somebody who's able to fix the bluetooth audio.
I am ready to pay someone if they get Android 10 usable for this phone.
(if you expected the Resident Evil references to stop, you just got gnomed)Code:#include <std_disclaimer.h> /* * Your warranty is now void. * * I am not responsible for bricked devices, dead SD cards, * thermonuclear war, or you getting fired because the alarm app failed. Please * do some research about modifying your android system before flashing this! * YOU are choosing to make these modifications, and if you point the finger at * me for messing up your device, I will laugh at you. Hard. A lot. */
What is this?
T-Virus (for treble-virus) is a tool that takes a stock Nokia 8 firmware and "infects" it with various parts from the Nokia 8 Sirocco firmware, generating a firmware bundle that is compilant with Project Treble and that can be flashed to a Nokia 8 using NOST.
Firmware Sources
The base of T-Virus is the stock Nokia 8 firmware image (5150 / April Security patch at the time of writing). When being run, the build script takes those files and replaces the partition table with the one from Nokia 8 Sirocco. This required for creating a vendor partition that the stock Nokia 8 does not have. The vendor image is taken from the Sirocco firmware as well. During the build, the vendor image is mounted as rw, and various files are copied over from the stock Nokia 8 system image, or get patched to properly support the minor hardware differences between the two phones. Those actions are defined through very basic scripts inside of the vendor folder in the repository.
The boot image is a modified version of my umbrella kernel, which has support for early mounting vendor. It also includes a TWRP build with full support for Project Treble.
SELinux Hell
Because Android does some very weird stuff with SELinux contexts, you cannot launch a service file when it has an unknown context. We have to fix that by force-setting the SELinux context manually, but due to how SELinux works, this is only possible on a Linux system without SELinux. This means, that you cannot build this on a distribution with SELinux (Fedora in my case). I fixed the problem by building the images in a Ubuntu VM.
How to build?
First you have to download the latest firmware image from https://tmsp.io/fs/xda/nb1/firmware, and the exdupe tool from https://www.quicklz.com/exdupe
Extract the firmware into a folder and then clone the repository, like this:
The build script has two options you have to set: a version and the path to the extracted firmware. This means you have to run it like this:Code:$ mkdir firmware $ ./exdupe -R ~/Downloads/NB1-5150-0-00WW-B03.qlz firmware/ $ git clone https://github.com/resident-nokia/t-virus $ cd t-virus
Leave it running and when it asks you, enter your sudo password. This is required to mount the Android ext4 partitions and edit the files that are only accessable by the (Android) root user, and retain their permissions.Code:$ ./build.sh --version v0.1 --firmware ../firmware
When the script has finished the flashable firmware image will be inside of the out folder. You can optionally package this as a .qlz file again using exdupe.
What works?
- It boots
- Data decryption in recovery
- Flashing GSIs / OpenGApps in recovery
- WiFi
- Mobile Data
- Bluetooth
- Sound
- Vibration
- Calling
- Hardware buttons
- Fingerprint
- Camera
- GPS
- NFC
- SDCard
- Multi SIM
- 4k Video
What doesn't work, or isn't tested
- Haptic feedback for Hardware buttons
- Bluetooth headphones don't get registered properly
- Nokia OZO audio support is missing
- Fingerprint sensor is reported as being on the back of the phone
- There might be issues with USB transfer under Windows
- VoLTE (untested)
How to install?
WARNING: This might not be useable as a daily driver. Continue only if you are able to troubleshoot things if neccessary (bootloops, bricking the phone, causing the alarm app to declare nuclear war)
You can download the latest release from the releases page on the repository. It is a .qlz firmware, so you will have to flash it through NOST. You will need a completely unlocked bootloader. When flashing, make sure to select the "Erase Userdata" option, not doing this will most certainly bootloop the phone.
After the installation completed, your phone will reboot into phh's AOSP GSI. If you want to use a different GSI (you most likely will), follow these steps:
To update to a newer version without having to erase userdata, download the zipped vendor image from the release page, and flash the image inside in TWRP.
- Download your favorite GSI
- Unpack every form of compression, so you end up with a .img file
- Boot into recovery
- Copy the .img to the internal storage of your phone, or to your SDCard
- Select "Install" -> "Install .img", select the image file you copied and flash it to your system partition
- Then install OpenGApps or any other modifications you like.
- Wipe /data to allow the new system image to boot properly and then reboot
If you want to go back to stock, simply download the 5150-revert firmware and flash it with NOST, with the "Erase Userdata" option enabled. It will revert all changes T-Virus made to your phone. Firmwares from https://tmsp.io/fs/xda/nb1 will not work.
Links?
- Repository: https://github.com/resident-nokia/t-virus
- Download: https://github.com/resident-nokia/t-virus/releases
- Reverting to stock: https://github.com/resident-nokia/t-virus/releases/tag/5150-revert
What if I have a bug?
I want to say thank you!
- Upload a proper bugreport. This means logcat and dmesg. If you don't know how to get them, google it. Also, describe the issue and provide steps to replicate it. Everything else will be ignored.
- I don't daily drive this phone anymore. I am doing this just because it is an interesting technical challenge. I don't have as much motivation to fix bugs than someone who daily drives it.
I usually don't do this, but since this involved a lot of work on my side, I would be grateful if you would want to say thank you by buying me a coffee (or two): https://paypal.me/thmsp
(if you expected the Resident Evil references to stop, you just got gnomed)Code:#include <std_disclaimer.h> /* * Your warranty is now void. * * I am not responsible for bricked devices, dead SD cards, * thermonuclear war, or you getting fired because the alarm app failed. Please * do some research about modifying your android system before flashing this! * YOU are choosing to make these modifications, and if you point the finger at * me for messing up your device, I will laugh at you. Hard. A lot. */
What is this?
T-Virus (for treble-virus) is a tool that takes a stock Nokia 8 firmware and "infects" it with various parts from the Nokia 8 Sirocco firmware, generating a firmware bundle that is compilant with Project Treble and that can be flashed to a Nokia 8 using NOST.
Firmware Sources
The base of T-Virus is the stock Nokia 8 firmware image (5150 / April Security patch at the time of writing). When being run, the build script takes those files and replaces the partition table with the one from Nokia 8 Sirocco. This required for creating a vendor partition that the stock Nokia 8 does not have. The vendor image is taken from the Sirocco firmware as well. During the build, the vendor image is mounted as rw, and various files are copied over from the stock Nokia 8 system image, or get patched to properly support the minor hardware differences between the two phones. Those actions are defined through very basic scripts inside of the vendor folder in the repository.
The boot image is a modified version of my umbrella kernel, which has support for early mounting vendor. It also includes a TWRP build with full support for Project Treble.
SELinux Hell
Because Android does some very weird stuff with SELinux contexts, you cannot launch a service file when it has an unknown context. We have to fix that by force-setting the SELinux context manually, but due to how SELinux works, this is only possible on a Linux system without SELinux. This means, that you cannot build this on a distribution with SELinux (Fedora in my case). I fixed the problem by building the images in a Ubuntu VM.
How to build?
First you have to download the latest firmware image from https://tmsp.io/fs/xda/nb1/firmware, and the exdupe tool from https://www.quicklz.com/exdupe
Extract the firmware into a folder and then clone the repository, like this:
The build script has two options you have to set: a version and the path to the extracted firmware. This means you have to run it like this:Code:$ mkdir firmware $ ./exdupe -R ~/Downloads/NB1-5150-0-00WW-B03.qlz firmware/ $ git clone https://github.com/resident-nokia/t-virus $ cd t-virus
Leave it running and when it asks you, enter your sudo password. This is required to mount the Android ext4 partitions and edit the files that are only accessable by the (Android) root user, and retain their permissions.Code:$ ./build.sh --version v0.1 --firmware ../firmware
When the script has finished the flashable firmware image will be inside of the out folder. You can optionally package this as a .qlz file again using exdupe.
What works?
- It boots
- Data decryption in recovery
- Flashing GSIs / OpenGApps in recovery
- WiFi
- Mobile Data
- Bluetooth
- Sound
- Vibration
- Calling
- Hardware buttons
- Fingerprint
- Camera
- GPS
- NFC
- SDCard
- Multi SIM
- 4k Video
What doesn't work, or isn't tested
- Haptic feedback for Hardware buttons
- Bluetooth headphones don't get registered properly
- Nokia OZO audio support is missing
- Fingerprint sensor is reported as being on the back of the phone
- There might be issues with USB transfer under Windows
- VoLTE (untested)
How to install?
WARNING: This might not be useable as a daily driver. Continue only if you are able to troubleshoot things if neccessary (bootloops, bricking the phone, causing the alarm app to declare nuclear war)
You can download the latest release from the releases page on the repository. It is a .qlz firmware, so you will have to flash it through NOST. You will need a completely unlocked bootloader. When flashing, make sure to select the "Erase Userdata" option, not doing this will most certainly bootloop the phone.
After the installation completed, your phone will reboot into phh's AOSP GSI. If you want to use a different GSI (you most likely will), follow these steps:
To update to a newer version without having to erase userdata, download the zipped vendor image from the release page, and flash the image inside in TWRP.
- Download your favorite GSI
- Unpack every form of compression, so you end up with a .img file
- Boot into recovery
- Copy the .img to the internal storage of your phone, or to your SDCard
- Select "Install" -> "Install .img", select the image file you copied and flash it to your system partition
- Then install OpenGApps or any other modifications you like.
- Wipe /data to allow the new system image to boot properly and then reboot
If you want to go back to stock, simply download the 5150-revert firmware and flash it with NOST, with the "Erase Userdata" option enabled. It will revert all changes T-Virus made to your phone. Firmwares from https://tmsp.io/fs/xda/nb1 will not work.
Links?
- Repository: https://github.com/resident-nokia/t-virus
- Download: https://github.com/resident-nokia/t-virus/releases
- Reverting to stock: https://github.com/resident-nokia/t-virus/releases/tag/5150-revert
What if I have a bug?
I want to say thank you!
- Upload a proper bugreport. This means logcat and dmesg. If you don't know how to get them, google it. Also, describe the issue and provide steps to replicate it. Everything else will be ignored.
- I don't daily drive this phone anymore. I am doing this just because it is an interesting technical challenge. I don't have as much motivation to fix bugs than someone who daily drives it.
I usually don't do this, but since this involved a lot of work on my side, I would be grateful if you would want to say thank you by buying me a coffee (or two): https://paypal.me/thmsp
Thank u so much. it worked. i have installed Android 10 GSI on my Nokia but it have a bluetooth connect problem. Dont connect audio with bluetooth. How to fix it?![]()
nice. Will test los17 tomorrow. im fine with onscreen nav buttonsHey guys!
Thank you so much fot this amazing NOKIA 8 treble project, guys!
I tried these ROMs on my NOKIA 8..
Havoc OS 2.9
Lineage OS 16.x, 17.x..
I can confirm, that Lineage OS 16.x and HAVOC OS 2.9 working like a charm with OpenGApps (except fingerprint reader, haptic feedback )
I didnt test BT audio..
Lineage OS 17.x working perfectly too, but i m not able to work HW buttons - has anyone an idea ?
I tried to check all "buttons settings", changing system profiles..and no change..
BTW: For successful flash OpenGApps, you may have to resize your system partition in TWRP..because of space requirements.. (note for beginners)
Thanks a lot!![]()
#include <std_disclaimer.h>
/*
* Your warranty is now void.
*
* I am not responsible for bricked devices, dead SD cards,
* thermonuclear war, or you getting fired because the alarm app failed. Please
* do some research about modifying your android system before flashing this!
* YOU are choosing to make these modifications, and if you point the finger at
* me for messing up your device, I will laugh at you. Hard. A lot.
*/
$ mkdir firmware
$ ./exdupe -R ~/Downloads/NB1-5150-0-00WW-B03.qlz firmware/
$ git clone https://github.com/resident-nokia/t-virus
$ cd t-virus
$ ./build.sh --version v0.1 --firmware ../firmware
Hi THMSP:
May I ask if you would port the Android 10 from Nokia 8 Sirroco to Nokia 8, just as what you did on Android 9?
Also, will you release the rom for this build as well ?
The ability to install GSIs (Generic System Images). Basically everything from here: https://forum.xda-developers.com/project-treble/trebleenabled-device-developmentOk. After the flashing we have a phone "infected" by the Project Treble. But what it gives to end-user? What is profit of this?
Yes I solved partically the compass error. But seems it is partically because it sloooowly rotates clockwise. Trying to find another solution. So it was preambula. Now what I did: I got sensor_def_qcomdev.conf file from Android 8.1 for Nokia 8 and copied it to /system/vendor/etc/sensors (root access required) and set rights -rw-r-r just like it was on original. After that compass seemed to be fixed. Bu as I said befor - it is only first look. Than it ran away. But you may be mor lucky with it! Try and you`ll see if it helped.
Yes buttons are flickering twice and then they go out. I dont pay attention to it.