Kernel diff between EG30 and EK02 - Samsung Epic 4G Touch

Hi All,
For the curious here's a diffstat between the EG30 and EK02 kernels. From my first look the changes to dpram (recovery functions) and the wimax drivers are the most interesting. I've pastebin'd the driver files diff at pastebin dot com slash 3eskK04d (I'm a new user so I can't post links yet sorry!)
My first post, I hope it's useful!
Code:
arch/arm/Kconfig | 15
arch/arm/configs/c1_fips_rev02_defconfig | 1
arch/arm/configs/c1_rev00_defconfig | 1
arch/arm/configs/c1_rev00_na_spr_epic2_defconfig | 1
arch/arm/configs/c1_rev00_q1_defconfig | 1
arch/arm/configs/c1_rev01_defconfig | 1
arch/arm/configs/c1_rev01_jpn_ntt_defconfig | 1
arch/arm/configs/c1_rev01_kor_skt_defconfig | 1
arch/arm/configs/c1_rev02_c1q1_defconfig | 1
arch/arm/configs/c1_rev02_chn_defconfig | 1
arch/arm/configs/c1_rev02_defconfig | 1
arch/arm/configs/c1_rev02_jpn_ntt_defconfig | 1
arch/arm/configs/c1_rev02_kor_skt_defconfig | 1
arch/arm/configs/c1_rev02_na_spr_defconfig | 6
arch/arm/configs/c1_rev02_q1_defconfig | 1
arch/arm/configs/c1_rev02_talbot_defconfig | 1
arch/arm/configs/c1_rev02_usa_att_defconfig | 1
arch/arm/configs/c1_rev05_na_spr_defconfig | 11
arch/arm/include/asm/cacheflush.h | 9
arch/arm/include/asm/hardware/cache-l2x0.h | 1
arch/arm/include/asm/pgtable.h | 26
arch/arm/include/asm/smp_plat.h | 4
arch/arm/include/asm/tlbflush.h | 12
arch/arm/mach-s5pv310/c1-wimax.c | 11
arch/arm/mach-s5pv310/mach-c1.c | 31
arch/arm/mach-s5pv310/tmu.c | 316
arch/arm/mm/cache-l2x0.c | 6
arch/arm/mm/copypage-v4mc.c | 2
arch/arm/mm/copypage-v6.c | 2
arch/arm/mm/copypage-xscale.c | 2
arch/arm/mm/dma-mapping.c | 6
arch/arm/mm/fault-armv.c | 8
arch/arm/mm/flush.c | 46
drivers/bluetooth/bthid/bthid.c | 10
drivers/dpram/raffaello/dpram.c | 124
drivers/dpram/raffaello/dpram_recovery.c | 381
drivers/dpram/raffaello/dpram_recovery.h | 12
drivers/input/misc/cm3663.c | 9
drivers/input/touchscreen/mxt224_u1.c | 265
drivers/misc/sec_jack_spr.c | 2
drivers/mmc/card/block.c | 132
drivers/mmc/core/sdio.c | 83
drivers/mmc/core/sdio_ops.c | 34
drivers/mmc/core/sdio_ops.h | 3
drivers/net/wimax_cmc/hardware.c | 66
drivers/net/wimax_cmc/receive.c | 1
drivers/net/wimax_cmc/wimax_i2c.c | 1539
drivers/net/wimax_cmc/wimax_i2c.h | 88
drivers/net/wimax_cmc/wimax_sdio.c | 104
drivers/net/wireless/bcm4330/src/wl/sys/wl_iw.c | 1
drivers/serial/samsung.c | 2
drivers/staging/westbridge/astoria/api/src/cyaslowlevel.c | 7
drivers/staging/westbridge/astoria/device/cyasdevice.c | 20
drivers/staging/westbridge/astoria/device/cyasdiagnostics.h | 1
drivers/staging/westbridge/astoria/include/linux/westbridge/cyanch9.h | 8
drivers/staging/westbridge/astoria/include/linux/westbridge/cyasch9.h | 5
include/config/auto.conf | 893
include/config/auto.conf.cmd | 640
include/config/kernel.release | 1
include/config/tristate.conf | 310
include/generated/autoconf.h | 894
include/generated/mach-types.h |38179 ----------
include/generated/utsrelease.h | 1
include/linux/i2c/mxt224_u1.h | 21
include/linux/version.h | 2
include/linux/wimax/samsung/wimax732.h | 4
scripts/basic/docproc | 44
scripts/basic/fixdep | 41
scripts/basic/hash | 12
scripts/conmakehash | 39
scripts/genksyms/genksyms | 135
scripts/genksyms/keywords.c | 220
scripts/genksyms/lex.c | 2709
scripts/genksyms/parse.c | 2353
scripts/genksyms/parse.h | 139
scripts/kallsyms | 65
scripts/kconfig/conf | 298
scripts/kconfig/lex.zconf.c | 2429
scripts/kconfig/zconf.hash.c | 239
scripts/kconfig/zconf.tab.c | 2468
scripts/mod/elfconfig.h | 4
scripts/mod/mk_elfconfig | 28
scripts/mod/modpost | 165

