[SM-P600][4.4.4]CyanogenMod 11 - Note 10.1 (2014) WiFi - Galaxy Note 10.1 (2014 Edition) Android Developmen

Here is my port of CM11 to SM-P600, a.k.a lt03wifi. Source was almost entirely derived from the official source for SM-T520 which has almost the exact same hardware.
What works:
screen
wifi
bluetooth
logcat
usb otg storage
sound
microphone
multitouch
auto brightness
external sdcard
gps
softkeys
softkey backlight
flashlight
accelerometer
gyroscope
magnetometer
light intensity sensor
pen (without fancy Samsung menus of course)
both cameras
What doesn't work:
nothing as far as tested
Issues:
performance cpu governor causes sleep of death
stock cm camera app issue (see post below)
Links and how to install
Download link
ODIN flashable recovery
You won't be able to install it via TWRP for SM-P600, it will be complaining about the device name not being lt03wifiue. This is because they are mixing it up with SM-P601, it should be fixed on their side. I haven't tried but it might be the case for other recoveries as well. If you receive this error, flash the above recovery with ODIN and install from there. As a side note, the above recovery has much less features compared to TWRP but it's much faster, so it's better for quick test iterations.
I would be really glad if you can install, test and see what issues you might get.
Sources:
For those interested, here is the device source: https://github.com/ayberkozgur/android_device_samsung_lt03wifi.
You'll need the modified exynos 5420 kernel source: https://github.com/ayberkozgur/android_kernel_samsung_exynos5420
XDA:DevDB Information
CyanogenMod 11 - Note 10.1 (2014) WiFi, ROM for the Samsung Galaxy Note 10.1 (2014 Edition)
Contributors
equilibriumtr
ROM OS Version: 4.4.x KitKat
ROM Kernel: Linux 3.4.x
Based On: CyanogenMod
Version Information
Status: Testing
Created 2014-11-05
Last Updated 2014-11-05

Thanks so much! I really appreciate the work you devs do. I'll install it this weekend and play with it. Thanks again!

Camera issue
There is a weird camera issue that I can describe as follows:
cm stock Camera app hangs when launched; after this, if killed, it will crash at its next launch and Torch will start crashing as well. This seems normal as the flashlight is probably using the same driver as the camera.
Torch will work if Camera is not launched at all.
If the Google Camera app is downloaded, installed and launched, the stock Camera app will properly launch and work until the next reboot, even if the Google Camera app is closed.
At this point, within the stock Camera app, if the mode is set to Video instead of Picture (the default), the Camera app will launch successfully even after a reboot. After launched, it can go back into the Picture mode no problem. So in other words, launching the Camera app in the Picture mode will freeze the camera and the flashlight until reboot.
This is very weird and I couldn't pin it down. The dmesg dump of the stock Camera app: http://pastebin.com/xPDYRG4X
dmesg dump of the Android Camera app: http://pastebin.com/WaqxQA5E
As you see, they are nearly exactly the same.
It could be a permission issue, a driver issue, a kernel module that's loaded on-demand, I have no idea at this point. I need help. Do any of you guys have any insight as to why this might be the issue?
Update: I tried the first ~10 camera apps in the market and ALL of them work perfectly fine. I think CM camera app is to blame here. Is anyone aware of such a thing on other devices?

I love you, where is your donation button , Sir? I dont use the camera and i can stand the sleep of death(although i know it can be fixed) but you have done something really important, with cm on p600 it is much more possible to be supported as a legacy device on many roms instead of only waiting for samsung and roms based on samsung software. Omnirom, PARom, Aopk are just a compile away with something like p600 working. Congratulations, and i still want to see your donate button.

Thank you!
I replaced the camera app with Google Camera, in recovery, and it seems there are no more problems with it.
Is there any way to make the pen work?

Make sure you are using CAF-NEW for the audio,media, and display HALs. Also, make sure that you have the proper commits in the kernel to coincide with the caf-new hals.

Got the lt03wifiue instead of lt03wifi problem.
I cant flash the recovery that you compiled. It says that md5 does not match on odin 3.07. any suggestions?
installed PhilZ Touch, supposedly based on cwm and still got the lt03wifieu name problem.
Can i change lt03wifieu to lt03wifi flashing a samsung rom from sammobil?

Well, I did flash the recovery I uploaded with Odin 3.09 and I didn't try Odin 3.07 so there might be a problem there. I think the device name should be lt03wifixx in one place and lt03wifi in another. I'll check this out along with the HAL issue tomorrow.
Yes, I forgot to test the pen and it doesn't work at all. Adding it to the list.
Thank you for your kindness, but I don't think I really deserve a donation here, all I did was adjust the obvious parameters in a ready-made source

equilibriumtr said:
Well, I did flash the recovery I uploaded with Odin 3.09 and I didn't try Odin 3.07 so there might be a problem there. I think the device name should be lt03wifixx in one place and lt03wifi in another. I'll check this out along with the HAL issue tomorrow.
Click to expand...
Click to collapse
META-INF>com>google>android>updater-script
For its to work i deleted the first line that says:
assert(
getprop("ro.product.device") == "lt03wifi" ||
getprop("ro.build.product") == "lt03wifi" ||
abort("This package is for device: lt03wifi; this device is " + getprop("ro.product.device") + "."); );
Click to expand...
Click to collapse
After that and a data wipe on TWRP the installation went smooth. This will let you to flash the rom and also install cwm recovery that comes with CM roms so you can say bye to TWRP; from then, the "lt03wifieu" is not a problem for me on cwm as @equilibriumtr said. I can now flash the zip with the lines that didnt let me before.
I think we could recover the lost security from deleting that line by adding something like this:
assert(
getprop("ro.product.device") == "lt03wifi" ||
getprop("ro.build.product") == "lt03wifi" ||
getprop("ro.product.device") == "lt03wifiue" ||
getprop("ro.build.product") == "lt03wifiue" ||
abort("This package is for device: lt03wifi; this device is " + getprop("ro.product.device") + "."); );
Click to expand...
Click to collapse
Can someone please add the lines instead of deleting them first and try flashing? Since with CWM i dont get the "lt03wifi is not lt03wifiue" error so I dont know if my theory is correct.

