msm8996 step-down code - OnePlus 3 Questions & Answers

Qualcomm 820 is very hot, we have no better kernel, if someone is compiled step-down GPU overclocking kernel playability can still improve
code:dmesg | grep clock-cpu-8996 && dmesg | grep gfx3d_clk_src_v2

Related

[DEV][REPOST][SCRIPTS][TWEAKS] TurboBoost™-V8 --GB running a ICS Heart--

Reposting this from GadgetCheck @ Galaxy Ace forum! Very useful for Wildfire S!
Introduction
TurboBoost is a script package by me, Now due to the time i took in building a working ICS port for SGS2 with Cyanogen and TeamHacksung i got to study a lot about the ICS framework and working. Now what i did was to apply the same tweaks i found there on to a GB rom and vola TurboBoost was born!
Benefits
Better performance, better battery life through Linux kernel tweaks catered for Android OS and flash memory.
Better battery life and performance through usage of screenstate_scaling whereby it switches governors/thresholds/VM depending on your screen state.
Better network throughput from TCP tweaks and 3G tweaks
Less RAM usage through zipalign.
Faster database access through defragmentization of sqlite db files (a lot of apps use Database to store data like Swype dictionaries, Game saves etc)
Faster disk access through remount script (noatime, disable barrier etc)
Less lags through Quasi-charger, with multitasking
Requirements
Android Gingerbread 2.3.x
At least 2MB free on /system (Delete unused ringtones or useless apps like Aldiko/Allshare etc).
Root
Kernel that supports init.d
Ext4 lagfix if you want to use the remount script
Instructions
For the time being this is for developers and advanced users only,
SO I WONT BE PROVIDING ANY CWM PACKAGES if you dont know what to do with the package better not touch it let the developers do it for you
Personally's Developed
This will Zipallign every system .apk and framework @Boot!
Code:
Code:
for apk in /system/app/*.apk ; do
zipalign -c 4 $apk;
ZIPCHECK=$?;
if [ $ZIPCHECK -eq 1 ]; then
echo ZipAligning $(basename $apk) | tee -a $LOG_FILE;
zipalign -f 4 $apk /cache/$(basename $apk);
if [ -e /cache/$(basename $apk) ]; then
cp -f -p /cache/$(basename $apk) $apk | tee -a $LOG_FILE;
rm /cache/$(basename $apk);
else
echo ZipAligning $(basename $apk) Failed | tee -a $LOG_FILE;
fi;
else
echo ZipAlign already completed on $apk | tee -a $LOG_FILE;
fi;
done;
for apk in /system/framework/*.apk ; do
zipalign -c 4 $apk;
ZIPCHECK=$?;
if [ $ZIPCHECK -eq 1 ]; then
echo ZipAligning $(basename $apk) | tee -a $LOG_FILE;
zipalign -f 4 $apk /cache/$(basename $apk);
if [ -e /cache/$(basename $apk) ]; then
cp -f -p /cache/$(basename $apk) $apk | tee -a $LOG_FILE;
rm /cache/$(basename $apk);
else
echo ZipAligning $(basename $apk) Failed | tee -a $LOG_FILE;
fi;
else
echo ZipAlign already completed on $apk | tee -a $LOG_FILE;
fi;
done;
Touch Screen Sensitive FIX
Code:
Code:
echo 7035 > /sys/class/touch/switch/set_touchscreen;
echo 8002 > /sys/class/touch/switch/set_touchscreen;
echo 11000 > /sys/class/touch/switch/set_touchscreen;
echo 13060 > /sys/class/touch/switch/set_touchscreen;
echo 14005 > /sys/class/touch/switch/set_touchscreen;
In house ICS Developed Tweaks
Included libsqlite.so and libsqlite_ini.so from Android 4.0 (improves performance)
Included app_process and system_server from Android 4.0 (improves scrolling)
Included sqlite3 from Android 4.0
Included Vpn
Files In Package
Code:
xbin> openvpn & sqlite3
etc>>init.d> s78enable_touchscreen_1 , S95zipalign , S98CFSK & S98system_tweak
bin> app_process & system_server
lib> libncurses.so , libsqlite.so & libsqlite_jni.so
Important
Dont use a RAM script with this
Set the permissions to 777
Make sure if u use TB-V8 only use its content, and verify your personal tweaks dont tamper its functionality
Can be used on both CM and Sammy Rom's (But reminder i don't Guarantee ur phone will boot)
Credits
Zacharias.maladroit
XDA's devs for some reference of some tweaks in Zach's scripts
zeppelinrox Supercharger scripts
ChainFire - Touchscreen Tweaks
pikachu01-ThunderBolt! via S98system_tweak
@All- if any one i have missed out!
Info for Developers: Please Give Due Credit's if you use it in your ROM's
And please use the thread for support and not PM!
http://forum.xda-developers.com/showthread.php?t=1380006
Sounds good, but for me there is no chance to use it because there is no cwm package
Yeah no cwm to install
Instructions
For the time being this is for developers and advanced users only,
SO I WONT BE PROVIDING ANY CWM PACKAGES if you dont know what to do with the package better not touch it let the developers do it for you
Click to expand...
Click to collapse
Sent from my HTC Desire S using XDA App
Please do this thing for flashing from recovery.(
Did anyone implement this in any rom for wfs and could it be implemented in cyagon mode?
Nice will try it at my gf phone, or I'm hoping she let my do it^^
Oh and will add it to index if you don't mind
Swyped from my desire s running damn sweet ice cream
aigaming said:
Did anyone implement this in any rom for wfs and could it be implemented in cyagon mode?
Click to expand...
Click to collapse
I don't know if it's included somewhere yet, but cyanogen supports it, read it's even in the text
Swyped from my desire s running damn sweet ice cream
Tried it and it works like a charm, about the benefits i can't tell at the moment, but i will as soon as i see any difference.
Oh and btw, pls also add the zip of the original thread here

Linux without chroot?

Is it possible to run Linux without chroot? I got Archlinux up and running
Code:
[[email protected] ~]# hostname
galaxys
[[email protected] ~]# cat /proc/cpuinfo
Processor : ARMv7 Processor rev 2 (v7l)
BogoMIPS : 663.76
Features : swp half thumb fastmult vfp edsp thumbee neon vfpv3 tls
CPU implementer : 0x41
CPU architecture: 7
CPU variant : 0x2
CPU part : 0xc08
CPU revision : 2
Hardware : aries
Revision : 0030
Serial : 313423849c8b00ec
[[email protected] ~]# uname -a
Linux galaxys 3.1.10_IcyGlitch_V14-B6_I9K-T959D #1 PREEMPT Sat Mar 24 18:00:37 CET 2012 armv7l ARMv7 Processor rev 2 (v7l) aries GNU/Linux
[[email protected] ~]# pacman -Qs pacman
local/pacman 4.0.2-1.1 (base)
A library-based package manager with dependency support
local/pacman-mirrorlist 20120204-1 (base)
Arch Linux ARM mirror list for use by pacman
[[email protected] ~]# cat /proc/cmdline
console=ttySAC2,115200 loglevel=4 androidboot.serialno=313423849C8B00EC bootmode=0
[[email protected] ~]#
... but it would be nice to boot into Archlinux instead of ICS. I haven't compiled kernels for the phone before - is the root filesystem path hardcoded in the compile? The only thing I can find is this:
Code:
[[email protected] ~]# zcat /proc/config.gz |grep -i cmdline
CONFIG_CMDLINE="console=ttyFIQ0,115200 init=/init"
Of course, I would probably have to repartition whatever is the root partition. Perhaps I could repartition the internal SD card, give the partition a label and use that for root.
Any pointers? Thanks,
Edit: http://forum.xda-developers.com/showthread.php?t=999097#12206727
Aha. This might be difficult.

1N4148 Kernel [i8190, CPU OC, GPU OC]

Kernel for i8190 AOSP based KitKat ROMs with overclocking support for CPU & GPU.
This kernel is for Android 4.4.x AOSP based ROMs only, it won't run on others. Until Lollipop releases aren't nearly stable I won't support ist. Main objective is stability and lowest possible power consumption.
Features
CPU overclocking support (def. 1000MHz, max. 1200MHz) with AVC (automatic voltage calculation)
GPU overclocking support (def. 448MHz, max. 704MHz)
F2FS, exFAT support
Enabled deep sleep state 4 by default
ZRAM with LZ4 compression algorithm
Download
See download item above or http://forum.xda-developers.com/devdb/project/dl/?id=12134
XDA:DevDB Information
1N4148 Kernel, Kernel for the Samsung Galaxy S III Mini
Contributors
1N4148, ChronoMonochrome, cocafe, tenshi, mkaluza, yanpol199
Source Code: https://github.com/1N4148/s3mini
Version Information
Status: Beta
Created 2014-12-01
Last Updated 2015-04-25
Changelog
20141201-2015-dev
Initial beta from dev repo
AVC with +25mV for core and +100mv for bias
Features in work
Tune AVC for more stability when overclocking CPU
AVC for GPU overclocking
Tell me...
android 5.0 please and thanks
Unfortunately the download link is not visible at tapatalk... could you add it to OP?
Have fun!
Gesendet von meinem GT-I8190 mit Tapatalk 2
grinder777 said:
Unfortunately the download link is not visible at tapatalk... could you add it to OP?
Have fun!
Gesendet von meinem GT-I8190 mit Tapatalk 2
Click to expand...
Click to collapse
I don't find it on pc too....
grinder777 said:
Unfortunately the download link is not visible at tapatalk... could you add it to OP?
Click to expand...
Click to collapse
At your service
Balino said:
I don't find it on pc too....
Click to expand...
Click to collapse
Check the menu bar with Discussion, Downloads, Reviews, Feature Requests, Bug Reports.
Finally, your own thread Some questions before trying. Alarm clock freeze fixed right? I have no problems with wifi, so wich options to choose, new JB2 driver or old driver?
mauam said:
Finally, your own thread Some questions before trying. Alarm clock freeze fixed right? I have no problems with wifi, so wich options to choose, new JB2 driver or old driver?
Click to expand...
Click to collapse
Kernel includes the commit from golden-guy which should fix clock freeze with matching ROMs. If you don't have problems with your wifi you can use the new JB2 driver (it's the same like in latest kernels from Novafusion or Android-Andi). The old driver is only for people having wifi connected but no data is flowing...
1N4148 said:
Kernel includes the commit from golden-guy which should fix clock freeze with matching ROMs. If you don't have problems with your wifi you can use the new JB2 driver (it's the same like in latest kernels from Novafusion or Android-Andi). The old driver is only for people having wifi connected but no data is flowing...
Click to expand...
Click to collapse
Last one. Why only 797 mb RAM. It can make the rom a bit slow!?
mauam said:
Last one. Why only 797 mb RAM. It can make the rom a bit slow!?
Click to expand...
Click to collapse
Don't know. Didn't change anything in this direction. But I don't think that the "missing" 7MB would make a notable difference.
1N4148 said:
Don't know. Didn't change anything in this direction. But I don't think that the "missing" 7MB would make a notable difference.
Click to expand...
Click to collapse
Ok this is really the last one, I swear:laugh: Which gov & shc are you using? & min-max processor values?
mauam said:
Ok this is really the last one, I swear:laugh: Which gov & shc are you using? & min-max processor values?
Click to expand...
Click to collapse
Governors:
Performance
Powersave
Userspace
Ondemand
Interactive
InteractiveQ
IntelliActive
Hotplug
PegasusQ
Sakuractive
AbyssPlug
ZenX
Conservative
ZenerActive
LulzactiveQ
zzmoove (my favorite)
Schedulers:
Noop
Zen (my current favorite)
Deadline
Cfq
Row
Sio
Sioplus
Fifo
CPU min 200, max 1200, GPU min 128, max 704 (my values, stable for me: 200/1200; 384/640)
1N4148 said:
Governors:
Performance
Powersave
Userspace
Ondemand
Interactive
InteractiveQ
IntelliActive
Hotplug
PegasusQ
Sakuractive
AbyssPlug
ZenX
Conservative
ZenerActive
LulzactiveQ
zzmoove (my favorite)
Schedulers:
Noop
Zen (my current favorite)
Deadline
Cfq
Row
Sio
Sioplus
Fifo
CPU min 200, max 1200, GPU min 128, max 704 (my values, stable for me: 200/1200; 384/640)
Click to expand...
Click to collapse
So, zzmoove+zen 200-1200, ok gonna try
Nice kernel @1N4148! I'll test this one out as the one I used last night gave me a bootloop... and 1100 and 1200 were not stable for me... Instant reboot
Also, what rom are you using?
Could you make version fof stock 4.1.2 too??
Would be finaly nice to have one
Sn0wdune said:
Nice kernel @1N4148! I'll test this one out as the one I used last night gave me a bootloop... and 1100 and 1200 were not stable for me... Instant reboot
Also, what rom are you using?
Click to expand...
Click to collapse
Latest CM11 by Novafusion. Boot with [email protected] & send me /sys/kernel/liveopp/avs_summary & /sys/kernel/liveopp/prcmu_avs. Maybe I see anything what you can do.
galaxy mini said:
Could you make version fof stock 4.1.2 too??
Would be finaly nice to have one
Click to expand...
Click to collapse
None of my devices have been ever booted up with stock, so probably not. Sorry.
1N4148 said:
Latest CM11 by Novafusion. Boot with [email protected] & send me /sys/kernel/liveopp/avs_summary & /sys/kernel/liveopp/prcmu_avs. Maybe I see anything what you can do.
Click to expand...
Click to collapse
I found arm_summary (not avs) but here are the reports for both files:
arm_summary:
Code:
IDX | CLK | PLL | VDD | VBB
0 | 199680 | 0x0005011a | 1025000uV 0x44 | 0x0b
1 | 299520 | 0x00050127 | 1025000uV 0x44 | 0x0b
2 | 399360 | 0x00050134 | 1025000uV 0x44 | 0x0b
3 | 499200 | 0x00050141 | 1025000uV 0x44 | 0x0b
4 | 599040 | 0x0005014e | 1025000uV 0x44 | 0x0b
5 | 698880 | 0x0005015b | 1187500uV 0x5e | 0x0b
6 | 798720 | 0x00050168 | 1187500uV 0x5e | 0x0b
7 | 898560 | 0x00050175 | 1325000uV 0xf4 | 0x0b
8 | 998400 | 0x00050182 | 1325000uV 0xf4 | 0x0b
9 | 1098240 | 0x0005018f | 1350000uV 0xf8 | 0x9d
10 | 1198080 | 0x0005019c | 1350000uV 0xf8 | 0x9d
prcmu_avs:
Code:
VBB_RET 0x00
VBB_MAX_OPP 0x0b
VBB_100_OPP 0x0b
VBB_50_OPP 0x0b
VARM_MAX_OPP 0xf4
VARM_100_OPP 0x5e
VARM_50_OPP 0x44
VARM_RET 0x18
VAPE_100_OPP 0x28
VAPE_50_OPP 0x18
VMOD_100_OPP 0x1c
VMOD_50_OPP 0x12
VSAFE 0x29
VSAFE_RET 0x14

bq Aquaris E4.5 Ubuntu Edition - Kernel

How to enable NFSD, CIFS or V4L in the Kernel?
Code:
zcat /proc/config.gz | grep NFSD
zcat /proc/config.gz | grep CIFS
zcat /proc/config.gz | grep V4L
shows me, it is not enabled.
Kernel Sources you can find on
aquaris-E4.5-ubuntu-master
I tried to edit for exp.:
~/aquaris-E4.5/mediatek/config/krillin/autoconfig/kconfig/project
with
Code:
CONFIG_NETWORK_FILESYSTEMS=y
CONFIG_NFS_FS=y
CONFIG_NFS_V3=y
CONFIG_NFS_V3_ACL=y
CONFIG_NFS_V4=y
CONFIG_NFS_V4_1=y
CONFIG_PNFS_FILE_LAYOUT=y
CONFIG_PNFS_BLOCK=m
CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN="y"
CONFIG_ROOT_NFS=y
# CONFIG_NFS_FSCACHE is not set
CONFIG_NFS_USE_LEGACY_DNS=y
CONFIG_NFSD=m
CONFIG_NFSD_V2_ACL=y
CONFIG_NFSD_V3=y
CONFIG_NFSD_V3_ACL=y
CONFIG_NFSD_V4=y
CONFIG_NFSD_FAULT_INJECTION=y
CONFIG_LOCKD=y
CONFIG_LOCKD_V4=y
CONFIG_NFS_ACL_SUPPORT=y
CONFIG_NFS_COMMON=y
CONFIG_SUNRPC=y
CONFIG_SUNRPC_GSS=y
CONFIG_SUNRPC_BACKCHANNEL=y
but I get errors with
Code:
./makeMtk -t krillin n k
Any ideas?

N7100 ROMs Table (Nougat; Oreo; Pie)

Inspired by Rickav's ROMs Comparison - Differences & Reviews
This is a collection of N7100 Nougat, Oreo, and Pie ROMs I'm aware of.
Originally it has been compiled here.
I'm trying to keep the list up to date as good as I can.
There is little hope for Oreo on Note2, except this kernel project by @forkbomb444 succeeds ... however, @pascua28's
Elite Boeffla kernel seems to do the trick as well.
190606, xref ComicoX:
- forkbomb444 stopped working on Midas project.
- pascua28 stopped working on N7100/S3 kernel (too hard for him, without an S3 or N7100
- ComicoX is using @radicaldreamer001's kernel
Code:
----------------+ ---------------+ -- - - - - -- --+ -------/-------/--------/--------/---------------/----+ ------------------------------+ --------+
[B]Name [/B]| [B]Provided by[/B] | [B]Dd[/B] [B]C[/B] [B]X[/B] [B]H[/B] [B]T[/B] [B]G+[/B] [B]S[/B] | [B]RD / AV / SP / RV / Vid / sS [/B]| [B]updates[/B] first | [B]Base[/B] |
----------------+ ---------------+ -- - - - - -- --+ -------/-------/--------/--------/---------------/----+ ------------------------------+ --------+
[B]Sorted by security patch level:[/B]
[B]191205:[/B]
[B]Lineage-P32cx [/B]| [URL="https://forum.xda-developers.com/member.php?u=7105282"]ComicoX[/URL] | [URL="https://androidfilehost.com/?a=show&w=files&flid=281219"]D[/URL] - [URL="https://review.lineageos.org/"]C[/URL] c [URL="http://cleanimport.xda/index.php?threads/3889281/"]X[/URL] | 200104 / 9 / 191205 / 16.0 / / / U | 200104/190913/0711/ .. | 190112 | LOS |
[B]191105:[/B]
[B]crDroid-P32t [/B]| [URL="https://forum.xda-developers.com/member.php?u=6751354 "]transi1 [/URL]| [URL="https://www.mediafire.com/?92dndd8bmaktj#92dndd8bmaktj"]D[/URL]d Cc [URL="http://cleanimport.xda/index.php?threads/3649169/"]X[/URL] | 191211 / 191105 / 9.0.0 / 5.10 / / / | 191211 | 191211 | LOS |
[B]190905:[/B]
[B]Havoc-P32cx [/B]| [URL="https://forum.xda-developers.com/member.php?u=7105282"]ComicoX[/URL] | [URL="https://androidfilehost.com/?a=show&w=files&flid=281219"]D[/URL]d Cc [URL="http://cleanimport.xda/index.php?threads/3934219/"]X[/URL] | 190911 / 9 / 190905 / v2.9 / FINAL / bU | 190911/0620/0527 190527 | AOSP |
[B]190705:[/B]
[B]dotOS-P32sn [/B]| [URL="https://forum.xda-developers.com/member.php?u=8569873"]s_sakthivel123[/URL] | [URL="https://drive.google.com/open?id=1t7XUoXsMkmeeZHHFICml2_l2OCI1Oa5q"]D[/URL]d Cc [URL="http://cleanimport.xda/index.php?threads/3954157/"]X[/URL] | 190802 / 9 / 190705 / 3.1 / / .U | 190802 190802 | AOSP |
[B]190405:[/B]
[B]RRemix-P32cx [/B]| [URL="https://forum.xda-developers.com/member.php?u=7105282"]ComicoX[/URL] | [URL="https://androidfilehost.com/?a=show&w=files&flid=281219"]D[/URL]d [URL="https://github.com/ResurrectionRemix/android_vendor_resurrection/blob/nougat/CHANGELOG.mkdn"]C[/URL]c [URL="http://cleanimport.xda/index.php?threads/3925310/"]X[/URL] | 190426 / 9 / 190405 / 7.0.2 / / U | 190426 190426| LOS |
[B]190305:[/B]
[B]Lineage-O32cx [/B]| [URL="https://forum.xda-developers.com/member.php?u=7105282"]ComicoX[/URL] | [URL="https://androidfilehost.com/?w=files&flid=283468"]D[/URL]- [URL="https://review.lineageos.org/"]C[/URL]c [URL="http://cleanimport.xda/index.php?threads/3871393/"]X[/URL] | 190403 / 8.1.0 / 190305 / 15.1 / / U | 190403/0202/0130/22 ... 181124| LOS |
[B]181205:[/B]
[B]AICP-N32ax [/B]| [URL="https://forum.xda-developers.com/member.php?u=9598641"]AndroX99[/URL] | [URL="https://www.mediafire.com/folder/cnu5mzuldjru4/AICP_N7100"]D[/URL]- [URL="http://dwnld.aicp-rom.com/?device=n7100"]C[/URL]c [URL="http://cleanimport.xda/index.php?threads/3884692/"]X[/URL] | 190102 / 7.1.2 / 181205 / 12.1 / / | 190102/181230 181230| LOS |
[B]181005:[/B]
[B]RRemix-N32cx [/B]| [URL="https://forum.xda-developers.com/member.php?u=7105282"]ComicoX[/URL] | [URL="https://androidfilehost.com/?w=files&flid=281220"]D[/URL]d [URL="https://github.com/ResurrectionRemix/android_vendor_resurrection/blob/nougat/CHANGELOG.mkdn"]C[/URL]c [URL="http://cleanimport.xda/index.php?threads/3837356/"]X[/URL] | 181017 / 7.1.2 / 181005 / 5.8.10 / EOL / U | 181017/0929/28/16 180825| LOS |
[B]180705:[/B]
[B]crDroid-N32t [/B]| [URL="https://forum.xda-developers.com/member.php?u=6751354"]transi1[/URL] | [URL="https://www.mediafire.com/?92dndd8bmaktj#92dndd8bmaktj"]D[/URL]- [URL="https://www.mediafire.com/?92dndd8bmaktj#92dndd8bmaktj"]C[/URL]c [URL="http://cleanimport.xda/index.php?threads/3649169/"]X[/URL] | 181021 / 7.1.2 / 180705 / 3.8.9 / / | 181021 ~monthly 171009| LOS |
[B]180605:[/B]
[B]AEX-N32cx [/B]| [URL="https://forum.xda-developers.com/member.php?u=7105282"]ComicoX[/URL] | [URL="https://androidfilehost.com/?w=files&flid=283011"]D[/URL]d Cc X | 180926 / 7.1.2 / 180605 / 4.6 / / U | 180926 180926| AOSP |
[B]Old sorting:[/B]
[B][COLOR=RED]AICP [/COLOR][/B]| [URL="https://forum.xda-developers.com/member.php?u=7889472"]makorn645[/URL] | [URL="http://dwnld.aicp-rom.com/?device=n7100"]D[/URL]- [URL="http://dwnld.aicp-rom.com/?device=n7100"]C[/URL] [URL="http://cleanimport.xda/index.php?threads/3569395/"]X[/URL] [URL="http://aicp-rom.com"]H[/URL] T [URL="https://plus.google.com/communities/101008638920580274588"]G+[/URL] [URL="https://github.com/AICP"]S[/URL] | 180101 / 7.1.2 / 171205 / 12.1 / / | last: 180108 (weekly) | LOS |
[B]AOKP [/B]| [URL="https://forum.xda-developers.com/member.php?u=6041288"]santosh61[/URL] | [URL="https://androidfilehost.com/?w=files&flid=212770"]D[/URL][URL="https://www.mediafire.com/folder/b2hh1zhb7by5n/AOKP"]d[/URL] [URL="http://gerrit.aokp.co/#/q/status:merged"]C[/URL] [URL="http://cleanimport.xda/index.php?threads/3664770/"]X[/URL] [URL="http://aokp.co/"]H[/URL] T [URL="https://plus.google.com/u/0/communities/114009911819515408480"]G+[/URL] [URL="https://github.com/aokp"]S[/URL] | 170910 / 7.1.2 / 170805 / / / | 170902/3 170830 | AOKP |
[COLOR=GREY]AOSP [/COLOR]| [URL="https://forum.xda-developers.com/member.php?u=5441149"]ParanoidNote[/URL] | [URL="https://github.com/ParanoidNote/misc/releases"]D[/URL]- C [URL="http://cleanimport.xda/index.php?threads/3423811/"]X[/URL] H T G+ [URL="https://gitlab.com/users/ParanoidNote/projects"]S[/URL] | 170303 / 7.1.1 / 170205 / / / | 170218 | AOSP |
[B]ColtOS [/B]| [URL="https://forum.xda-developers.com/member.php?u=6041288"]santosh61[/URL] | [URL="http://www.mediafire.com/file/u9cbhgawdujbksc/ColtOS_SeaBreeze-N-7.1.2-20180212-n7100-v1.4.zip"]D[/URL][URL="http://www.mediafire.com/file/2atmiwq030i71dh/"]d[/URL] [URL="http://www.mediafire.com/file/beax2nq425ai0kx/lineage_n7100-NZH54D-20180212-Changelog.txt"]C[/URL] [URL="http://cleanimport.xda/index.php?threads/3703086/"]X[/URL] H [URL="https://t.me/ColtChatBox"]T[/URL] [URL="https://plus.google.com/u/0/communities/102067248475500399675"]G+[/URL] [URL="https://github.com/ColtOS"]S[/URL] | 180212 / 7.1.2 / 171105 / 1.4 / Seabreeze / | 171210 171110 | LOS |
[B]ColtOS-M [/B]| [URL="https://forum.xda-developers.com/member.php?u=7451289"]Marc0601[/URL] | [URL="http://www.mediafire.com/folder/vc3tk4sq7rago/Colt-OS_Rom_Edited_By_Marc"]D[/URL]- C [URL="http://cleanimport.xda/index.php?threads/3746481/"]X[/URL] H [URL="https://t.me/ColtChatBox"]T[/URL] [URL="https://plus.google.com/u/0/communities/102067248475500399675"]G+[/URL] [URL="https://github.com/ColtOS"]S[/URL] | 180208 / 7.1.2 / 171105 / 1.4.1 / / | 180208 | LOS |
[COLOR=GREY]CosmicOS [/COLOR]| [URL="https://forum.xda-developers.com/member.php?u=5863325"]sagarshah1749[/URL] | [URL="https://www.androidfilehost.com/?w=files&flid=147449"]D[/URL]- C [URL="http://cleanimport.xda/index.php?threads/3572786/"]X[/URL] [URL="http://cosmic-os.com"]H[/URL] [URL="https://t.me/cosmicosofficial"]T[/URL] [URL="https://plus.google.com/communities/116339021564888810193"]G+[/URL] [URL="https://github.com/Cosmic-OS"]S[/URL] | 170326 / 7.1.1 / 170305 / 1.4 / / | stalled | AOSP-CAF|
[B]dotOS [/B]| [URL="https://forum.xda-developers.com/member.php?u=6041288"]santosh61[/URL] | [URL="http://www.mediafire.com/file/10swztqu7hqk6fw/DOT-N-v1.2-20180427-n7100-UNOFFICIAL.zip"]D[/URL][URL="http://www.mediafire.com/file/rn4e6jj13343to5/DOT-N-v1.2-20180411-n7100-UNOFFICIAL.zip"]d[/URL] Cc [URL="http://cleanimport.xda/index.php?threads/3776443/"]X[/URL] [URL="https://www.droidontime.com/"]H[/URL] [URL="https://t.me/dotos"]T[/URL] [URL="https://plus.google.com/communities/101137692192340076065"]G+[/URL] [URL="https://github.com/dotos"]S[/URL] | 180427 / 7.1.2 / 180205 / 1.2 / / .U | 180427/11 180411 | LOS |
[B]LineageOS [/B]| [URL="https://forum.xda-developers.com/member.php?u=539770"]tilaksidduram[/URL] | [URL="http://tilak.sergix44.ovh/n7100/"]D[/URL]- [URL="https://review.lineageos.org/"]C[/URL] [URL="http://cleanimport.xda/index.php?threads/3487568/"]X[/URL] [URL="https://www.lineageos.org"]H[/URL] T [URL="https://plus.google.com/communities/112507607742650442080"]G+[/URL] [URL="https://github.com/lineageos"]S[/URL] | 171019 / 7.1.2 / 171005 / 14.1 / / | 170810 | LOS |
[B][COLOR=RED]NucleaROM [/COLOR][/B]| [URL="https://forum.xda-developers.com/member.php?u=4443483"]moludo[/URL] | [URL="http://nuclearom.com/galaxy-note-2-n7100/?lang=en"]D[/URL]- C [URL="http://cleanimport.xda/index.php?threads/3611240/"]X[/URL] [URL="http://nuclearom.com/?lang=en"]H[/URL] [URL="https://telegram.me/NucleaRomSupport"]T[/URL] [URL="https://plus.google.com/communities/118026426488322012413"]G+[/URL] [URL="https://github.com/OneRomOne-N"]S[/URL] | 171007 / 7.1.2 / 171005 / 5 / / | 170713 | LOS |
RRemix.h | [URL="https://forum.xda-developers.com/member.php?u=7049132"]hibin.m[/URL] | [URL="https://www.androidfilehost.com/?fid=818070582850508982"]D[/URL][URL="https://androidfilehost.com/?fid=673791459329065602"]d[/URL] [URL="https://github.com/ResurrectionRemix/android_vendor_resurrection/blob/nougat/CHANGELOG.mkdn"]C[/URL]c [URL="http://cleanimport.xda/index.php?threads/3532859/"]X[/URL] [URL="http://www.resurrectionremix.com"]H[/URL] [URL="https://t.me/resurrectionremixchat"]T[/URL] [URL="https://plus.google.com/communities/109352646351468373340"]G+[/URL] [URL="https://github.com/ResurrectionRemix"]S[/URL] | 180420 / 7.1.2 / 171205 / 5.8.5 / / O | 180420 | LOS |
[B]RRemix2 [/B]| [URL="https://forum.xda-developers.com/member.php?u=6041288"]santosh61[/URL] | [URL="http://www.mediafire.com/file/r5a49h98xhupc0b/"]D[/URL][URL="https://androidfilehost.com/?w=files&flid=215134"]d[/URL] [URL="https://github.com/ResurrectionRemix/android_vendor_resurrection/blob/nougat/CHANGELOG.mkdn"]C[/URL] [URL="http://cleanimport.xda/index.php?threads/3672390/"]X[/URL] [URL="http://www.resurrectionremix.com"]H[/URL] [URL="https://t.me/resurrectionremixchat"]T[/URL] [URL="https://plus.google.com/communities/109352646351468373340"]G+[/URL] [URL="https://github.com/ResurrectionRemix"]S[/URL] | 171210 / 7.1.2 / 171106 / 5.8.5 / / | 171021 170926 | LOS |
[B]ViperOS [/B]| [URL="https://forum.xda-developers.com/member.php?u=6041288"]santosh61[/URL] | [URL="http://www.mediafire.com/file/u6g8z0w877pgi13/Viper-n7100-20180213-Coral-v3.1.1-UNOFFICIAL.zip"]D[/URL][URL="http://www.mediafire.com/file/52h8e4794vmdwxh"]d[/URL] [URL="http://www.mediafire.com/file/ak2kg8892wimna3/Viper-n7100-20180213-Coral-v3.1.1-UNOFFICIAL_changelog.txt"]C[/URL] [URL="http://cleanimport.xda/index.php?threads/3666234/"]X[/URL] [URL="http://viper-os.com"]H[/URL] [URL="https://t.me/viperos_news"]T[/URL] [URL="https://plus.google.com/communities/112731559207528820150"]G+[/URL] [URL="https://github.com/Viper-Project"]S[/URL] | 180213 / 7.1.2 / 171005 / 3.1.1 / Coral / | 171210/1102 170923 | ? |
[B]XenonHD [/B]| [URL="https://forum.xda-developers.com/member.php?u=7889472"]makorn645[/URL] | [URL="https://mirrors.c0urier.net/android/teamhorizon/N/Official/n7100/"]D[/URL]- [URL="https://mirrors.c0urier.net/android/teamhorizon/N/Official/n7100/Changelog.txt"]C[/URL] [URL="http://cleanimport.xda/index.php?threads/3579771/"]X[/URL] [URL="http://www.xenonhd.com/"]H[/URL] [URL="https://t.me/xenonhd"]T[/URL] [URL="https://plus.google.com/u/0/communities/110254322179967248992"]G+[/URL] [URL="https://github.com/TeamHorizon?tab=repositories"]S[/URL] | 171124 / 7.1.2 / 171106 / / / | 171225 171218 | LOS |
[COLOR=GREY]XOSP [/COLOR]| [URL="https://forum.xda-developers.com/member.php?u=7889472"]makorn645[/URL] | [URL="https://www.androidfilehost.com/?fid=745425885120730680"]D[/URL]- C [URL="http://cleanimport.xda/index.php?threads/3532400/"]X[/URL] [URL="https://xosp.org/"]H[/URL] [URL="https://telegram.me/xosp_channel"]T[/URL] [URL="https://plus.google.com/u/0/communities/117671498272072664538"]G+[/URL] [URL="https://github.com/XOSP-Project"]S[/URL] | 170509 / 7.1.1 / 170505 / / / | 170509 | Xperia? |
----------------+ ---------------+ -- - - - - -- --+ -------/-------/--------/--------/---------------/----+ ------------------------------+ --------+
Columns:
Name: ROM name (red, if ROM isn't available anymore)
Provided by
D Download, d secondary download , C Changelog , X XDA thread , H ROM homepage , T Telegram , G+ Google+ , S Source code
RD Release date , AV Android version , SP Security patch , RV ROM version
updates: first / previous versions; remarks
Base
Root (pre-rooted): 'b': root for adb; 'A': root for Apps; 'M': via Magisk; 'R': 'root' via 'adb root' (or 'su')
S : SELinux status (E-enforcing, M-moderate, P-permissive)
Code:
----------------+ -------+ ----+ ----- --------+-----+ ---------+ ---------+ ------+ --------------------------------
[B]Name [/B]| [B]version[/B]| [B]DBP[/B] | [B]SRoot[/B] [B]SCDWB | GPS [/B]| [B]CSVAPF [/B]| [B]LSI[/B] | [B]AnTuTu[/B]| [B]Comments[/B]
----------------+ -------+ ----+ ----- --------+-----+ ---------+ ---------+ ------+ --------------------------------
AEX-N32cx | 180926 | nat | Eb-RS SCDWB | GF- | c-vA-- | -- -V +T | 22610 | not working: camera, video player; screen remains dark on calls (my sensor is broken)
AICP | 180101 | org | Eb-R S.DW | GF | C VA | -C +V +T | | -
AICP-N32ax | 190102 | nat | Eb-R SCDWB | GF. | CsVAPF | -C +V +T | 22640 | (my sensor hardware is broken)
AOKP | 170910 | org | EbA ?. W | G | C | -- -V -T | | no adb via USB ?
AOSP | 170303 | mod | Pb ?. W | - | C | -- -- -- | | updater script checks for older version of TWRP; withdrawn by PN
ColtOS | 180212 | org | Pb-R ?.?W | GF- | C VA | -- -- -- | | -
ColtOS-M | 180208 | org | .... ?.?? | ? | ? ? | ?? ?? ?? | | Based on ColtOS by santosh61; requires TWRP 3.1.1-1; doesn't boot in DBP; not tested
CosmicOS | 170326 | org | PR M ?. - | GF | | -C -V +T | | -SignalStrength
crDroid-N32t | 180419 | org | EbAR S.DWB | GF- | CsVAPF | -C +V +T | 23355 | +
crDroid-N32t | 181021 | nat | EbAR SCDWB | GF. | CsVAPF | -C +V +T | 23921 | +; calls: screen remains dark .. (maybe due to broken proximity sensor)
dotOS | 180411 | org | Eb-R ???WB | GF- | CsVAPF | -- -- -- | 23441 | .
dotOS | 180427 | org | Eb-R ???WB | GF- | CsVAPF | -- -- -- | 23251 | .
LineageOS | 171019 | org | PbA ?. W | G | | -C +V -T | | +SafetyNet* -BTCalls* +sdcard1
Lineage-O32cx | 190102 | nat | Mb-Rs SCDWB | --- | CSVAPF | -- -- -- | 23266 | screen remains dark sometimes, for ~10s; no GPS yet
NucleaROM | 171007 | org | PbA ?. W | G | | -- -- -- | | +CM S-PEN support inbuilt*
RRemix.h | 171206 | org | PbA ?. W | G | | -C +V -T | | -SafetyNet* -BTCalls*
RRemix.h | 180420 | org | PbAR ...WB | GF- | csVAPF | -C +V -T | 23161 | security patch old (171205); GPS quite fast and sensitive; OC crashes
RRemix2 | 171210 | org | Pb- ?. W | GF- | C | -C +V -T | | +xposed
RRemix-N32cx | 181017 | nat | Eb-Rs SCDWB | GF- | CsVAPF | -- -V -T | 23619 | V, T: don't change
ViperOS | 180213 | org | Pb-R ?.?W | GF- | C VA | -C +V -T | | -
XenonHD | 171124 | org | EbA S.DW | GF- | CSVA | -C +V +T | | -
XOSP | 170509 | org | PbA ?. W | G | | -- -- -- | | no XOSP N7100 XDA thread
----------------+ -------+ ----+ ----- --------+-----+ ---------+ ---------+ ------+ --------------------------------
Columns:
DBP (Dual Boot Patcher): 'mod': ROM zip needs to be modified, to make it work
Battery Life: <total number of days> (<operated>+<predicted>) (<ROM version>)
SDWA: S-SIM, D-Data, W-Wifi, A-Audio (working, otherwise '-')
BT (Bluetooth): S-sending works, R-receiving works (otherwise '-')
GPS: G-works, F-fix obtained (otherwise '-')
OC2V (OpenCamera): OC-works, 2-Camera2 API (RAW images!) (Oreo only), V-video recording works (including audio)
LS (Lockscreen): C-Charging Current, V-Charging Voltage, T-Battery Temperatur ('+': ok; '-': wrong values)
Comments
Battery life:
- standard set of apps
- in airplane mode
- off: Wifi, NFC Bluetooth, auto-sync, vibrate on touch, adaptive brightness
- on: GPS
'26d (8+18) (171021)' means: measured on 171021 version, after 8d, additional 18d predicted (=> in total: 26d)
Features; Flaws; Bugs
Lockscreen charging info
'current volt temp'
It should read something like '229mA 4.4V 18°C'
On most N7100 (Samsung?) Nougat ROMs it reads '0mAh 4.4V 18°C',
i.e. charging current is screwed.
Meanings:
'--current --volt --current' : missing at all
'-current -volt -temp': present, wrong (static) values however
xref: missing fwb_base commit
OpenCamera (171104)
Working meanwhile on most of the newer Nougat ROMs.
Not working on: LineageOS.
External sdcard label
Most Nougat ROMs use sdcard specific mount points, like
/storage/63A8-1C10
LineageOS mounts it since 170810 version on
/sdcard1 (good)
xref
reserved
reserved
Pretty good work here. But there is no thread for xosp. The thread you linked here is of nexus 6p
Gurkanwal Chauhan said:
Pretty good work here. But there is no thread for xosp. The thread you linked here is of nexus 6p
Click to expand...
Click to collapse
Thanks
xosp was a 'one-off' by makorn it seems; maybe he can comment on its future.
His xosp build was mentioned in one of the other ROM threads.
jer194 said:
Thanks
xosp was a 'one-off' by makorn it seems; maybe he can comment on its future.
His xosp build was mentioned in one of the other ROM threads.
Click to expand...
Click to collapse
Yeah he uploaded one xosp build on his android file host but never made a thread.
New ROM added: ColtOS
ColtOS (a new ROM provided by santosh61 :good has been added to the original post.
XenonHD has been updated to version 171124 (Nov 6 security patch).
Main drawback: Bluetooth is broken in XenonHD (all versions).
Hello,
Impressive work, saves a lot of search and reading (yet I don't recommend not reading about every rom ). Good job and Many thanks.
excellent work
New RR release (171206; made by hibin.m) added.
New releases (171210) by santosh61 (big thanks to him!), for all of his ROMs: Resurrection Remix, ColtOS, ViperOS
(not yet flashed/tested on my device)
New crDroid release (crDroidAndroid-7.1.2-20171216-n7100-v3.8.4.zip) added
Nice work, But who can help me about which one works on tg03 n7100. Bcz i tried some of them, they are booting well with no sim issue and i cdnt find a solution for that too.
taskin parx said:
Nice work, But who can help me about which one works on tg03 n7100. Bcz i tried some of them, they are booting well with no sim issue and i cdnt find a solution for that too.
Click to expand...
Click to collapse
You are right, that's missing significant information . In future, I'll include a SIM test.
jer194 said:
New crDroid release (crDroidAndroid-7.1.2-20171216-n7100-v3.8.4.zip) added
Click to expand...
Click to collapse
Today's updating:
transi1 said:
new build crDroidAndroid-7.1.2-20180205-n7100-v3.8.5.zip
http://www.mediafire.com/folder/92dndd8bmaktj/n7100
Click to expand...
Click to collapse
cornish-rex said:
Today's updating:
Click to expand...
Click to collapse
Thanks --- I have updated the table entry for crDroid accordingly .
The first N7100 ROM with 180105 security update, thanks to transi1!
(Also, the first N7100 ROM update since 171210 ..)
del
ColtOS has been updated to version 20180212 (security patch level still on 171105).

Categories

Resources