This is what I have been asking about and I can't understand it..lol. I have never seen such a performance boost between stock kernels. Hopefully someone will explain what exactly has changed in simpler terms but thank you nonetheless.
Sent from my SPH-D710 using xda premium

so does this update us to 2.3.6?

delfin12 said:
so does this update us to 2.3.6?
Click to expand...
Click to collapse
This is just the kernel source diff. The full EK02 update includes an update to Android 2.3.6

I would guess a performance increase is related to the CPU cache fixes.
As in the workaround for erratum 753970 PL310 (r3p0) config ARM_ERRATA_753970
Under some condition the effect of cache sync operation on
the store buffer still remains when the operation completes.
This means that the store buffer is always asked to drain and
this prevents it from merging any further writes. The workaround
is to replace the normal offset of cache sync operation (0x730)
by another offset targeting an unmapped PL310 register 0x740.
This has the same effect as the cache sync operation: store buffer
drain and waiting for all buffers empty.
Click to expand...
Click to collapse

This woudl probably get more attention in the dev section I think it would be fitting for that area... correct me if I'm wrong.

mauricehall said:
This woudl probably get more attention in the dev section I think it would be fitting for that area... correct me if I'm wrong.
Click to expand...
Click to collapse
yeah, but i can't post there yet as a n00b.

JohnCorleone said:
This is what I have been asking about and I can't understand it..lol. I have never seen such a performance boost between stock kernels. Hopefully someone will explain what exactly has changed in simpler terms but thank you nonetheless.
Sent from my SPH-D710 using xda premium
Click to expand...
Click to collapse
So if I flash the EK02 rom/kernel and I'm on EG31 radio, would I still see the speed benefits?

mauricehall said:
This woudl probably get more attention in the dev section I think it would be fitting for that area... correct me if I'm wrong.
Click to expand...
Click to collapse
Chris already posted the diff in the Dev forum.

Related

Need localization informations, if you cook localized roms please help!