Will be testing
Thank you for porting cyanogenmod to our tablet. I will be testing it and report anything that goes wrong.

Does ART work or Dalvik only? 'cause AFAIK you can't select ART in the official Samsung firmware...
Also the Exynos 3 cm port reportedly has got the S Pen working (without samsung's s pen functionalities of course), so you might want to take a look at their sources / repos?
PS: Keep up the good work, having a fully functional cm rom one day would be amazing :fingers-crossed:

r4yN said:
Does ART work or Dalvik only? 'cause AFAIK you can't select ART in the official Samsung firmware...
Also the Exynos 3 cm port reportedly has got the S Pen working (without samsung's s pen functionalities of course), so you might want to take a look at their sources / repos?
PS: Keep up the good work, having a fully functional cm rom one day would be amazing :fingers-crossed:
Click to expand...
Click to collapse
By the way, I always had a working pen in my Note II LTE, even back when only cm 10.2 was available. But I'll look at the pen functionality soon because we will be needing it ourselves.

I looked at the device name issue, rebuilt the source and I got exact same build.prop with the original Samsung ROM:
Code:
ro.product.name=lt03wifixx #This changed
ro.product.device=lt03wifi
ro.build.product=lt03wifi
It's basically TWRP's fault for mixing up SM-P601 (lt03wifiue) and SM-P600 (lt03wifi), it should be fixed on their side. I couldn't try philz touch because goo.im was down. For now, try to use my recovery.
I also tried flashing the recovery I provided with Odin 3.07, it works. Something might be wrong on your side.

jakew02 said:
Make sure you are using CAF-NEW for the audio,media, and display HALs. Also, make sure that you have the proper commits in the kernel to coincide with the caf-new hals.
Click to expand...
Click to collapse
I don't think Qualcomm hardware applies here, lt03wifi is Exynos-based.

Good to see that someone finally directed his attention to CM11 for our P600.
Waiting a long time for a working CM11.
Keep up the good work!!:good:

equilibriumtr said:
Well, I did flash the recovery I uploaded with Odin 3.09 and I didn't try Odin 3.07 so there might be a problem there. I think the device name should be lt03wifixx in one place and lt03wifi in another. I'll check this out along with the HAL issue tomorrow.
Yes, I forgot to test the pen and it doesn't work at all. Adding it to the list.
Thank you for your kindness, but I don't think I really deserve a donation here, all I did was adjust the obvious parameters in a ready-made source
Click to expand...
Click to collapse
If I'm not mistaken, the difference between Tab models and Note models is that the Tabs don't have an S-Pen. So it's not surprising the S-Pen doesn't work when using a Tab ROM.

Hi ...
equilibriumtr said:
I don't think Qualcomm hardware applies here, lt03wifi is Exynos-based.
Click to expand...
Click to collapse
Dear friend , is this ROM stable for Daily Use ? ( I were porting Ubuntu phone based on TW ROMs but as you made this ... it can have a better base ) ... also , do you know how is the RAM used in this ROM ? ( how much free ? )
With best Wishes
HItman1376​

hitman1376 said:
Dear friend , is this ROM stable for Daily Use ? ( I were porting Ubuntu phone based on TW ROMs but as you made this ... it can have a better base ... but , do you know how is the RAM used in this ROM ? ( how much free ? ))
With best Wishes
HItman1376​
Click to expand...
Click to collapse
Slow down there, mate - you can't expect a fully stable "Daily-use ready" Rom after just one day
This is still in early testing...and I doubt you can call it "stable" when there is a sleep of death problem

thanks ...
r4yN said:
Slow down there, mate - you can't expect a fully stable "Daily-use ready" Rom after just one day
This is still in early testing...and I doubt you can call it "stable" when there is a sleep of death problem
Click to expand...
Click to collapse
Thanks for the Fast response Dear friend ... Well, if the sleep of dead is all , you can get rid of it by increasing the Min CPU Freq using any CPU manager app ... can you tell me about the RAM ? ( we have RAM management problem in UP so we need some more free RAM comparing with TW ROMs ) ... Thanks in advance
With Best Wishes
Hitman1376​

First off thanks for the port. I find stock android roms the best to run Linux on so if you could release a separate kernel with Virtual Terminal enabled (VT_config) it would be great.
As expected the rom only has the barebones on it and seems far more lightweight than even the most debloated rom. Merely not running the Samsung frameworks does wonders me thinks...

Related

[ROM] XNovathor Project 4.1.2 V1

XNovaThor Project​
About:​
This rom bases on the most current Android (4.1.2) Open Source Project repo That is what makes it special comparing to other custom JB roms like AOKP or CyanogenMod. This rom is fully AOSP, without stuff from AOKP or CM. Don’t even ask if i could add theme engine, custom lockscreen or other crap. Using clean rom we can reach 200mb of free ram without any task killer on board.
Working
RIL
Mobile Data
WiFi
USB tether
GPS
Leds
Audio
SD Card (internal storage)
App2SD
MTP & USB Mass Storage
Sensors
Vibrator
Project Butter
Bluetooth
Camera with camcorder
Torch
Youtube HQ
CPU sleep mode
OMX -> Hardware Decoders / Encoders
Gapps included
Added some apps (Apollo, DSP Manager, CM FIle Manager)
Known Issues
native WiFi Tethering
Fm Radio​
Download​http://d-h.st/czy
Instruction
wipe data, cache, dalvik-cache
flash rom via recovery
reboot and voila!
TIPS for performance!!
disable auto brightness
disable dial pad touch sounds​
Credits​FXP
smileydr0id​
Screenshots
​
Hi devswift I see some bugs on this rom is similar with your rom b4 (rom nightly TeamCanjica cyanogen 10.1)
But can you check again on KNOWN ISSUES list ? Xperia go doesn't have front camera, do you?
I'll download your great rom soon buddy
Hopefully this rom works perfectly for novathor device
Does this rom work with "Phantom Kernel"?
Can someone give us screenshot of "AnTuTu Benchmark" result?
What about battery life?
xGO dont have Frontal camera
Installation impossible, hang on (Error 7):
assert(getprop("ro.product.device") == "ST27i" || getprop("ro.build.product") == "ST27i" ||
getprop("ro.product.device") == "ST27a" || getprop("ro.build.product") == "ST27a" ||
getprop("ro.product.device") == "lotus" || getprop("ro.build.product") == "lotus");
After removing these lines from updater-script installation work and XGO boot without any problems.
ook i'm testing this AOSP rom... i din't have problem with installation.
first of all it's very fast and stable, free ram for me it's about 195 mb
I tried to flash Phantom Kernel but it doesn't boot (well i know that phantom it's for stock jb, but i tried anw )
For who like simply and clear roms, this is perfect!
And now for who ask for that antutu screen :good: not bad : 7370
Thanks a lot DevSwift1 for this one!
EDIT:
battery is good after 3/4 hours.
Only two things:
1) Wi fi switch off when the screen goes off
2) game crash (for now i tried only with candy crush saga lmao yeah i play that game )
Found Bugs:
Installation (see previous Post)
Location Service not working (Maps, Google+ and so on) (GPS-Location work)
Google Calendar not syncing (fixed by flashing gapps)
no novathor logo (kernel has freexperia logo and rom android)
No mobile Data (APN created by system on 1. boot and work but after 2. bot the apn ist deleted and i couldn´t create one)
Gesendet von meinem ST27i mit Tapatalk 4
thankss bro work great
thank's for sharing your work, but this ROM works in Stock Kenrel [LB]?
Hi devswift1, can u make this for locked bootloader? I install it and after install i flash stock kernel, but it begain but can't boot. It's not bootlop. do u know what i mean?
Try it a few day rom so fast but the batt so bad ..hope this will fix it after this tq
Sent from my ST27i using Xparent ICS Tapatalk 2
exelent rom to use in my xperia go bl unlocker thanks :d ..the only problem is not seeking q mobile networks :/
im tired searching for jb rom with no call lag
is this rom have call lag problem ????
one more q??
im using cm10 fxp234 can i flash it without change kernal
Battery drains too much. Not even a half day it holds energy.
Can you see whats draining?
Cpu usage?
gps not working
:/
Try GPS fix it does work it just takes a long time to find all satellites
Sent from my Xperia Go using xda app-developers app
@munjeni just a request as I see your looking at cm10.1 I've run that ROM with little success now using this ROM its close to done just a few bugs dialer hanging although I don't think its the dialer apk because viber does exactly the same thing its fine if you reboot the phone but after a few hours use dialer goes back to hanging an incoming and outgoing calls ( before any asks yes I turned off auto brightness and dialer sounds .
GPS takes forever to lock on gpx fix apk helps but still 15 + minutes to lock on.
Don't have a front camera to mess aout with
Sent from my Xperia Go using xda app-developers app
Our device is not designed for Cm, simple we will never get any cm rom full working! Qcom is device for development, Novathor is not! I looking for new phone but still waiting for best buy, no want to buy something like Novathor, must double chech before I buy new phone
Just to inform you, got CM10.2 booted! UI have error popup mesage, thats all. No usb adb so unable to debug problem. But good thing is audio is working without STE things so really strange audio is working!
I am realy sad about Novathor things, realy love my Xperia Go, its perfect phone with perfect size, but I can not get CM working in our device without source code, realy sad thing STE no want to give us source code for camera, audio, adm...etc, realy sad
Planing to buy Xperia ZL but since I not like big phones I realy have no idea which one phone to buy. There is no high end phones with 3.5 inch dispaly Do you have idea?

[x86][GApps] FrankenGApps 20140826 4.4.x *UPDATED! Stable! Universal!*

DO NOT FLASH THIS ON A TOUCHWIZ ROM. AOSP BASED ONLY
This is a custom GApps package I created to work with x86 devices (namely, our tab) as the normal GApps packages available are arm-only. (and no, to those who would ask, it's not as simple as downloading PA-GApps and swapping the update binary. The actual files therein are NOT x86 compatible, namely, the libs.)
UPDATE 1: With the release of 4.4. for the P5210, I am pleased to announce that this is now a full, complete, stable GApps package
It contains everything found in the PA-GApps stock zip plus:
-Hackers keyboard
-Root browser
-Xperia home
note that Hacker's keyboard and Xperia home are just there in case google keyboard / google home don't work out of the box. I don't anticipate any problems, but just to be sure. After some feedback / testing i'll remove these if people want. Root browser however is here to stay.
UPDATE 2:
As of the 20140823 build, this is now a UNIVERSAL x86 GApps package, meaning it will work on ANY x86 device running 4.4.x with zero tinkering to the zip. I did this by using a slightly modified pa-gapps updater-script coupled with an x86 update-binary.
UPDATE 3:
The 20140826 build is mostly bug fixes. The updater-script in the 20140823 build was broken. This is now fixed. Google + was broken. This is also fixed.
Google keyboard was broken. This too, is now fixed.
Tested this build myself. All is well.
For those who want a ROM to try this with, head over to @moonbutt74 's thread "odds, ends tests". He posted a successful 4.4.4 build from a few days ago on i think the 4th or 5th post (though it is by NO MEANS dd ready. We're working on it)
DOWNLOAD LINK IS BELOW.
If you want to use this for any reason other than personal use, ask me first, unless you just want to include a link on your ROM thread. If you do want to include a link in your ROM thread, link to this thread, not the download link below.
Download link:FrankenGApps-x86-20140826
old builds:
20140823 build:
FrankenGApps-x86-20140823.zip
The updater script in this build is broken. On top of that, if you fix it yourself, google + and google keyboard are borked.
20140814 build:
FrankenGApps-x86-20140814.zip
This build only works with the tab 3 10.1.
Old legacy hackey build:
FrankenGApps-x86-20140813.zip
there is absolutely no reason to flash the 20140813 build over newer builds. The 20140813 build is an unstable / hackey 4.2 gapps port, I'm just posting it for reference purposes. Naturally this build is unsupported. Please download the new build(s) from OP.
if i flash the build of 14th then i stuck on samsung boot logo. firmware was stock rooted deodexed 4.4.2. i have tryed it twice but always stuck on boot logo.
evilspawnas said:
if i flash the build of 14th then i stuck on samsung boot logo. firmware was stock rooted deodexed 4.4.2. i have tryed it twice but always stuck on boot logo.
Click to expand...
Click to collapse
I was sameway, so I just downloaded the update from "sammobile" installed it and used " super Su from chailfire to get root also used root explore to take out the apps I did not need.
@evilspawnas
 @ghforlife
Why did you flash this on a touchwiz rom?
This zip is meant for aosp based ROMs like cm11. (I tested this package on @moonbutt74's wip cm11 build, works like a charm)
Besides, TW Roms have GApps built in
Restl3ss said:
@evilspawnas
@ghforlife
Why did you flash this on a touchwiz rom?
This zip is meant for aosp based ROMs like cm11. (I tested this package on @moonbutt74's wip cm11 build, works like a charm)
Besides, TW Roms have GApps built in
Click to expand...
Click to collapse
Oh, sorry, but all the other devices have cm 11, it´s like my normal behaviour to flash gapps... shame on me
Just updated to 20140823.
As of now, this GApps package is universally compatible with all x86 devices running 4.4.x. Zero tinkering to the zip necessary.
Just updated to 20140826. This build fixes updater-script, google keyboard, and google +. Read "update 3" in OP for more info.
Nice
Another stone in building our road to CM11. Thanks.
I know many will used this update.
To be honest, I am forced to used the market, but try to stay away from C I A applications. I am sorry did I say C I A. My apologies it is the Alzheimer, I mean Google.
( Central Intelligent in Android)
so how would one go about installing this on a dell xps12 running intels official haswell build of kitkat?
(https://01.org/android-ia/downloads/android-4.4.2r1-ia0)
Manually place the files with root explorer?
thanks
i love your rom man..been running pimpdroid since day 1 of this tablet...this is the only kitkat rom for this device on kitkat..im bout to try your modified gapps ...im not near as a advanced user than you..and i dont really understand some of the things you talk about..but im gonna go ahead and ask...what are the advantges of installing this gapps package opposed to keeping the ones flashed with your pimpdroid rom?....sorry if this is a dume question...this is first ive seen of a modified gapps package...can u be more specfic bout what would be diff?...or is it jus a more like internal thing..and i wont really notice nothing diff being a nebie and all i guess..dont really consider myself such a nebie..but compared to dev like yourself..def..am..
lucky_515 said:
i love your rom man..been running pimpdroid since day 1 of this tablet...this is the only kitkat rom for this device on kitkat..im bout to try your modified gapps ...im not near as a advanced user than you..and i dont really understand some of the things you talk about..but im gonna go ahead and ask...what are the advantges of installing this gapps package opposed to keeping the ones flashed with your pimpdroid rom?....sorry if this is a dume question...this is first ive seen of a modified gapps package...can u be more specfic bout what would be diff?...or is it jus a more like internal thing..and i wont really notice nothing diff being a nebie and all i guess..dont really consider myself such a nebie..but compared to dev like yourself..def..am..
Click to expand...
Click to collapse
Hey brother don't dare to flash it.... It's not for a Touchwiz rom like pimpdroid or Cagrom., It's for AOSP rom like Omni rom , AOKP , CM11 , AICP etc....
Sent from my GT-S6802 using XDA Free mobile app
Thanks for the gapps, working on my 3830 AOSP rom.
Restl3ss said:
DO NOT FLASH THIS ON A TOUCHWIZ ROM. AOSP BASED ONLY
This is a custom GApps package I created to work with x86 devices (namely, our tab) as the normal GApps packages available are arm-only. (and no, to those who would ask, it's not as simple as downloading PA-GApps and swapping the update binary. The actual files therein are NOT x86 compatible, namely, the libs.)
UPDATE 1: With the release of 4.4. for the P5210, I am pleased to announce that this is now a full, complete, stable GApps package
It contains everything found in the PA-GApps stock zip plus:
-Hackers keyboard
-Root browser
-Xperia home
note that Hacker's keyboard and Xperia home are just there in case google keyboard / google home don't work out of the box. I don't anticipate any problems, but just to be sure. After some feedback / testing i'll remove these if people want. Root browser however is here to stay.
UPDATE 2:
As of the 20140823 build, this is now a UNIVERSAL x86 GApps package, meaning it will work on ANY x86 device running 4.4.x with zero tinkering to the zip. I did this by using a slightly modified pa-gapps updater-script coupled with an x86 update-binary.
UPDATE 3:
The 20140826 build is mostly bug fixes. The updater-script in the 20140823 build was broken. This is now fixed. Google + was broken. This is also fixed.
Google keyboard was broken. This too, is now fixed.
Tested this build myself. All is well.
For those who want a ROM to try this with, head over to @moonbutt74 's thread "odds, ends tests". He posted a successful 4.4.4 build from a few days ago on i think the 4th or 5th post (though it is by NO MEANS dd ready. We're working on it)
DOWNLOAD LINK IS BELOW.
If you want to use this for any reason other than personal use, ask me first, unless you just want to include a link on your ROM thread. If you do want to include a link in your ROM thread, link to this thread, not the download link below.
Download link:FrankenGApps-x86-20140826
Click to expand...
Click to collapse
Questions:
1. Does this work with LineageOS 14.1 [Android 7.1.2]
2. Where are the instructions on how to install this?
SerjSev said:
Questions:
1. Does this work with LineageOS 14.1 [Android 7.1.2]
2. Where are the instructions on how to install this?
Click to expand...
Click to collapse
These gapps are 6 years old and for older versions of android. Go to opengapps.org for android 7.1.2 based gapps.
And also why do you need instructions? Same as all gapps just flash the zip after flashing the rom
garylawwd said:
These gapps are 6 years old and for older versions of android. Go to opengapps.org for android 7.1.2 based gapps.
And also why do you need instructions? Same as all gapps just flash the zip after flashing the rom
Click to expand...
Click to collapse
Owh Hi, okay ?
Never thought someone would answer, the Tab 3 10.1 page on XDA is sadly dead, other models too for the Tab 3. And i still have the device! Ha. Did you like get notified when i replied to this thread that you checked? Because i was surprised, never thought again someone would answer to this old page part of XDA! I would love to talk with you and etc, cause im kinda lonely here lol, i know the device is old but old is gold! People can make many mods for it! Ill wait for your reply
SerjSev said:
Owh Hi, okay ?
Never thought someone would answer, the Tab 3 10.1 page on XDA is sadly dead, other models too for the Tab 3. And i still have the device! Ha. Did you like get notified when i replied to this thread that you checked? Because i was surprised, never thought again someone would answer to this old page part of XDA! I would love to talk with you and etc, cause im kinda lonely here lol, i know the device is old but old is gold! People can make many mods for it! Ill wait for your reply
Click to expand...
Click to collapse
I have a tab 3 10.1 WiFi so if anything pops up around these threads I always have a look.
The tablet is still working fine for me without any gapps on it as I've found gapps are extremely heavy on such an old tablet. Instead I opted for a microg installation and it works perfectly (even being able to play games like bullet force or fwd assault) but i mostly use it for reading and cooking and that kind of stuff which it is perfect for.
garylawwd said:
I have a tab 3 10.1 WiFi so if anything pops up around these threads I always have a look.
The tablet is still working fine for me without any gapps on it as I've found gapps are extremely heavy on such an old tablet. Instead I opted for a microg installation and it works perfectly (even being able to play games like bullet force or fwd assault) but i mostly use it for reading and cooking and that kind of stuff which it is perfect for.
Click to expand...
Click to collapse
Owhh, i see. I put this rom on my tab: https://forum.xda-developers.com/galaxy-tab-3/development-10/rom-lineageos-14-1-t3587761
It does lag sometimes, but i removed some of the GApps it came with. I mean, the second i removed playstore some other Google apps stopped working so i had to delete them too. It's a bit better, but i dont play games on it, it's still laggy i should've chosen another ROM but i guess this is fine. Which ones are you using? If you want we can talk in discord, or here if you want, which ever way you fele comfortable. I can share the apps i have and etc, since we have the same tablet, finally i found someone in 2020 having the same device as i have! Ha. I'm still here, so if you reply and i wont answer, i will answer later, i have schedule to follow that's why
Ill wait for your response, anywhere, if you want dm me here, chat in this thread or check my discord, send a friend request and tell me here ur name so I'd accept it. You can also find me in the XDA discord server.
garylawwd said:
I have a tab 3 10.1 WiFi so if anything pops up around these threads I always have a look.
The tablet is still working fine for me without any gapps on it as I've found gapps are extremely heavy on such an old tablet. Instead I opted for a microg installation and it works perfectly (even being able to play games like bullet force or fwd assault) but i mostly use it for reading and cooking and that kind of stuff which it is perfect for.
Click to expand...
Click to collapse
Hey, where have you been?

[Need-Help] Building CM-11.0 for Karbonn Titanium S1 Plus [Phicomm C230WJA]

Hi,
I am learning to build android ROM and trying to build CM-11.0 for Karbonn Titanium S1 Plus (msm8610) a.k.a Phicomm C230WJA. In the last three months after lots of efforts I progressed up to getting working kernel and going past the boot animation.
Now, I am facing the following problems when running the ROM on actual device. Your help would be greatly appreciated.
Note: I am building it from source using CAF kernel, display and media.
1. After flashing, first boot gets past boot animation and only Top status bar appears. No launcher, no icons, no wallpaper nothing only Cyanogenmod's debugging icon, battery icon shows up, rest of the screen remains blank.
2. Second boot (reboot) does not get past boot animation.
3. When screen locks itself, it gets totally white. This also happens when phone is powered off and charger plugged in. I mean screen turn off issue.
4. Lock screen appears as it should be with background image and few icons etc.
Please let me know if you require anything related to above device.
Regards,
SDhi
SOLVED
Thanks.
I resolved all issues by myself.
1. Somehow CM-11.0 forced me to include (not inherit) vendor/cm/config/common_full_phone.mk file to build all CM apps.
2. White screen issue was related to Backlight. Made modification to kernel and problem has been resolved.
Regards,
Sameer Dhiman
Need help
i also want to flash my titanium s1 plus rom. can u provide instruction how to flash using ur method and give link about ur cynogen 11 rom.
suthar7777 said:
i also want to flash my titanium s1 plus rom. can u provide instruction how to flash using ur method and give link about ur cynogen 11 rom.
Click to expand...
Click to collapse
Suthar,
It is still work in progress. I am working hard to make stable kernel. This is an essential foundation part.
Regards,
SDhi
Have you made it ?
adwiit said:
Have you made it ?
Click to expand...
Click to collapse
Yes, an alpha version of CM-11.0 but I am not satisfied with the voice coming out specifically from earpiece during call. I can not understand what the person at other end is saying. He/She can hear me loud and clear. It appears there is some bug in CM-11.0 framework with dual sim phone.
To till date I have tried the followings
1. CM-11.0 voice call quality issue with earpiece only. Other things works fine except GPS.
2. CAF-4.4.4 GPS module gives kernel panic and crashes. Stock Proprietary blobs are not compatible.
3. Omnirom-4.4 does not support dual sim. Fastest ROM among the others. Trying to port dual sim support in Omni-4.4 chances of success is 1% or 2%.
4. CM-12.1 incompatible stock RIL Proprietary blobs. Same IMEI assigns to both SIM slots and SIM does not get detected.
5. Omnirom-5.1 same as CM-12.1
6. CM-13.0 build does not even start gives /.txt, /5.txt or /6.txt error and stops. CM-13.0 major bug.
7. Omnirom-6.1 unknown reason gives Kernel Panic and crashes.
Currently, giving a try to CAF-4.4.2. Let's hope for the best. I have already invested lot of time (days, nights, weeks and months) but the outcome is only failures but I have not given up. There is still hope remaining inside me.
Regards,
SDhi
Thanks a lot for that. I would like to try that one. Have you posted that on the forum ?
adwiit said:
Thanks a lot for that. I would like to try that one. Have you posted that on the forum ?
Click to expand...
Click to collapse
I did not publicized it because basic function not working properly (Earpiece voice quality issue).
I sent you PM, please check it.
Regards,
SDhi
adwiit said:
Thanks a lot for that. I would like to try that one. Have you posted that on the forum ?
Click to expand...
Click to collapse
Have you downloaded ?
In-Call audio issue has been fixed but I would require some time to polish the ROM before beta release.
CM-11.0 Unofficial ROM for Karbonn Titanium S1 Plus Beta version released.
http://forum.xda-developers.com/and...mm-c230wxx-t3517145/post70034757#post70034757

AOSP VIBE Stable 1.3 Release 18072016

Time Appropriate Greetings fellas!!!
This is my take on the AOSP 6.0 for Lenovo K3 Note....
AOSP_VIBE is based on the latest VIBEUI Dev edition released for K3 Note by Lenovo and so it has the bugs that will be present in that release. This rom is developed with the idea to have the best of both words which is the simplicity of AOSP and the features of lenovo tied to K3 note, its a learning process for me and those who wish to test it or modify it are welcome to do it but please credit me and people in my credit section and also please comment in the thread what u have done to correct the bug because in the end all we need is Fully functioning ROM and knowledge of how to do it....
AOSP VIBE based on the latest firmware of VIBEUI with latest security updates. It is a cleaned up, no nonsense lighter edition. Face it, whatever rom we port it is not going to be better than VIBEUI compiled with the complete source of K3 note. So have the experience of AOSP in VIBE...have fun...
Known Bugs
Whatever the bugs listed for the latest vibeui.
this is a stable release....rooted, busybox, gapps, xposed but no MultiLanguage i.e only eng and cn...also replaced Maaxwave with DSP + which has Dolby, Beats, Surround, SRS, Clearaudio libs...
WARNING TEST THIS AT UR OWN RISK....BACKUP EVERYTHING U HAVE BEFORE DOING ANYTHING...
Boot into TWRP recovery
Wipe Dalvik Cache, Cache, System and Data
Flash the ROM
Reboot....
POST 1 Intro
POST 2 Changelog
ROM Download - AOSP VIBE Stable 1.3
AOSP VIBE Stable 1.3 Fix
ROM Screenshots
Created : 14/07/2016
Last Release : 18/07/2016
State : STABLE
Credits :
Lenovo for phone and software, hackerpower for the latest firmware, LeiShui, chainfire for supersu, osm0sis for busybox installation finally SuperR for SuperR's Kitchen with which the rom is made.
Stable 1
Initial release based on VibeUI DEV 3.5 1628
Stable 1.1
Updated to 1629, latest kernel, replaced Chrome with Naked Browser, fixed visual artifacts during brightness settings and lockscreen.
Stable 1.2
Fixed SecurityIT background setting issue, fixed random soft reboots during package uninstall changed the base rom from untouched 1629 to LeiShui 1629.
Stable 1.3
Now with preinstalled Gapps, xposed, init.d. Replaced Maaxwave with DSP+ which has Dolby, Beats, Surround, SRS, Clearaudio libs.
Thanks for the ROM
Thanks for the work and will come back after installing.
Thank you!Good work
Thanks! Installation went smoothly, however I did not continue testing due to lack of Playstore. Of course I could have added gapps. I continued with AOSP PURE 1.3 not as a daily driver.
Stable 1.2 with security it and reboot fixes up for download
Is phone correctly deep sleeping on this ROM?
Enviado de meu K3 Note usando Tapatalk
eteles said:
Is phone correctly deep sleeping on this ROM?
Enviado de meu K3 Note usando Tapatalk
Click to expand...
Click to collapse
never had an issue
st 1.3 released
everything is good except some module in xposed not working .
this rom is good!
would be better if dolby is pre-isntalled rather than dsp+ anyway just a minor problem, have removed the dsp and installed dobly. now its perfect!
this rom got some problem.
I think build.prop need to add ro.product.locale.region and ro.product.locale.language.
Because i notice my phone unable to find "dead trigger 2" and "unkilled " and after two line added. These game show in my play store.
And some xposed module unable to use it, wechatunrecalled.
Except this two minor bugs, this is a total good rom ! With good ram management.
Battery Backup and VR Mode?
Is the battery backup good? And is VR Mode present in the ROM?
Please update do dev 1631 cuz it's great rom! Btw I can't flash this version because of error 7 in twrp. Tried multiple times, downloaded twice and with different twrp versions
Wait. If the base is vibe dev.. how is it AOSP?
neocyke said:
Wait. If the base is vibe dev.. how is it AOSP?
Click to expand...
Click to collapse
I think they placed AOSP launcher on top of VIBE base and called it AOSP VIBE
neocyke said:
Wait. If the base is vibe dev.. how is it AOSP?
Click to expand...
Click to collapse
Its the mix of both
Can i flash it on my lenovo a7000-a plus?
ROM seems to work well. All major functions appear to be operational, and it is nice to see AOSP-ness (don't think that is a word, but hey). A few minor issues though:
Firstly, I removed the theme centre because it was frankly, annoying. I don't need themes, but one thing that gets broken during removal is the ability to select ringtones. I can download Zedge and pick something from there, but it's not the same. Is there a way to get the standard ringtone picker back?
Another little issue which does get annoying (I suppose you get used to it) is that scrolling acceleration seems to be exaggerated. I notice this on a lot of MTK ROMs, so I am not sure if this one is fixable.
The last little issue is that there is some Chinese text in the dialer and phone apps. I don't access to my K3 Note at the moment (I'm travelling and my mum uses it), but I was wondering how the Google Phone and Google Contacts app worked on this device:
https://play.google.com/store/apps/details?id=com.google.android.dialer&hl=en
https://play.google.com/store/apps/details?id=com.google.android.contacts&hl=en
If it were possible to replace the stock dialer and contacts app with the Google equivalent that would be awesome. If someone has some feedback that would be great. So far I am finding this the most stable ROM for this device
Edit: There's another issue, which I can't explain, how sometimes my internal storage goes "missing" and the entire contents of my internal storage gets moved to data/media/sdcard/, and the new internal storage becomes /data/media/sdcard/0, where there isn't any data. Really bizarre, and certainly disconcerting for my poor mum who now uses this phone.

[ROM][UNOFFICIAL][9.0.0] LineageOS 16.0 [BETA][2.01.2020]

Code:
/*
* Your (probably expired) warranty is now void.
*
* I am not responsible for bricked devices, dead SD cards,
* thermonuclear war, or you getting fired because the alarm app failed. Please
* do some research if you have any concerns about features included in this ROM
* before flashing it! YOU are choosing to make these modifications, and if
* you point the finger at me for messing up your device, I will laugh at you.
*/
IMPORTANT INFORMATION
Hi all,
This is an unofficial Pie build for the Galaxy Note 2 (t0lte) based on LineageOS 16.0.
Most of the ROM features are working, but the overall state might be not fully stable or not suitable for a daily use.
This work is heavily based on works of PoisonNinja, Option58 (thanks for device tree, kernel and device patches for LOS 14.1).
A full credit for Pie bringup goes to rINanDO (thanks for device tree, kernel and device patches for LOS 16.0).
What is working:
Boots
Audio (playback && recording)
Bluetooth
Graphics
Camera
Sensors
RIL (SMS, mobile data, calls)
Wifi
USB
Video playback (HW/SW)
What is not working:
GPS
Compass / Magnetic Sensor
SIM might be not detected / Data might be not available upon boot (reboot to fix).
LTE is not currently supported
Gapps installation can cause boot issues (?) - not tested
Supported variants:
fully tested on t0lteatt (SGH-I317, AT&T variant)
SGH-I317M
SGH-T889
Should also work for the following variants (not tested as of now):
GT-N7105/N7105T
SGH-T889V
SHV-E250S/E250K/E250L
SC-02E (SGH-N025)
Reporting bugs
When reporting reboots, please produce log below as follows
(using adb or terminal)
Code:
su
cat /proc/last_kmsg > /sdcard/last_kmsg.txt
and attach in this thread.
If reporting another issues
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.)
A rough timestamp of when the issue occurred is also useful.
Click to expand...
Click to collapse
Download:
ROM
TWRP
Root
Installation:
Make sure you are using the latest TWRP version.
Download the latest build and copy it to the phone
Factory reset in TWRP (Very important! Do not skip)
Flash LineageOS 16.0
Optional: Flash root package
Reboot
Be patient. The first boot will take between 5 - 15 minutes.
Set up everything and reboot again to get radio working
Credits:
rINanDO
forkbomb444
Option58
PoisonNinja
AdrianDC
A$teroid
Lord Boeffla
LineageOS team
Nameless ROM
I really do hope I didn't miss here anyone who deserves credits for their amazing works
If you like my work and want to thank me, feel free to buy a coffee
Source code: LOS 16.0
XDA:DevDB Information
LineageOS 16.0, ROM for the Samsung Galaxy Note II
Contributors
ChronoMonochrome, rINanDO, Option58, PoisonNinja, LineageOS team
Source Code: https://github.com/CustomROMs/android_local_manifests_i9300/tree/lineage-16.0
ROM OS Version: 9.x Pie
ROM Kernel: Linux 3.0.x
ROM Firmware Required: TWRP 3.2.x or newer
Version Information
Status: Testing
Created 2020-01-02
Last Updated 2020-01-02
Reserved
Reserved
Congrats on getting this working! :victory:
This build work for me cool thé ril work il so happy to see pie on this device thank
Hi,
thanks for your hardwork on this. Unfortunately doesnt work on SHV E250:
This package is for device: tolte, t0ltexx, gt-7105, t0lteatt, SGH-I317M...... this device is .
updater process ended with Error:7
Working on N7105 blazing fast. haven't tried with gapps.
sosodef_3000 said:
Hi,
thanks for your hardwork on this. Unfortunately doesnt work on SHV E250:
This package is for device: tolte, t0ltexx, gt-7105, t0lteatt, SGH-I317M...... this device is .
updater process ended with Error:7
Click to expand...
Click to collapse
I had a similar error with my t0lte. I was able to fix my error by installing the latest TWRP
qspitzer said:
I had a similar error with my t0lte. I was able to fix my error by installing the latest TWRP
Click to expand...
Click to collapse
what version of note 2 do you have?
sosodef_3000 said:
what version of note 2 do you have?
Click to expand...
Click to collapse
I have the AT&T (i317/t0lteatt) version
i test this rom on my Samsung Note 2 SHV-e250k and it was good but sometimes buggy
You can activate the LTE option on *#*#4636#*#* but sometimes the "No Internet" appears
Pico is the best to install gapps because when you use other it was not working because of "System is full" message
sometimes the facebook, messenger and youtube crash and i encounter the Couldn't sign in on Google
again it's a good rom and need some several fix tho, it was good already just fix the Google Account issue, the partition of Sys on the memory and some app crashes.
Thanks for your work on this ROM ChronoMonochrome!
I tested out your ROM on my Verizon Galaxy Note II (t0ltevzw), another Note II LTE variant. I had to modify the updater-script to get this ROM to flash successfully on my device. Everything seems to be working (sound, wifi, BT), except for RIL. I seem to be seeing a dialog on launch saying that the SIM is voice only.
I'm guessing this is due to some specific differences with t0ltevzw compared to other t0lte devices.
Let me know if there's anything I can do to help with testing.
Sent from my GM1917 using Tapatalk
CKTurbo128 said:
Thanks for your work on this ROM ChronoMonochrome!
I tested out your ROM on my Verizon Galaxy Note II (t0ltevzw), another Note II LTE variant. I had to modify the updater-script to get this ROM to flash successfully on my device. Everything seems to be working (sound, wifi, BT), except for RIL. I seem to be seeing a dialog on launch saying that the SIM is voice only.
I'm guessing this is due to some specific differences with t0ltevzw compared to other t0lte devices.
Let me know if there's anything I can do to help with testing.
Sent from my GM1917 using Tapatalk
Click to expand...
Click to collapse
Hi,
this variant of N7105 seems to be unsupported even by the official LineageOS sources.
You can try extract file libsec-ril.so from the stock and try use it (put the file in /system/lib).
If that works, it should be easy to add support for this phone variant as well.
ChronoMonochrome said:
Hi,
this variant of N7105 seems to be unsupported even by the official LineageOS sources.
You can try extract file libsec-ril.so from the stock and try use it (put the file in /system/lib).
If that works, it should be easy to add support for this phone variant as well.
Click to expand...
Click to collapse
Thanks @ChronoMonochrome. I've added the libsec-ril.so from the latest t0ltevzw KK stock ROM.
After doing so, the SIM card dialog warnings have gone away and the phone number is now detected on the Verizon SIM card.
Still no radio signal (at least for Verizon), but probably related to another issue.
t0ltevzw 4.4.2 KitKat Stock libsec-ril.so:
https://gitlab.e.foundation/e/devic...0ltecdma/proprietary/system/lib/libsec-ril.so
Sent from my GM1917 using Tapatalk
View attachment 4923377
CKTurbo128 said:
Thanks @ChronoMonochrome. I've added the libsec-ril.so from the latest t0ltevzw KK stock ROM.
After doing so, the SIM card dialog warnings have gone away and the phone number is now detected on the Verizon SIM card.
Still no radio signal (at least for Verizon), but probably related to another issue.
t0ltevzw 4.4.2 KitKat Stock libsec-ril.so:
https://gitlab.e.foundation/e/devic...0ltecdma/proprietary/system/lib/libsec-ril.so
Sent from my GM1917 using Tapatalk
View attachment 4923377
Click to expand...
Click to collapse
I didn't know it's a CDMA device. CDMA is not supported by the ROM, however the following can make it work.
Edit /system/build.prop as following:
Code:
rild.libpath=/system/lib/libsec-ril.so
(change rild.libpath=/system/lib/libsecril-shim.so to rild.libpath=/system/lib/libsec-ril.so)
This is very promising ROM even though the basic issue I can say it is constant need to restarting to use data and even the music app starting at any time to is also a problem. Apart from that, this is a dream come true
ChronoMonochrome said:
I didn't know it's a CDMA device. CDMA is not supported by the ROM, however the following can make it work.
Edit /system/build.prop as following:
Code:
rild.libpath=/system/lib/libsec-ril.so
(change rild.libpath=/system/lib/libsecril-shim.so to rild.libpath=/system/lib/libsec-ril.so)
Click to expand...
Click to collapse
Thanks for the suggestion! Yep, the Verizon Galaxy Note II is CDMA. I tried making the build.prop settings and then added the Verizon APN, but still no signal found.
Not a big deal, since I'm just using it on Wi-Fi at the moment.
As for Gapps issues, I have the Gapps pico package installed. However, I noticed that if you install a certain Google app (not sure, could be Google, Google Assistant, Gmail, etc), it causes bootloops to occur. I've had to factory reset a few times. Trying to figure which Google app causes this to occur.
Sent from my GM1917 using Tapatalk
shv e250k
KirikoSen said:
i test this rom on my Samsung Note 2 SHV-e250k and it was good but sometimes buggy
You can activate the LTE option on *#*#4636#*#* but sometimes the "No Internet" appears
Pico is the best to install gapps because when you use other it was not working because of "System is full" message
sometimes the facebook, messenger and youtube crash and i encounter the Couldn't sign in on Google
again it's a good rom and need some several fix tho, it was good already just fix the Google Account issue, the partition of Sys on the memory and some app crashes.
Click to expand...
Click to collapse
Hi thanks for this.
Did you change the updater script to get it to work? Because mine it justs stops trying to install and says this is for phones....etc
Also what bands (wcmda/LTe) did you select for the *#*#4636#*#* ? I tried this on my oreo 8.1 but this didnt find the IMEI or the sim
(Also it seems you tested this in the past...what new rom did you move on to?)
I've been investigating further into why this ROM starts bootlooping or experiences the display to blackout, particularly with t0ltevzw. One suspicious error seems to be with com.google.android.carriersetup:
2020-01-12 09:38:46.929 18771-18771/system_process E/PackageManager: updateAllSharedLibrariesLPw failed: Package com.google.android.carriersetup requires unavailable shared library com.verizon.provider; failing!
2020-01-12 09:38:49.606 18771-18879/system_process E/StorageManagerService: Failed to read field SystemLocale
android.os.ServiceSpecificException: Failed to read field SystemLocale (code 2)
at android.os.Parcel.createException(Parcel.java:1964)
at android.os.Parcel.readException(Parcel.java:1918)
at android.os.Parcel.readException(Parcel.java:1868)
at android.os.IVold$Stub$Proxy.fdeGetField(IVold.java:1112)
at com.android.server.StorageManagerService.getField(StorageManagerService.java:2427)
at com.android.server.StorageManagerService.copyLocaleFromMountService(StorageManagerService.java:984)
at com.android.server.StorageManagerService.handleDaemonConnected(StorageManagerService.java:977)
at com.android.server.StorageManagerService.access$900(StorageManagerService.java:173)
at com.android.server.StorageManagerService$StorageManagerServiceHandler.handleMessage(StorageManagerService.java:574)
at android.os.Handler.dispatchMessage(Handler.java:106)
at android.os.Looper.loop(Looper.java:193)
at android.os.HandlerThread.run(HandlerThread.java:65)
Click to expand...
Click to collapse
logcat: View attachment 4925079
These symptoms seems to start occurring if you install any of these `com.google.*` apps:
* Google Wellbeing
* Google Calendar
* Gmail
* Google Docs
* Google Slides
Finally got this to load on SHV-E250K but unfortunately internet doesnt work.
If Chronomonochrome can kindly fix that would be great.
Tried to reflash the old modem from 4.4.2 but that didnt help.
tried murata fix and flashed together still didnt work
Have gone back to:
lineage-14.1-20171208-nightly-t0ltekor-signed with wifi and internet working.
Maybe someone can take the wifi files from there and plug into lineage 16.0 that would be great

Categories

Resources