[ROM][OFFICIAL][I01WD][9] LineageOS 16.0 - ASUS ZenFone 6 (2019) ROMs, Kernels, Recoveries, &

{
"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"
}
LineageOS is a free, community built, aftermarket firmware distribution of Android 9 (Pie), which is designed to increase performance and reliability over stock Android for your device.
LineageOS is based on the Android Open Source Project with extra contributions from many people within the Android community. It can be used without any need to have any Google application installed. Linked below is a package that has come from another Android project that restore the Google parts. LineageOS does still include various hardware-specific code, which is also slowly being open-sourced anyway.
All the source code for LineageOS is available in the LineageOS Github repo. And if you would like to contribute to LineageOS, please visit out Gerrit Code Review. You can also view the Changelog for a full list of changes & features.
Instructions :
Download the latest build and gapps/addons
Boot to recovery
Flash the latest build
Boot to recovery again
Flash gapps/addons
Reboot
Downloads :
Builds : https://download.lineageos.org/I01WD
Root addon : https://download.lineageos.org/extras
Asus Camera addon : https://sourceforge.net/projects/linageos-i01wd/files/asuscamera-16.0.zip/download
Google Apps : https://wiki.lineageos.org/gapps.html
Reporting Bugs
DO NOT Report bugs if you're running a custom kernel or you installed Xposed
Grab a logcat right after the problem has occurred. (Please include at least a few pages of the log, not just the last few lines, unless you know what you're doing.)
If it is a random reboot, grab /sys/fs/pstore/console-ramoops and /sys/fs/pstore/dmesg-ramoops-0. (Do not bother getting a logcat unless you can get it just before the reboot. A logcat after a reboot is useless)
If the problem disappears after running "setenforce 0" from a root shell, grab /data/misc/audit/audit.log
Remember to provide as much info as possible. The more info you provide, the more likely that the bug will be solved. Please also do not report known issues. Any bug not reported in the bug report format below may be ignored.
Code:
What is your--
LineageOS version:
LineageOS Download url:
Gapps version:
Did you--
wipe:
restore with titanium backup:
reboot after having the issue:
Are you using--
a task killer:
a non-stock kernel:
other modifications:
Provide any additional information (observations/frequency of problem/last version it worked on/etc) as needed:
XDA:DevDB Information
LineageOS, ROM for the ASUS ZenFone 6 (2019)
Contributors
luca020400
Source Code: https://github.com/LineageOS
ROM OS Version: 9.x Pie
Version Information
Status: Nightly
Created 2019-07-11
Last Updated 2019-08-19

/**/

Finally...
Awesome... ?

luca020400 said:
INFO:
These builds are still using stock kernel.
In the next days I'll be moving toward my own kernel.
CHANGELOG:
V2 fixes ok/hey google detection ( if you have gapps )
Click to expand...
Click to collapse
thanks for your work, but how do you install if there is no TWRP? thank you
Inviato dal mio ASUS_I01WD utilizzando Tapatalk

montagna73 said:
thanks for your work, but how do you install if there is no TWRP? thank you
Inviato dal mio ASUS_I01WD utilizzando Tapatalk
Click to expand...
Click to collapse
By following the guide? Do I have to add "Unzip the zip" maybe?

luca020400 said:
By following the guide? Do I have to add "Unzip the zip" maybe?
Click to expand...
Click to collapse
Bro take it easy lol:laugh:
---------- Post added at 03:03 PM ---------- Previous post was at 03:01 PM ----------
Is there will be zip file for install system in the future

Guys if you haven't flashed roms before kindly do a crash course in it and stop asking noobish questions of how to flash and if you don't know how to flash without twrp then don't flash simple

montagna73 said:
thanks for your work, but how do you install if there is no TWRP? thank you
Inviato dal mio ASUS_I01WD utilizzando Tapatalk
Click to expand...
Click to collapse
He posted the exact commands you need to enter to flash the rom. "system.img" is essentially what the ROM is mostly. Its just that people here are used to flash the zip using twrp. But I must say this question was as noobish as it can get. He posted all the steps required and this question was just smh.

Lets forget about the beginners question now that it has been redirected to the OP.
Did anyone tried it? Im anxiously waiting for z6 to come out on US.
One question, does the rom works for all versions or just A and B? Or just A, or just B? I wonder how much do they change based on the version. Or if we have to modify the Meta-INF to make it work.

How's the battery life in this ROM?

Am I right to assume that the bootloader must be unlocked?

Just ignore this comment.
*EDIT: remove commit links, not that proper for now.

abprie said:
Am I right to assume that the bootloader must be unlocked?
Click to expand...
Click to collapse
yes

aadeshiscool said:
How's the battery life in this ROM?
Click to expand...
Click to collapse
I would say OK
Nothing crazy good or bad.

Uploaded a new build
It must be flashed with a recovery ( you can find TWRP in my download link, and later on use lineage recovery )
Be sure you have the same firmware on both slots since we're an A/B device
To do so this a simple bash script that must be executed before flashing ( if you're a windows user, go figure yourself )
Code:
#!/bin/bash
images=(
abl
aop
asusfw
bluetooth
cmnlib64
cmnlib
devcfg
dsp
hyp
keymaster
modem
qupfw
tz
uefisecapp
vendor
xbl
xbl_config
xrom
)
for image in "${images[@]}"; do
fastboot flash ${image}_a $image.img
fastboot flash ${image}_b $image.img
done
The build uses my own kernel, but still uses the prebuilt audio/wlan modules

Thanks for supporting this device.
---------- Post added at 02:32 PM ---------- Previous post was at 02:23 PM ----------
luca020400 said:
Uploaded a new build
It must be flashed with a recovery ( you can find TWRP in my download link, and later on use lineage recovery )
Be sure you have the same firmware on both slots since we're an A/B device
To do so this a simple bash script that must be executed before flashing ( if you're a windows user, go figure yourself )
Code:
#!/bin/bash
images=(
abl
aop
asusfw
bluetooth
cmnlib64
cmnlib
devcfg
dsp
hyp
keymaster
modem
qupfw
tz
uefisecapp
vendor
xbl
xbl_config
xrom
)
for image in "${images[@]}"; do
fastboot flash ${image}_a $image.img
fastboot flash ${image}_b $image.img
done
The build uses my own kernel, but still uses the prebuilt audio/wlan modules
Click to expand...
Click to collapse
I don't want to disturb Luca, anybody else would like to help out on windows?

tarkzim said:
Just ignore this comment.
Click to expand...
Click to collapse
Edit: removed my comment, not on topic.

abprie said:
In case you are referring to my question: is this a forum to help fellow xda members or a secluded place for nerds to show how great they are and what they know? I appreciate the work the devs do and I do not have the time to cook ROMs myself, so my only intent was to make sure I know what is required before trying anything myself. Finally, if you don't feel you have time to answer, just follow your comment, ignore the comment and let others help (as I am thankful for it has happened already).
Click to expand...
Click to collapse
Sorry for misleading, i was posting a solution for the devs and i noticed that might be not that perfect so i edit my post to not disturbing the dev.

tarkzim said:
Sorry for misleading, i was posting a solution for the devs and i noticed that might be not that perfect so i edit my post to not disturbing the dev.
Click to expand...
Click to collapse
Ah, sorry... I totally got you wrong... Hope you accept my apologies!

hi @luca020400 , i did a working twrp with decryption included, to make the decryption work is needed to flash the installer. I friend tested it with stock rom, can you please check if it works for the lineage too?
https://forum.xda-developers.com/ze...covery-unofficial-twrp-recovery-asus-t3937844

Related

[ROM][OFFICIAL][capricorn][7.1] LineageOS 14.1

{
"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"
}
LineageOS is a free, community built, aftermarket firmware distribution of Android 7.1 (Nougat), which is designed to increase performance and reliability over stock Android for your device.
LineageOS is based on the Android Open Source Project with extra contributions from many people within the Android community. It can be used without any need to have any Google application installed. Linked below is a package that has come from another Android project that restore the Google parts. LineageOS does still include various hardware-specific code, which is also slowly being open-sourced anyway.
All the source code for LineageOS is available in the LineageOS Github repo. And if you would like to contribute to LineageOS, please visit out Gerrit Code Review. You can also view the Changelog for a full list of changes & features.
What's working :
Boots
Wifi
Bluetooth
Camera ( Videos And Photos )
Video Playback
Audio ( Record and Playback )
Sensors
GPS
Instructions: (dumbproof installation guide)
Download the latest build and gapps
Reboot to recovery
Flash the latest build and gapps
Reboot
Downloads :
Builds : https://download.lineageos.org/capricorn
Root addon : https://download.lineageos.org/extras
Google Apps : http://opengapps.org/
Reporting Bugs
DO NOT Report bugs if you're running a custom kernel or you installed Xposed
Grab a logcat right after the problem has occurred. (Please include at least a few pages of the log, not just the last few lines, unless you know what you're doing.)
If it is a random reboot, grab /sys/fs/pstore/console-ramoops and /sys/fs/pstore/dmesg-ramoops-0. (Do not bother getting a logcat unless you can get it just before the reboot. A logcat after a reboot is useless)
If the problem disappears after running "setenforce 0" from a root shell, grab /data/misc/audit/audit.log
Remember to provide as much info as possible. The more info you provide, the more likely that the bug will be solved. Please also do not report known issues. Any bug not reported in the bug report format below may be ignored.
Code:
What is your--
LineageOS version:
LineageOS Download url:
Gapps version:
Did you--
wipe:
restore with titanium backup:
reboot after having the issue:
Are you using--
a task killer:
a non-stock kernel:
other modifications:
Provide any additional information (observations/frequency of problem/last version it worked on/etc) as needed:
XDA:DevDB Information
[ROM][OFFICIAL][capricorn][7.1] LineageOS 14.1, ROM for the Xiaomi Mi 5s
Contributors
LuK1337, luca020400, bgcngm, h2o64
Source Code: https://github.com/LineageOS
ROM OS Version: 7.x Nougat
Based On: LineageOS
Version Information
Status: Testing
Created 2017-05-23
Last Updated 2018-01-20
"I think this is the beginning of a beautiful friendship"!
Thank you very much @LuK1337
Oh BTW I fixed the FC that happens when setting up fingerprints for the first time ~ https://review.lineageos.org/#/c/174242/
---------- Post added at 03:21 PM ---------- Previous post was at 03:19 PM ----------
LuK1337 said:
Oh BTW I fixed the FC that happens when setting up fingerprints for the first time ~
Click to expand...
Click to collapse
so when could we get offical support
fen9uo said:
---------- Post added at 03:21 PM ---------- Previous post was at 03:19 PM ----------
so when could we get offical support
Click to expand...
Click to collapse
Once I feel it's ready for it.
LuK1337 said:
Once I feel it's ready for it.
Click to expand...
Click to collapse
hm.... sound interesting:silly:
I'm sorry, if the question has been answered already, but I can't understand what's the difference between this rom and xiaobai's one. Thanks!
Thanks man
Great?
Sent from my MI 5s using Tapatalk
serkas001 said:
I'm sorry, if the question has been answered already, but I can't understand what's the difference between this rom and xiaobai's one. Thanks!
Click to expand...
Click to collapse
The actual difference is that I actually work on it and try to fix leftover issues.
serkas001 said:
I'm sorry, if the question has been answered already, but I can't understand what's the difference between this rom and xiaobai's one. Thanks!
Click to expand...
Click to collapse
i think only you need to know :this one is better :angel:
@LuK1337
Cool
Did anynone had Fingerprint Problem like with OMS Rom?
thanks bro!
Thank you we appreciate all of your hard work!!!
Instruction to update firmware:
On PC with adb
1) Go to Xiaomis Fastboot Update Page. http://en.miui.com/a-234.html
2) Download latest Fastboot ROM. Like latest China dev.
3) Extract the content
4) Run Terminal cd to the folder that has the firmware files, like /images for example. (cd pathToExtractedStuff/images)
5) Boot your phone to Bootloader Mode. Vol Down and Power. Until Fastboot shows up
6) run each of these commands (thx to Luk) in terminal while the folder with the firmwares is the current working folder
Code:
fastboot flash dsp adspso.bin
fastboot flash bluetooth BTFM.bin
fastboot flash cmnlib64 cmnlib64.mbn
fastboot flash cmnlib64bak cmnlib64.mbn
fastboot flash cmnlib cmnlib.mbn
fastboot flash cmnlibbak cmnlib.mbn
fastboot flash devcfg devcfg.mbn
fastboot flash aboot emmc_appsboot.mbn
fastboot flash abootbak emmc_appsboot.mbn
fastboot flash hyp hyp.mbn
fastboot flash hypbak hyp.mbn
fastboot flash keymaster keymaster.mbn
fastboot flash keymasterbak keymaster.mbn
fastboot flash logo logo.img
fastboot flash modem NON-HLOS.bin
fastboot flash pmic pmic.elf
fastboot flash pmicbak pmic.elf
fastboot flash rpm rpm.mbn
fastboot flash rpmbak rpm.mbn
fastboot flash splash splash.img
fastboot flash tz tz.mbn
fastboot flash tzbak tz.mbn
fastboot flash xbl xbl.elf
fastboot reboot
Done.
Thats how you manually update the firmware. If you act lazy and try to run the scripts that come with the rom, you will most likely flash the rom and even lose your data on internal storage. So don't do that.
LuK1337 said:
The actual difference is that I actually work on it and try to fix leftover issues.
Click to expand...
Click to collapse
THanks for your work, I will like to know what firmware version you recommend with LOS?
I would like to start using this ROM, but wondering if it is stable enough for daily use... ie. How is battery life? Any major issues?
Feedback from people using this ROM is much appreciated.
At the moment I'm using 14.1-20170328 built by xiaobai...
Nisu
Enviado desde mi MI 5s mediante Tapatalk
rhyme4u12 said:
THanks for your work, I will like to know what firmware version you recommend with LOS?
Click to expand...
Click to collapse
I don't really know. I just downloaded the latest china dev build.
LuK1337 said:
I don't really know. I just downloaded the latest china dev build.
Click to expand...
Click to collapse
Hey Luk, did you get your mi5s? if yes, what are you running there?