Code:
LANGUAGE | EA | CS | COMPLEX FONT | gb18030 | SipAR | Uniscribe
--------------------------------------+----+----+--------------+---------+-------+----------
0401 (???,Arabic,(Saudi Arabia)) | | | | | |
0402 (???,Bulgarian,(Bulgary)) | | | | | |
0404 (CHT,Chinese Traditional,??) | | | | | |
0405 (CSY,Czech,Ceská republika) | N | N | N | N | N | N
0406 (DAN,Danish,Danmark) | N | N | N | N | N | N
0407 (DEU,German,Deutschland) | N | N | N | N | N | N
0408 (ELL,Greek,Ellas) | | | | | |
0409 (USA,English,United States) | N | N | N | N | N | N
040B (FIN,Finnish,Finland) | | | | | |
040C (FRA,French,France) | N | N | N | N | N | N
0410 (ITA,Italian,Italia) | N | N | N | N | N | N
0411 (JPN,Japanese,??) | | | | | |
0412 (KOR,Korean,??) | | | | | |
0413 (NLD,Dutch,Nederland) | N | N | N | N | N | N
0414 (NOR,Norwegian,Bokmål) | N | N | N | N | N | N
0415 (PLK,Polish,Polska) | N | N | N | N | N | N
0416 (PTB,Portuguese,Brasil) | N | N | N | N | N | N
0419 (RUS,Russian,??????) | | | | | |
041B (???,Slovak,) | | | | | |
041D (SVD,Swedish,Sverige) | N | N | N | N | N | N
0424 (???,Slovenian,) | | | | | |
0804 (CHS,Chinese Simplified,???????) | | | | | |
081A (???,Serbian (Latin),) | | | | | |
0816 (PTG,Portugese,Portugal) | N | N | N | N | N | N
0C0A (ESN,Spanish,España) | N | N | N | N | N | N
I need to fill up this table to know which locales require EA, _CS, uniscribe and other SYS packages to add automatic package selection on osKitchen. If you cook localized roms please help me fill the missing informations and correct errors, thanks!
airxtreme said:
Code:
LANGUAGE | EA | CS | COMPLEX FONT | gb18030 | SipAR | Uniscribe
--------------------------------------+----+----+--------------+---------+-------+----------
0401 (???,Arabic,(Saudi Arabia)) | | | | | |
0402 (???,Bulgarian,(Bulgary)) | | | | | |
0404 (CHT,Chinese Traditional,??) | | | | | |
0405 (CSY,Czech,Ceská republika) | N | N | N | N | N | N
0406 (DAN,Danish,Danmark) | N | N | N | N | N | N
0407 (DEU,German,Deutschland) | N | N | N | N | N | N
0408 (ELL,Greek,Ellas) | | | | | |
0409 (USA,English,United States) | N | N | N | N | N | N
040B (FIN,Finnish,Finland) | | | | | |
040C (FRA,French,France) | N | N | N | N | N | N
0410 (ITA,Italian,Italia) | N | N | N | N | N | N
0411 (JPN,Japanese,??) | | | | | |
0412 (KOR,Korean,??) | | | | | |
0413 (NLD,Dutch,Nederland) | N | N | N | N | N | N
0414 (NOR,Norwegian,Bokmål) | N | N | N | N | N | N
0415 (PLK,Polish,Polska) | N | N | N | N | N | N
0416 (PTB,Portuguese,Brasil) | N | N | N | N | N | N
0419 (RUS,Russian,??????) | | | | | |
041B (???,Slovak,) | | | | | |
041D (SVD,Swedish,Sverige) | N | N | N | N | N | N
0424 (???,Slovenian,) | | | | | |
0804 (CHS,Chinese Simplified,???????) | | | | | |
081A (???,Serbian (Latin),) | | | | | |
0816 (PTG,Portugese,Portugal) | N | N | N | N | N | N
0C0A (ESN,Spanish,España) | N | N | N | N | N | N
I need to fill up this table to know which locales require EA, _CS, uniscribe and other SYS packages to add automatic package selection on osKitchen. If you cook localized roms please help me fill the missing informations and correct errors, thanks!
Click to expand...
Click to collapse
me too,esp. SEA........Thanks for progression!!!!!

[Q] Can I change yes/no button location?

Hi
I had used the dell venue.
dell venue is now 2.3.4..
anyway, gingerbread's button dialog:
-------------------------------
|                |
|   Contents box      |
|                |
|                |
|---------------------------- |
|        |        |
|   yes   |    no  |
|        |       |
-------------------------------
but, ICS(Galaxy nexus) is:
-------------------------------
|                |
|   Contents box      |
|                |
|                |
|---------------------------- |
|        |        |
|   no    |   yes  |
|        |       |
-------------------------------
I'm this uncomfortable. Too confusing... (some apps is yes/no, some apps is no/yes..)
Can I change no/yes -> yes/no?
hsy0726 said:
Hi
I had used the dell venue.
dell venue is now 2.3.4..
anyway, gingerbread's button dialog:
-------------------------------
| |
| Contents box |
| |
| |
|---------------------------- |
| | |
| yes | no |
| | |
-------------------------------
but, ICS(Galaxy nexus) is:
-------------------------------
| |
| Contents box |
| |
| |
|---------------------------- |
| | |
| no | yes |
| | |
-------------------------------
I'm this uncomfortable. Too confusing... (some apps is yes/no, some apps is no/yes..)
Can I change no/yes -> yes/no?
Click to expand...
Click to collapse
If I understand you correctly, you want to move applications dialog boxes? If so i guess that will depend on the application and not the OS your phone is running.
He wants to reverse the yes/no buttons as they're the other way round in ICS (it was always Yes then No until now)
I get what the OP is saying but tbh, just read the bloody options before you press the screen!
I agree op.
I pressed deny on the SU prompt many times....
Sent from my Galaxy Nexus using XDA App

[Q] Help with port?

Can anyone help me figure out how to get this to work? Im very new at porting, Please as soon as possible get back to me! Thanks in advaned!
-- Install /sdcard/AAA/touchwizzport.zip ...
Finding update package...
I:Update location: /sdcard/AAA/touchwizzport.zip
Opening update package...
Installing update...
line 2 col 43: syntax error, unexpected STRING, expecting ',' or ')'
line 279 col 40: syntax error, unexpected STRING, expecting ',' or ')'
line 306 col 1: syntax error, unexpected $end, expecting ',' or ')'
3 parse errors
E:Error in /sdcard/AAA/touchwizzport.zip
(Status 6)
* Verifying filesystems...
I:=> Let's update filesystem types via verifyFst aka blkid.
* Verifying partition sizes...
+----------+-----------------------------+--------+----------+----------+---+---+
| Mount | Block Device | fst | Size(KB) | Used(KB) | M | B |
+----------+-----------------------------+--------+----------+----------+---+---+
| | | | 0 | 0 | 0 | u |
| system | /dev/block/mmcblk0p25 | ext4 | 817151 | 17192 | 1 | f |
| data | /dev/block/mmcblk0p26 | ext4 | 999423 | 17608 | 1 | f |
| boot | /dev/block/mmcblk0p22 | emmc | 4096 | 4096 | 0 | i |
| recovery | /dev/block/mmcblk0p21 | emmc | 8701 | 8701 | 0 | i |
| cache | /dev/block/mmcblk0p28 | ext4 | 178175 | 16488 | 1 | f |
| sdcard | /dev/block/mmcblk1p1 | vfat | 7757824 | 4163200 | 1 | n |
| | | | 0 | 0 | 0 | n |
| andsec | /sdcard | vfat | 32 | 32 | 0 | f |
| sd-ext | /dev/block/mmcblk1p2 | vfat | 7761920 | 0 | 1 | f |
| | | | 0 | 0 | 0 | n |
| | | | 0 | 0 | 0 | n |
| | | | 0 | 0 | 0 | n |
+----------+-----------------------------+--------+----------+----------+---+---+
Error flashing zip '/sdcard/AAA/touchwizzport.zip'
I:Set page: 'flash_done'
I:Set page: 'clear_vars'
I:Set page: 'main2'
I:Set page: 'advanced'
I:Set page: 'confirm_action'
I:Set page: 'action_page'
Click to expand...
Click to collapse
EpicLordPhone said:
Can anyone help me figure out how to get this to work? Im very new at porting, Please as soon as possible get back to me! Thanks in advaned!
Click to expand...
Click to collapse
what phone are you porting from? Send me the zip I can look at it.
MameTozhio said:
what phone are you porting from? Send me the zip I can look at it.
Click to expand...
Click to collapse
Im porting from the mytouch 4g. I know that its GSM and has a FFC but I still want to try to get it to work! Im uploading the rom to google drive so ill give you the link in afew
MameTozhio said:
what phone are you porting from? Send me the zip I can look at it.
Click to expand...
Click to collapse
Heres the link! HERE
EpicLordPhone said:
Heres the link! HERE
Click to expand...
Click to collapse
are you using CM9 as a base? also be sure to get permission to actually post it as a ROM.
MameTozhio said:
are you using CM9 as a base? also be sure to get permission to actually post it as a ROM.
Click to expand...
Click to collapse
Yes its CM9 and I know this is just a test that wont even boot and after i can get it to boot i will get permission. this is the cm9 base
And this is what i would like to port
Any luck with finding out the problem?
Sent from my HTC One V using xda app-developers app