[ROM][UNOFFICIAL][enchilada][8.1] LineageOS 15.1

{
"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"
}
LineageOS is a free, community built, aftermarket firmware distribution of Android 8.1 (Oreo), which is designed to increase performance and reliability over stock Android for your device.
LineageOS is based on the Android Open Source Project with extra contributions from many people within the Android community. It can be used without any need to have any Google application installed. Linked below is a package that has come from another Android project that restore the Google parts. LineageOS does still include various hardware-specific code, which is also slowly being open-sourced anyway.
All the source code for LineageOS is available in the LineageOS Github repo. And if you would like to contribute to LineageOS, please visit out Gerrit Code Review. You can also view the Changelog for a full list of changes & features.
Instructions :
Download the latest build and gapps
Boot to recovery
Flash the latest build
Boot to recovery again
Flash gapps
Reboot
Downloads :
Builds :
https://www.androidfilehost.com/?w=files&flid=278817
https://sourceforge.net/projects/luk-lineageos/files/enchilada/lineage-15.1
Root addon : https://download.lineageos.org/extras
Google Apps : https://wiki.lineageos.org/gapps.html
Reporting Bugs
DO NOT Report bugs if you're running a custom kernel or you installed Xposed
Grab a logcat right after the problem has occurred. (Please include at least a few pages of the log, not just the last few lines, unless you know what you're doing.)
If it is a random reboot, grab /sys/fs/pstore/console-ramoops and /sys/fs/pstore/dmesg-ramoops-0. (Do not bother getting a logcat unless you can get it just before the reboot. A logcat after a reboot is useless)
If the problem disappears after running "setenforce 0" from a root shell, grab /data/misc/audit/audit.log
Remember to provide as much info as possible. The more info you provide, the more likely that the bug will be solved. Please also do not report known issues. Any bug not reported in the bug report format below may be ignored.
Code:
What is your--
LineageOS version:
LineageOS Download url:
Gapps version:
Did you--
wipe:
restore with titanium backup:
reboot after having the issue:
Are you using--
a task killer:
a non-stock kernel:
other modifications:
Provide any additional information (observations/frequency of problem/last version it worked on/etc) as needed:
XDA:DevDB Information
[ROM][UNOFFICIAL][enchilada][8.1] LineageOS 15.1, ROM for the OnePlus 6
Contributors
LuK1337
Source Code: https://github.com/LineageOS
ROM OS Version: 8.x Oreo
ROM Kernel: Linux 4.x
Version Information
Status: Testing
Created 2018-07-11
Last Updated 2018-08-25
Maybe a stupide question, but unzip and flash system?
Any known issues right now? Also is signature spoofing available?
disclwd65 said:
Maybe a stupide question, but unzip and flash system?
Click to expand...
Click to collapse
>Maybe a stupide question, but unzip and flash system?
No, you're supposed to flash it in TWRP.
mattish.91 said:
Any known issues right now? Also is signature spoofing available?
Click to expand...
Click to collapse
>Any known issues right now?
Read OP.
>Also is signature spoofing available?
No.
@LuK1337 if my current active slot is A before I flash this ROM, which slot will be active after flashing?
lollyjay said:
@LuK1337 if my current active slot is A before I flash this ROM, which slot will be active after flashing?
Click to expand...
Click to collapse
B.
LuK1337 said:
B.
Click to expand...
Click to collapse
Thanks for your quick response and thanks for the ROM. :good:
---------- Post added at 12:50 AM ---------- Previous post was at 12:45 AM ----------
So:
Instructions :
Download the latest build and gapps
Boot to recovery
Flash the latest build
Boot to recovery again
Flash gapps
Reboot
No need to wipe system and data? Just being cautious.
What about Magisk?
lollyjay said:
Thanks for your quick response and thanks for the ROM. :good:
---------- Post added at 12:50 AM ---------- Previous post was at 12:45 AM ----------
So:
Instructions :
Download the latest build and gapps
Boot to recovery
Flash the latest build
Boot to recovery again
Flash gapps
Reboot
No need to wipe system and data? Just being cautious.
Click to expand...
Click to collapse
>No need to wipe system and data?
Well, while you don't have to wipe system you will have to wipe data if you're coming from stock or any other ROM.
LuK1337 said:
>No need to wipe system and data?
Well, while you don't have to wipe system you will have to wipe data if you're coming from stock or any other ROM.
Click to expand...
Click to collapse
OK for first install wipe data. Got it.
Can you root via magisk and have safety net pass?
BossNexusS said:
Can you root via magisk and have safety net pass?
Click to expand...
Click to collapse
Yes
thank you for suport oneplus 6
How much does on AnTuTu give?
Does VoLTE work
Thanks for sharing...:good::good::good:
Wr3ckd90 said:
Does VoLTE work
Click to expand...
Click to collapse
Yes
Interesting, any change in camera quality?
Also in terms of smoothness any difference vs stock and treble roms?
Finally lineage is here.. Will be flashing sooner once they implemented gesture based navigation.
slasherzx said:
Finally lineage is here.. Will be flashing sooner once they implemented gesture based navigation.
Click to expand...
Click to collapse
It's already here. Literally on the front page. Using it now and it almost a 1:1 of stock gestures
---------- Post added at 05:13 AM ---------- Previous post was at 05:12 AM ----------
https://www.xda-developers.com/navigation-gestures-oneplus-6-oneplus-5t-gestures/
what root method works , i have not luck with the addonsu x64 and magisk v16.0 .

[ROM][OFFICIAL][fajita][10] LineageOS 17.1

{
"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"
}
LineageOS is a free, community built, aftermarket firmware distribution of Android 10, which is designed to increase performance and reliability over stock Android for your device.
LineageOS is based on the Android Open Source Project with extra contributions from many people within the Android community. It can be used without any need to have any Google application installed. Linked below is a package that has come from another Android project that restore the Google parts. LineageOS does still include various hardware-specific code, which is also slowly being open-sourced anyway.
All the source code for LineageOS is available in the LineageOS Github repo. And if you would like to contribute to LineageOS, please visit out Gerrit Code Review. You can also view the Changelog for a full list of changes & features.
Instructions :
Download the latest build and gapps
Boot to recovery
Flash the latest build
Boot to recovery again
Flash gapps
Reboot
Downloads :
Builds : https://download.lineageos.org/fajita
Reporting Bugs
DO NOT Report bugs if you're running a custom kernel or you installed Xposed
Grab a logcat right after the problem has occurred. (Please include at least a few pages of the log, not just the last few lines, unless you know what you're doing.)
If it is a random reboot, grab /proc/last_kmsg. (Do not bother getting a logcat unless you can get it just before the reboot. A logcat after a reboot is useless)
If the problem disappears after running "setenforce 0" from a root shell, grab /data/misc/audit/audit.log
Remember to provide as much info as possible. The more info you provide, the more likely that the bug will be solved. Please also do not report known issues. Any bug not reported in the bug report format below may be ignored.
Code:
What is your--
LineageOS version:
LineageOS Download url:
Gapps version:
Did you--
wipe:
restore with titanium backup:
reboot after having the issue:
Are you using--
a task killer:
a non-stock kernel:
other modifications:
Provide any additional information (observations/frequency of problem/last version it worked on/etc) as needed:
XDA:DevDB Information
[ROM][OFFICIAL][fajita][10] LineageOS 17.1, ROM for the OnePlus 6T
Contributors
LuK1337
Source Code: https://github.com/LineageOS
ROM OS Version: Windows 8 Mobile
Version Information
Status: Testing
Created 2019-09-12
Last Updated 2020-04-01
Lineage OS 17 is Android Q?
And what does it mean windows 8 mobile?
peanutpajamas said:
I'm very confused as to the difference between this and the other thread for lineage OS
Click to expand...
Click to collapse
This is Android 10 not pie
Sent from my OnePlus6T using XDA Labs
---------- Post added at 12:18 AM ---------- Previous post was at 12:16 AM ----------
Does this require a specific twrp version since it's Android 10?
Sent from my OnePlus6T using XDA Labs
majortaylor5 said:
This is Android 10 not pie
Sent from my OnePlus6T using XDA Labs
---------- Post added at 12:18 AM ---------- Previous post was at 12:16 AM ----------
Does this require a specific twrp version since it's Android 10?
Click to expand...
Click to collapse
Use 3.3.1-8
For some reason I can't download the gapps I'm posting a picture of what it says
DaveIsHome said:
For some reason I can't download the gapps I'm posting a picture of what it says
Click to expand...
Click to collapse
They currently don't have any that's why. I'm looking for an alternate.
Sent from my OnePlus6T using XDA Labs
Okay thanks I'll wait can't wait to try this
Found these https://www.cyanogenmods.org/downloads/gapps-for-android-10-download/
majortaylor5 said:
They currently don't have any that's why. I'm looking for an alternate.
Click to expand...
Click to collapse
DaveIsHome said:
Okay thanks I'll wait can't wait to try this
Click to expand...
Click to collapse
boots and all main fuctions work havent found a reliable gaaps yet so cant totaly test finger print ok phone ok message ok wifi ok data ok, bluetooth ok
david72262 said:
boots and all main fuctions work havent found a reliable gaaps yet so cant totaly test finger print ok phone ok message ok wifi ok data ok, bluetooth ok
Click to expand...
Click to collapse
Can you share some screenshots please?
So this is the first Android Q ROM for oneplus 6T
found a gaaps that work every thing is a ok so far no setup wizzard so im restoring my backup dont feel like completely setting up phone from scratch right now been along day. will post screen shots after backup. made a few calls listened to music over bluetooth browsed web over data and wifi no issues to report. didnt install any apps other then gaaps
peanutpajamas said:
So this is the first Android Q ROM for oneplus 6T
Click to expand...
Click to collapse
unofficialy, yup!
Gapps
david72262 said:
found a gaaps that work every thing is a ok so far no setup wizzard so im restoring my backup dont feel like completely setting up phone from scratch right now been along day. will post screen shots after backup. made a few calls listened to music over bluetooth browsed web over data and wifi no issues to report. didnt install any apps other then gaaps
Click to expand...
Click to collapse
Link to working gapps?
Great job getting this out so quickly, anyone tried it? worth installing?
OpenGApps - https://sourceforge.net/projects/opengapps/files/arm64/test/
david72262 said:
found a gaaps that work every thing is a ok so far no setup wizzard so im restoring my backup dont feel like completely setting up phone from scratch right now been along day. will post screen shots after backup. made a few calls listened to music over bluetooth browsed web over data and wifi no issues to report. didnt install any apps other then gaaps
Click to expand...
Click to collapse
Did you flash it over OOS 9.0.16 or Q Beta 3?
Mannan Qamar said:
Did you flash it over OOS 9.0.16 or Q Beta 3?
Click to expand...
Click to collapse
9.0.16
Mannan Qamar said:
Did you flash it over OOS 9.0.16 or Q Beta 3?
Click to expand...
Click to collapse
Flashed over candy9 was simple. Just a simple clean install over candy
david72262 said:
Flashed over candy9 was simple. Just a simple clean install over candy
Click to expand...
Click to collapse
Which gapps? Opengapps caused me a bootloop.

[ROM][OFFICIAL][instantnoodlep][11] LineageOS 18.1

{
"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"
}
LineageOS is a free, community built, aftermarket firmware distribution of Android 11, which is designed to increase performance and reliability over stock Android for your device.
LineageOS is based on the Android Open Source Project with extra contributions from many people within the Android community. It can be used without any need to have any Google application installed. Linked below is a package that has come from another Android project that restore the Google parts. LineageOS does still include various hardware-specific code, which is also slowly being open-sourced anyway.
All the source code for LineageOS is available in the LineageOS Github repo. And if you would like to contribute to LineageOS, please visit out Gerrit Code Review. You can also view the Changelog for a full list of changes & features.
Instructions :
https://wiki.lineageos.org/devices/instantnoodlep
Downloads :
https://download.lineageos.org/instantnoodlep
Reporting Bugs
DO NOT Report bugs if you're running a custom kernel or you installed Xposed
Grab a logcat right after the problem has occurred. (Please include at least a few pages of the log, not just the last few lines, unless you know what you're doing.)
If it is a random reboot, grab /proc/last_kmsg. (Do not bother getting a logcat unless you can get it just before the reboot. A logcat after a reboot is useless)
If the problem disappears after running "setenforce 0" from a root shell, grab /data/misc/audit/audit.log
Remember to provide as much info as possible. The more info you provide, the more likely that the bug will be solved. Please also do not report known issues. Any bug not reported in the bug report format below may be ignored.
Code:
What is your--
LineageOS version:
LineageOS Download url:
Gapps version:
Did you--
wipe:
restore with titanium backup:
reboot after having the issue:
Are you using--
a task killer:
a non-stock kernel:
other modifications:
Provide any additional information (observations/frequency of problem/last version it worked on/etc) as needed:
Anyone up and running yet?
Canti Firestarter said:
Anyone up and running yet?
Click to expand...
Click to collapse
Just flashed. Roms fast as hell out the gate. I wasn't prompted to restore my apps on a fresh install but not a huge deal to me.
Wickidmasshole said:
Just flashed. Roms fast as hell out the gate. I wasn't prompted to restore my apps on a fresh install but not a huge deal to me.
Click to expand...
Click to collapse
Any trouble with Wfd not working?
Canti Firestarter said:
Any trouble with Wfd not working?
Click to expand...
Click to collapse
I feel stupid for not knowing what WFD is lol
LuK1337 said:
LineageOS is a free, community built, aftermarket firmware distribution of Android 11, which is designed to increase performance and reliability over stock Android for your device.
LineageOS is based on the Android Open Source Project with extra contributions from many people within the Android community. It can be used without any need to have any Google application installed. Linked below is a package that has come from another Android project that restore the Google parts. LineageOS does still include various hardware-specific code, which is also slowly being open-sourced anyway.
All the source code for LineageOS is available in the LineageOS Github repo. And if you would like to contribute to LineageOS, please visit out Gerrit Code Review. You can also view the Changelog for a full list of changes & features.
What's not working :
WFD
Instructions :
Download the latest build
$ adb reboot bootloader
$ fastboot -w (this will wipe your data)
$ fastboot flash recovery recovery.img
$ fastboot reboot fastboot
$ fastboot erase scratch
$ fastboot flash boot boot.img
$ fastboot flash dtbo dtbo.img
$ fastboot flash system system.img
$ fastboot flash system_ext system_ext.img
$ fastboot flash product product.img
$ fastboot flash vbmeta vbmeta.img
$ fastboot flash vbmeta_system vbmeta_system.img
$ fastboot reboot
Downloads :
Builds :
https://www.androidfilehost.com/?w=files&flid=318026
http://downloads.codefi.re/jdcteam/luk/lineage-18_0/instantnoodlep
https://sourceforge.net/projects/luk-lineageos/files/instantnoodlep/lineage-18.0
Reporting Bugs
DO NOT Report bugs if you're running a custom kernel or you installed Xposed
Grab a logcat right after the problem has occurred. (Please include at least a few pages of the log, not just the last few lines, unless you know what you're doing.)
If it is a random reboot, grab /proc/last_kmsg. (Do not bother getting a logcat unless you can get it just before the reboot. A logcat after a reboot is useless)
If the problem disappears after running "setenforce 0" from a root shell, grab /data/misc/audit/audit.log
Remember to provide as much info as possible. The more info you provide, the more likely that the bug will be solved. Please also do not report known issues. Any bug not reported in the bug report format below may be ignored.
Code:
What is your--
LineageOS version:
LineageOS Download url:
Gapps version:
Did you--
wipe:
restore with titanium backup:
reboot after having the issue:
Are you using--
a task killer:
a non-stock kernel:
other modifications:
Provide any additional information (observations/frequency of problem/last version it worked on/etc) as needed:
XDA:DevDB Information
[ROM][UNOFFICIAL][instantnoodlep][11] LineageOS 18.0, ROM for the OnePlus 8 Pro
Contributors
LuK1337
Source Code: https://github.com/luk1337
ROM OS Version: Windows 8 Mobile
Version Information
Status: Testing
Created 2020-11-20
Last Updated 2020-11-20
Click to expand...
Click to collapse
is there an easier way to flash this? having to flash like 20 files just to test a ROM can put a lot of any users off. being able to flash as just one single wrong would be so welcoming and amazing. making it a nice easy experience for flashing will create such a stronger and more populated user base.
Burt Squirtz said:
is there an easier way to flash this? having to flash like 20 files just to test a ROM can put a lot of any users off. being able to flash as just one single wrong would be so welcoming and amazing. making it a nice easy experience for flashing will create such a stronger and more populated user base.
Click to expand...
Click to collapse
well that's kind of tough to do when there isn't a working TWRP for A11 yet......
Just open up a command shell in the unzipped folder and copy and paste line for line from OP. Took like 5 mins at best
Burt Squirtz said:
is there an easier way to flash this? having to flash like 20 files just to test a ROM can put a lot of any users off. being able to flash as just one single wrong would be so welcoming and amazing. making it a nice easy experience for flashing will create such a stronger and more populated user base.
Click to expand...
Click to collapse
Yes? https://toolaio.tk/download/
Wickidmasshole said:
Just flashed. Roms fast as hell out the gate. I wasn't prompted to restore my apps on a fresh install but not a huge deal to me.
Click to expand...
Click to collapse
Does it support changing resolutions and refresh rates?
Yashmishra said:
Does it support changing resolutions and refresh rates?
Click to expand...
Click to collapse
Not seeing either of those options yet
Wickidmasshole said:
I feel stupid for not knowing what WFD is lol
Click to expand...
Click to collapse
Ever figure out what WFD is? Google says... WiFi direct - which is a feature I could care less about.
I am on oos11 do i ned to go back to oos11 to flash this?
MariusKv said:
I am on oos11 do i ned to go back to oos11 to flash this?
Click to expand...
Click to collapse
You are on oos11 and you want to go back to oos 11??
cultofluna said:
You are on oos11 and you want to go back to oos 11??
Click to expand...
Click to collapse
opps i oos10
do i need to go back to oos10 hehe
MariusKv said:
opps i oos10
do i need to go back to oos10 hehe
Click to expand...
Click to collapse
No
cultofluna said:
No
Click to expand...
Click to collapse
Ok tnx
Does this recovey work to sideload magisk?
tryed to sideload magisk got qualcom crashdump heh
MariusKv said:
Ok tnx
Does this recovey work to sideload magisk?
tryed to sideload magisk got qualcom crashdump heh
Click to expand...
Click to collapse
What recovery are you talking about? This is LOS, it's a custom ROM lol
Pappilo said:
What recovery are you talking about? This is LOS, it's a custom ROM lol
Click to expand...
Click to collapse
I used los recovery. Sideloaded magisk booted inn to crashdump
Nice
MariusKv said:
I used los recovery. Sideloaded magisk booted inn to crashdump
Click to expand...
Click to collapse
I'm not on LOS atm but you can use payload dumper and flash Magisk that way. There are guides in the forums

[ROM][OFFICIAL][kebab][12] LineageOS 19

{
"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"
}
LineageOS is a free, community built, aftermarket firmware distribution of Android 12, which is designed to increase performance and reliability over stock Android for your device.
LineageOS is based on the Android Open Source Project with extra contributions from many people within the Android community. It can be used without any need to have any Google application installed. Linked below is a package that has come from another Android project that restore the Google parts. LineageOS does still include various hardware-specific code, which is also slowly being open-sourced anyway.
All the source code for LineageOS is available in the LineageOS Github repo. And if you would like to contribute to LineageOS, please visit out Gerrit Code Review. You can also view the Changelog for a full list of changes & features.
Instructions :
https://wiki.lineageos.org/devices/kebab
Downloads :
https://download.lineageos.org/kebab
Reporting Bugs
DO NOT Report bugs if you're running a custom kernel or you installed Xposed
Grab a logcat right after the problem has occurred. (Please include at least a few pages of the log, not just the last few lines, unless you know what you're doing.)
If it is a random reboot, grab /sys/fs/pstore/console-ramoops and /sys/fs/pstore/dmesg-ramoops-0. (Do not bother getting a logcat unless you can get it just before the reboot. A logcat after a reboot is useless)
If the problem disappears after running "setenforce 0" from a root shell, grab /data/misc/audit/audit.log
Remember to provide as much info as possible. The more info you provide, the more likely that the bug will be solved. Please also do not report known issues. Any bug not reported in the bug report format below may be ignored.
Code:
What is your--
LineageOS version:
LineageOS Download url:
Gapps version:
Did you--
wipe:
restore with titanium backup:
reboot after having the issue:
Are you using--
a task killer:
a non-stock kernel:
other modifications:
Provide any additional information (observations/frequency of problem/last version it worked on/etc) as needed:
Thank you for making this. Lineageos's been a blessing ever since the oxygenos became what it is now.
I want to migrate from another rom and wanted to ask if lineageos 19 uses oos12 or oos11 firmware.
Artifter said:
Thank you for making this. Lineageos's been a blessing ever since the oxygenos became what it is now.
I want to migrate from another rom and wanted to ask if lineageos 19 uses oos12 or oos11 firmware.
Click to expand...
Click to collapse
I believe you can find the answer for that in the installation instructions.
Thank you very much for your effort!
I would like to pose a question, although it's not specifically related to LOS 19, is there a way to bypass SafetyNet without rooting the phone? I've always found very irritating to have this kind of problems with some apps, when the turth is one can expect a better longlife service with LOS than with the official OS. Yes, I know it doesn't have to do with LOS but it would be the cherry on top of the cake.
Hello, can i use twrp instead of LOS recovery or is mandatory? Just wondering, thank you.
Thank you for the update !
Sry am now on Android 13 Evolution X
Unfortunately the update does not work on my device. Entering the new recovery build just ends up in a blank screen and booting the ROM enters the crash dump mode. Updating the device firmware to the latest state did not help either.
Reverted back to the other slot without any issue, so no harm was done.
@Draylin Did you follow these steps https://wiki.lineageos.org/devices/kebab/fw_update before installation of LinageOS 12.1?
Do i have DDR4 or DDR5?
Code:
D:\adb>adb shell getprop ro.boot.ddr_type
1
D:\adb>adb shell cat /proc/devinfo/ddr_type
cat: /proc/devinfo/ddr_type: No such file or directory
D:\adb>
edit:
found: 0 for LPDDR4X RAM and 1 for LPDDR5 RAM
right?
exthomeboy said:
Sry am now on Android 13 Evolution X
Click to expand...
Click to collapse
don't care didn't ask
Draylin said:
Unfortunately the update does not work on my device. Entering the new recovery build just ends up in a blank screen and booting the ROM enters the crash dump mode. Updating the device firmware to the latest state did not help either.
Reverted back to the other slot without any issue, so no harm was done.
Click to expand...
Click to collapse
You can also try to flash dtbo, https://mirrorbits.lineageos.org/full/kebab/20220825/dtbo.img. B-but if new recovery boots then you'll want to flash FW to both slots instead of just one.
I added flashing dtbo to wiki, not like it's going to hurt anyway.
If you follow all the step-by-step instructions (https://wiki.lineageos.org/devices/kebab/upgrade), the upgrade process works perfectly.
Many thanks to LuK1337 and the whole Lineage team for their work.
I am doing a complete reset and can't make it boot to lineageos19 at all.
Steps:
1 - Flash dbto
2 - Flash recovery.18.1
3 - Sideload lineageos 19
4 - Reboot to recovery again to install MindGapps
5 - Blank, I can't go again to the recovery screen at all
back2live said:
@Draylin Did you follow these steps https://wiki.lineageos.org/devices/kebab/fw_update before installation of LinageOS 12.1?
Click to expand...
Click to collapse
Yes, I followed these steps.
@LuK1337 Thank you for your response. I flashed the linked dtbo to the new slot, but this did not help. Since it seems to be working fine for others, I think the error must be somwhere on my side.
Draylin said:
Yes, I followed these steps.
@LuK1337 Thank you for your response. I flashed the linked dtbo to the new slot, but this did not help. Since it seems to be working fine for others, I think the error must be somwhere on my side.
Click to expand...
Click to collapse
I had the same problem, but forgot flash the vendor data before.
I am now installing lineageos18 again and try to upgrade.
Draylin said:
Yes, I followed these steps.
@LuK1337 Thank you for your response. I flashed the linked dtbo to the new slot, but this did not help. Since it seems to be working fine for others, I think the error must be somwhere on my side.
Click to expand...
Click to collapse
Just wondering but what firmware version did you flash?
LuK1337 said:
Just wondering but what firmware version did you flash?
Click to expand...
Click to collapse
I used the latest file from the linked site: OnePlus8TOxygen_15.E.31_OTA_0310_all_2202182356_edc3927f4900402e.zip and extracted it using the payload dumper.
Draylin said:
I used the latest file from the linked site: OnePlus8TOxygen_15.E.31_OTA_0310_all_2202182356_edc3927f4900402e.zip and extracted it using the payload dumper.
Click to expand...
Click to collapse
That's OxygenOS 11 firmware.
LuK1337 said:
That's OxygenOS 11 firmware.
Click to expand...
Click to collapse
Could well be, the filename is not very telling to me. I just assumed that the firmware provided would be the latest one.

Categories

Resources