LG FlashTool Error, can not boot D850

Hi, Guys
I went the following operation.
1) I was trying to root on D850.
It was success.
2) I was trying to install TWRP3.0 from TWRP manager.
But it failed. Then I could not install the TWRP2.8.
3) I have tried a factory reset from LGFlashTool.exe
I can not be factory reset.
Error occurs.
--------
[21:42:58] GPT Partition information Check.
[21:42:58] Idx | Part Name | Start TOT | Start DEV | End |
[21:42:58] 0 | modem | 32768 | - | 163839
[21:42:58] 1 | sbl1 | 163840 | - | 165887
[21:42:58] 2 | dbi | 165888 | - | 166911
[21:42:58] 3 | DDR | 166912 | - | 167935
[21:42:58] 4 | aboot | 167936 | - | 172031
[21:42:58] 5 | rpm | 172032 | - | 174079
[21:42:58] 6 | tz | 174080 | - | 176127
[21:42:58] 7 | pad | 176128 | - | 176135
[21:42:58] 8 | sbl1b | 176136 | - | 178183
[21:42:58] 9 | dbibak | 178184 | - | 179207
[21:42:58] 10 | rpmbak | 179208 | - | 181255
[21:42:58] 11 | tzbak | 181256 | - | 183303
[21:42:58] 12 | rpmf | 183304 | - | 185351
[21:42:58] 13 | tzf | 185352 | - | 187399
[21:42:58] 14 | sdif | 187400 | - | 188423
[21:42:58] 15 | abootf | 188424 | - | 192519
[21:42:58] 16 | spare1 | 192520 | - | 196607
[21:42:58] 17 | boot | 196608 | - | 229375
[21:42:58] 18 | persist | 229376 | - | 294911
[21:42:58] 19 | recovery | 294912 | - | 327679
[21:42:58] 20 | modemst1 | 327680 | - | 333823
[21:42:58] 21 | modemst2 | 333824 | - | 339967
[21:42:58] 22 | pad1 | 339968 | - | 339975
[21:42:58] 23 | fsg | 339976 | - | 346119
[21:42:58] 24 | fsc | 346120 | - | 347143
[21:42:58] 25 | ssd | 347144 | - | 348167
[21:42:58] 26 | pad2 | 348168 | - | 348175
[21:42:58] 27 | encrypt | 348176 | - | 349199
[21:42:58] 28 | eksst | 349200 | - | 350223
[21:42:58] 29 | rct | 350224 | - | 350239
[21:42:58] 30 | spare2 | 350240 | - | 360447
[21:42:58] 31 | misc | 360448 | - | 393215 Skip
[21:42:58] 32 | laf | 393216 | - | 458751
[21:42:58] 33 | fota | 458752 | - | 524287
[21:42:58] 34 | spare3 | 524288 | - | 557055
[21:42:58] 35 | drm | 557056 | - | 573439
[21:42:58] 36 | sns | 573440 | - | 589823
[21:42:58] 37 | mpt | 589824 | - | 655359
[21:42:58] 38 | eri | 655360 | - | 671743 Change
[21:42:58] ## [ERROR] : Partition Change eri Partition (Phone!=tot)
-----------------
Any ideas?
I have the same problem..
is there any solution for it.

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