[ROM][v500][KK][4.4.4][LINARO/SABERMOD] CyanogenMod 11 [NIGHTLY BUILDS] - G Pad 8.3 Android Development

v500/G Pad 8.3" CYANOGENMOD 11 LINARO/SABERMOD NIGHTLY BUILDS
DOWNLOAD
(infected server)
(md5sum included with all builds)
CHANGELOG
http://www.cmxlog.com/11/v500/
kernel code compiled with linaro arm-eabi-4.7.4 201406 toolchain
rom code compiled with with sabermod arm-linux-androideabi-4.8.4 201411 toolchain (self-compiled)
FEATURES
-O3 optimizations
strict-aliasing rules
custom performance flags
+30 cherry-picks used
original google kk ui (holo)
graphite
(buildbot: intel core i7 [email protected], asus p8z77-v, 8gb corsair vengeance pro 2133mhz cl9, sapphire hd7970 dual-x, 2x samsung 128gb ssd 840 pro raid 0 array,
4x western digital wd3200aaks raid 10 array, samsung f1 1tb, seagate 2tb, silverstone olympia 1000w psu, antec 1200 high-tower)
(wc setup: swiftech apogee xt cpu-block, black-ice gtx-lite 240 radiator, 2x noiseblocker eloop b12-3 1900rpm fans, swiftech mcp355 water-pump, danger den 5.25" reservoir bay)
(Linux Mint 17 x64 "Qiana" 3.13.0-24)
Disclaimer:
These builds are freshly compiled/synced from CyanogenMod Rom open-source code:
https://github.com/CyanogenMod
latest linaro arm-eabi-4.7.x toolchain used to compile the kernel code & sabermod arm-linux-androideabi-4.8.x toolchains to compile ROM code
Special Thanks
CyanogenMod Dev Team = for the code sources.
Linaro Dev Team = for the arm-eabi toolchain
@sparksco = official sabermod toolchain sources
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
​[/CENTER]
XDA:DevDB Information
v500/G Pad 8.3 Linaro/Sabermod CyanogeMod 11 Builds, ROM for the LG G Pad 8.3
Contributors
infected_
ROM OS Version: 4.4.x KitKat
ROM Kernel: Linux 3.4.x
ROM Firmware Required: Latest CWM Recovery or TWRP recovery
Based On: CyanogenMod
Version Information
Status: Testing
Created 2014-02-25
Last Updated 2014-07-28

Flashing Instructions
First time installing:
Flash CWM recovery or TWPR recovery.
Option #1 = http://forum.xda-developers.com/showthread.php?t=2588671
Option #2 = http://forum.xda-developers.com/showthread.php?t=2641409
Place build zip + gapps on internal/external memory
reboot into recovery
wipe /system /data /cache
flash build + gapps
wipe cache
reboot
you're done, enjoy!
Coming from previous build version:
Flash build, flash gapps
you're done, enjoy!
Small video with installation instructions (thanks to @Tomsgt)

F.A.Q (Frequently Asked Questions)
What is the difference between these builds and the official builds?
These are unofficial builds of CyanogenMod 11 for the v500/LG G Pad.
ROM is built using the same source code (github) like the official one but with these following additions:
Compiled using boosted-tc arm-eabi 4.7.4 14.03 (kernel code) & boosted-tc arm-linux-androideabi 4.8.3 14.03 (rom code) toolchain compilers
May contain some custom cherry-picks. Always see changelog for details.
Cross-compiled using those custom toolchains results in a more smoother, faster, and battery friendly ROM
What is Toolchain?
In software, a toolchain is the set of programming tools that are used to create a product (typically another computer program or system of programs). The tools may be used in a chain, so that the output of each tool becomes the input for the next, but the term is used widely to refer to any set of linked development tools.
A simple software development toolchain consists of a compiler and linker to transform the source code into an executable program, libraries to provide interfaces to the operating system, and a debugger. A complex product such as a video game needs tools for preparing sound effects, music, textures, 3-dimensional models, and animations, and further tools for combining these resources into the finished product.
Click to expand...
Click to collapse
Source: http://en.wikipedia.org/wiki/Toolchain
What is SaberMod?
The term "SaberMod" is coming from:
SaberMod is a AOSP based ROM with some extra features added in and mostly from CyanogenMod. SaberMod started out pure AOSP when android 4.2.1 launched. Originally it was pure AOSP with a few extra features I ported over from CyanogeMod and linaro optimizations. Then I rebased everything off of rasbeanjelly because I liked many features found in rasbean. Since then I've modified a lot of the code so not much of it is rasbeanjelly based anymore. But you will still find some commonly used features found in rasbeanjelly. SaberMod is not a rasbeanjelly or CM clone, or KANG. Custom kernels are included for certain devices when available. These are personal builds we make for ourselves and originally became very popular in the nexus 7 forums. Features are very rarely added, and are built to SaberMod's team members liking. Currently there are two members of SaberMod working on this project. Myself and @jarjar124 . Please understand our time is limited and we are only two people who have lives, and do not have 25-50 members like CyanogenMod to add things. And our goal is not to add a bunch of features that bloat the system of the ROM.
Click to expand...
Click to collapse
Source: http://forum.xda-developers.com/show....php?t=2158698
What is Linaro?
Linaro is the place where engineers from the world's leading technology companies define the future of Linux on ARM. The company is a not-for-profit engineering organization with over 120 engineers working on consolidating and optimizing open source software for the ARM architecture, including the GCC toolchain, the Linux kernel, ARM power management, graphics and multimedia interfaces.
Click to expand...
Click to collapse
Source: http://www.linaro.org/linux-on-arm/
About GCC main compiler cflags
-O1
Optimize. Optimizing compilation takes somewhat more time, and a lot more memory for a large function. With -O, the compiler tries to reduce code size and execution time, without performing any optimizations that take a great deal of compilation time.
-O2
Optimize even more. GCC performs nearly all supported optimizations that do not involve a space-speed tradeoff. As compared to -O, this option increases both compilation time and the performance of the generated code. -O2 turns on all optimization flags specified by -O.
-O3
Optimize yet more. -O3 turns on all optimizations specified by -O2 and also turns on the -finline-functions, -funswitch-loops, -fpredictive-commoning, -fgcse-after-reload, -ftree-loop-vectorize, -ftree-slp-vectorize, -fvect-cost-model, -ftree-partial-pre and -fipa-cp-clone options.
-Os
Optimize for size. -Os enables all -O2 optimizations that do not typically increase code size. It also performs further optimizations designed to reduce code size.
Click to expand...
Click to collapse

Picking my G pad up tomorrow can't wait to get KitKat on it. Thanks so much to the devs that make all this happen. Would love to see some great kernels released (if there aren't already). Loving Franco linaro kernel on my N5. Does this ROM have any known bugs etc?
Sent from my Nexus 5 using XDA Premium 4 mobile app

alsheron said:
Picking my G pad up tomorrow can't wait to get KitKat on it. Thanks so much to the devs that make all this happen. Would love to see some great kernels released (if there aren't already). Loving Franco linaro kernel on my N5. Does this ROM have any known bugs etc?
Sent from my Nexus 5 using XDA Premium 4 mobile app
Click to expand...
Click to collapse
has far as i can tell, very few. same has original cm code. good for daily driver..
regards.

Removed.

Interesting. Signing in. I won't hop on the train just yet, though. Maybe next week

Removed.

can i update from cm11 offcial without data wipe if i have ART enabled ?

Nice to see some love from Portugal!!!

Uberzone said:
can i update from cm11 offcial without data wipe if i have ART enabled ?
Click to expand...
Click to collapse
yes, you should be ok, this was merged already. wipe caches, and has always, nandroid backup first, just in case.
regards.

Looping and timed out downloads...a,m on attempt no 10 now...any mirrors please?

Moe5508 said:
Looping and timed out downloads...a,m on attempt no 10 now...any mirrors please?
Click to expand...
Click to collapse
mirror added to OP.
regards.

Just got all set up all seems well, clean + snappy. About to enable art. Thank you for this build, it's only been a few min and I can see the performance difference from the official. :thumbup:
Sent from my LG-V500 using Tapatalk

build 20140226 is up on AFH, uploading to Goo.im..
regards.

Read from SD-Card
Does this build make it possible for 3 program to read from the sd-card (komix, pdf-reader, music, movieplayer). I think kitkat has a problem with it...

Booting the current build now (takes a while for art to optimize), one thing that's driving me crazy is the slow cm boot animation. Was that done on purpose? The circle spins faster on all other devices.
-VZW LG G2 VS980

annoyingduck said:
Booting the current build now (takes a while for art to optimize), one thing that's driving me crazy is the slow cm boot animation. Was that done on purpose? The circle spins faster on all other devices.
-VZW LG G2 VS980
Click to expand...
Click to collapse
Might this be the nerdiest feedback ever? The boot animation spinning too slow??
I tried mahdi for a very short while, I was satisfied with beanstalk, then I found this rom. Thank you.

android404 said:
Might this be the nerdiest feedback ever? The boot animation spinning too slow??
I tried mahdi for a very short while, I was satisfied with beanstalk, then I found this rom. Thank you.
Click to expand...
Click to collapse
Well, I gotta come up with something to complain about! I mention it because on my gs3 if the cm boot animation spun slow (like here) something bad was about to happen, like an unrecoverable sod.... It makes me anxious watching it!
Sent from my LG-V500 using Tapatalk

I lost root when I flashed this rom. Any idea why and if the normal root method will work again now that I'm on cm11?
Sent from my LG-V500 using xda app-developers app

Related

[ROM][KK][4.4.2][LINARO/SABERMOD] Omni Rom [WEEKLY BUILDS][20140213]

i9100 OMNI ROM 4.4.2 LINARO/SABERMOD WEEKLY BUILDS
Nightly Build 4.4.2 20140213 is ONLINE
Build/Sync Date: Feb 13 2014 07h:xx GMT+00h:00 Lisbon
DOWNLOAD
(Goo.im - Main Mirror)
DOWNLOAD
(AFH - Backup Mirror)
(md5sum included with all builds)
HOMEPAGE
http://infectedbuilds.com
Kernel code compiled with linaro arm-eabi-4.7.4 201404 toolchain
ROM code compiled with sabermod arm-linux-androideabi-4.8.3 201404 toolchain
ROM FEATURES
-O3 optimizations
strict-aliasing rules
custom performance flags
+30 cherry-picks used
sqlite fsync hack by dorimanx
white UI (following kitkat design)
Click to expand...
Click to collapse
CHANGELOG
https://changelog.omnirom.org/
https://gerrit.omnirom.org/#/q/status:merged+branch:android-4.4,n,z
Click to expand...
Click to collapse
These builds are hosted in my private account at MediaFire (purchased account - 120GB | no ads and really fast downloads!)
(buildbot: intel core i7 [email protected], asus p8z77-v, 8gb corsair vengeance pro 2133mhz cl9, sapphire hd7970 dual-x, 2x samsung 128gb ssd 840 pro raid 0 array,
2x western wigital wd3200aaks raid 0 array, samsung f1 1tb, silverstone olympia 1000w psu, antec 1200 high-tower)
(wc setup: swiftech apogee xt cpu-block, black-ice gtx-lite 240 radiator, 2x noiseblocker eloop b12-3 1900rpm fans, swiftech mcp355 water-pump, danger den 5.25" reservoir bay)
(Linux Mint 16 "Petra" x64 3.13.1)
DONATIONS
Please consider helping with this project development and hosting, by giving a small donation...
http://infectedbuilds.com is almost complete. i will try to get it up and running at full throttle by the end of this week.
i will need to buy a new dedicated hosting service... looking into the ones users suggested.
you can check the progress made by webdev @Jflima at his github: https://github.com/Jflima92/Omni
so, please donate what you can, so this project goes forward, and keeps getting better, and better.
you can donate, using this link: DONATE
thank you all,
regards.
infected_
Click to expand...
Click to collapse
Disclaimer:
These builds are freshly compiled/synced from Omni Rom open-source code:
https://github.com/omnirom
latest linaro arm-eabi-4.7.4 used to compile the kernel code & sabermod arm-linux-androideabi-4.8.3 to compile ROM code
Special Thanks
nims11, herna​ Omni Rom Dev Team
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
What is Omni ROM ?
Omni Rom Introduction
Omni Rom Homepage
Omni Rom Wiki
Omni Github
Omni Gerrit Code Review
Omni Bugtracker
Disclaimer
As you all know, every human being is responsible for their own action and reactions, so you are flashing this ROM on your own risk. I am not responsible for anything unexpected that happens to your device.
Downloads
i9100 Linaro/SaberMod Omni ROM NIGHTLY BUILDS
Gapps
Root Access
SuperSu
Installation Instructions
First Time User of Omni Rom
1. First of all download all 3 zip files and place them in your SD-card (Internal or external)
2. Backup of your current ROM
3. Wipe data/factory reset, wipe dalvik cache, wipe cache
4. Install zips from sd card, Omni ROM, Gapps and Super SU.
5. Reboot your device and wait until it boots, it might take some time to boot
- Already On Omni ROM
1. First of all download all 3 zip and put it in your SD-card (Internal or external)
2. Backup of your current ROM
3. Wipe system, wipe dalvik cache, wipe cache
4. Install zip from SD-card, Flash Omni ROM, Gapps and Super SU.
5. Reboot your device and you are good to go.
Working/Not Working
This are early nightly builds, so don't expect that everything will work as a stable release or have all the functions/options.
​
F.A.Q (Frequently Asked Questions)
What is the difference between these builds and the official builds?
These are unofficial builds of Omni Rom 4.4 for the i9100.
ROM is built using the same source code (github) like the official one but with these following additions:
Compiled using latest linaro arm-eabi 4.7.4 (kernel code) & sabermod arm-linux-androideabi 4.8.3 (rom code) toolchain compilers
Cross-compiled using those custom toolchains results in a more smoother, faster, and battery friendly ROM
What is Toolchain?
In software, a toolchain is the set of programming tools that are used to create a product (typically another computer program or system of programs). The tools may be used in a chain, so that the output of each tool becomes the input for the next, but the term is used widely to refer to any set of linked development tools.
A simple software development toolchain consists of a compiler and linker to transform the source code into an executable program, libraries to provide interfaces to the operating system, and a debugger. A complex product such as a video game needs tools for preparing sound effects, music, textures, 3-dimensional models, and animations, and further tools for combining these resources into the finished product.
Click to expand...
Click to collapse
Source: http://en.wikipedia.org/wiki/Toolchain
What is SaberMod?
The term "SaberMod" is coming from:
SaberMod is a AOSP based ROM with some extra features added in and mostly from CyanogenMod. SaberMod started out pure AOSP when android 4.2.1 launched. Originally it was pure AOSP with a few extra features I ported over from CyanogeMod and linaro optimizations. Then I rebased everything off of rasbeanjelly because I liked many features found in rasbean. Since then I've modified a lot of the code so not much of it is rasbeanjelly based anymore. But you will still find some commonly used features found in rasbeanjelly. SaberMod is not a rasbeanjelly or CM clone, or KANG. Custom kernels are included for certain devices when available. These are personal builds we make for ourselves and originally became very popular in the nexus 7 forums. Features are very rarely added, and are built to SaberMod's team members liking. Currently there are two members of SaberMod working on this project. Myself and @jarjar124 . Please understand our time is limited and we are only two people who have lives, and do not have 25-50 members like CyanogenMod to add things. And our goal is not to add a bunch of features that bloat the system of the ROM.
Click to expand...
Click to collapse
Source: http://forum.xda-developers.com/show....php?t=2158698
What is Linaro?
Linaro is the place where engineers from the world's leading technology companies define the future of Linux on ARM. The company is a not-for-profit engineering organization with over 120 engineers working on consolidating and optimizing open source software for the ARM architecture, including the GCC toolchain, the Linux kernel, ARM power management, graphics and multimedia interfaces.
Click to expand...
Click to collapse
Source: http://www.linaro.org/linux-on-arm/
About GCC main compiler cflags
-O1
Optimize. Optimizing compilation takes somewhat more time, and a lot more memory for a large function. With -O, the compiler tries to reduce code size and execution time, without performing any optimizations that take a great deal of compilation time.
-O2
Optimize even more. GCC performs nearly all supported optimizations that do not involve a space-speed tradeoff. As compared to -O, this option increases both compilation time and the performance of the generated code. -O2 turns on all optimization flags specified by -O.
-O3
Optimize yet more. -O3 turns on all optimizations specified by -O2 and also turns on the -finline-functions, -funswitch-loops, -fpredictive-commoning, -fgcse-after-reload, -ftree-loop-vectorize, -ftree-slp-vectorize, -fvect-cost-model, -ftree-partial-pre and -fipa-cp-clone options.
-Os
Optimize for size. -Os enables all -O2 optimizations that do not typically increase code size. It also performs further optimizations designed to reduce code size.
Click to expand...
Click to collapse
I will trie. Can you add toggles to change?
Sent from my GT-I9100 using Tapatalk
Infected thanks for your build.
I wil try this rom and report
Sent from my GT-I9100 using xda app-developers app
Please add 'Known Bug List' (guess atm same as nims11 builds) - thanks.
Downloading... Seems to take its time.
Slim-4.3.1||i9100¬Tapa2
Antutu scores please (detailed)
How to install cm10.2 on this? When trying to flash, error appears
Mate, add gapps in the OP, and a little how to...
A lot of people are changing from Dalvik to ART, it would be good some info and problems about this...
rsimas said:
I will trie. Can you add toggles to change?
Sent from my GT-I9100 using Tapatalk
Click to expand...
Click to collapse
code will be compiled as it is, from omni git. if they add toggles, then this builds will have toggles.
the only change for now, until i patch the build to compile the ROM code with linaro/sabermod, is the kernel code that's compiled with linaro arm-eabi 4.7.4 201310
Following thread. Hope OP gets updated with more details especially with what gapps to use. Or is anyone so kind there to spoonfeed me? Haha. And also guide me to be able to get ART working. Well, thanks a lot guys.
Sent from my GT-I9100 using xda app-developers app
./delete.sh
http://forum.xda-developers.com/showthread.php?t=2397942
infected_ said:
Just did a fast thread opening, and have to leave now. when i get home again, i'll arrange things better, and provably make a new build..
PS: gapps are the same used on nims11 builds, but i'll spoon-feed you guys..
GAPPS 4.4 (PA)
http://www.mediafire.com/folder/e68x4lsotd6xh/4.4
Info on pa's gapps: http://forum.xda-developers.com/showthread.php?t=2397942
Click to expand...
Click to collapse
Ok, let's try.
Nice job, mate.
thanks man but for me i will wait for more feature merging in rom and then update to 4.4 ....:good:
some screenshots plz
Thanks. Working great for the moment.
ammarsg said:
thanks man but for me i will wait for more feature merging in rom and then update to 4.4 ....:good:
Click to expand...
Click to collapse
I'm also waiting for more features, particularly the toggles in notification drawer.
Sent from my GT-I9100 using Tapatalk 4
sidrocks89 said:
I'm also waiting for more features, particularly the toggles in notification drawer.
Sent from my GT-I9100 using Tapatalk 4
Click to expand...
Click to collapse
yes at least feature in 4.3.1 ....we look forward not backword
Mobile data didn't worked :what: but @nims11 build worked fine. I've tested both
Sent from my GT-I9100 using XDA Premium 4 mobile app
OP, 2nd post and 3rd post updated..
build 4.4 20131120 is compiling, i'll upload soon.

[ROM][v500][KK][4.4.4][LINARO/SABERMOD] AOKP [WEEKLY BUILDS][20140719]

v500/G Pad 8.3" AOKP KitKat LINARO/SABERMOD WEEKLY BUILDS
Weekly 20140719 is ONLINE
Build/Sync Date: July 19 07h:46 GMT+1 Lisbon
DOWNLOAD
(infected server)
(md5sum included with all builds)
CHANGELOG
http://gerrit.aokp.co/#/q/status:merged/
HOMEPAGE
http://infectedbuilds.net
kernel code compiled with linaroarm-eabi-4.7.4 201404 toolchain
rom code compiled with with sabermod arm-linux-androideabi-4.8.3 201404 toolchain
FEATURES
-O3 optimizations
strict-aliasing rules
custom performance flags
+30 cherry-picks used
(buildbot: intel core i7 [email protected], asus p8z77-v, 8gb corsair vengeance pro 2133mhz cl9, sapphire hd7970 dual-x, 2x samsung 128gb ssd 840 pro raid 0 array,
4x western wigital wd3200aaks raid 10 array, samsung f1 1tb, silverstone olympia 1000w psu, antec 1200 high-tower)
(wc setup: swiftech apogee xt cpu-block, black-ice gtx-lite 240 radiator, 2x noiseblocker eloop b12-3 1900rpm fans, swiftech mcp355 water-pump, danger den 5.25" reservoir bay)
(Linux Mint 17 x64 "Qiana" 3.13.0-24)
DONATIONS NEEDED
if you can, please make a small donation... not for my work, 'cause this is a hobby for me, but to keep website and dedicated server up and running, so i can deliver fast and unlimited downloads, and host the builds.
thank you for your comprehension.
regards,
infected_
Click to expand...
Click to collapse
Disclaimer:
These builds are freshly compiled/synced from AOKP open-source code:
https://github.com/AOKP
latest linaro arm-eabi-4.7.4 toolchain used to compile the kernel code & sabermod arm-linux-androideabi-4.8.3 toolchain to compile ROM code
Special Thanks
AOKP Dev Team
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
​
Flashing Instructions
First time installing:
Flash CWM recovery or TWPR recovery.
Option #1 = http://forum.xda-developers.com/showthread.php?t=2588671
Option #2 = http://forum.xda-developers.com/showthread.php?t=2641409
Place build zip + gapps on internal/external memory
reboot into recovery
wipe /system /data /cache
flash build + gapps
wipe cache
reboot
you're done, enjoy!
Coming from previous build version:
Flash build, flash gapps
you're done, enjoy!
F.A.Q (Frequently Asked Questions)
What is the difference between these builds and the official builds?
These are unofficial builds of AOKP KitKat for the v500/LG G Pad.
ROM is built using the same source code (github) like the official one but with these following additions:
Compiled using boosted-tc arm-eabi 4.7.4 14.03 (kernel code) & boosted-tc arm-linux-androideabi 4.8.3 14.03 (rom code) toolchain compilers
May contain some custom cherry-picks. Always see changelog for details.
Cross-compiled using those custom toolchains results in a more smoother, faster, and battery friendly ROM
What is Toolchain?
In software, a toolchain is the set of programming tools that are used to create a product (typically another computer program or system of programs). The tools may be used in a chain, so that the output of each tool becomes the input for the next, but the term is used widely to refer to any set of linked development tools.
A simple software development toolchain consists of a compiler and linker to transform the source code into an executable program, libraries to provide interfaces to the operating system, and a debugger. A complex product such as a video game needs tools for preparing sound effects, music, textures, 3-dimensional models, and animations, and further tools for combining these resources into the finished product.
Click to expand...
Click to collapse
Source: http://en.wikipedia.org/wiki/Toolchain
What is Linaro?
Linaro is the place where engineers from the world's leading technology companies define the future of Linux on ARM. The company is a not-for-profit engineering organization with over 120 engineers working on consolidating and optimizing open source software for the ARM architecture, including the GCC toolchain, the Linux kernel, ARM power management, graphics and multimedia interfaces.
Click to expand...
Click to collapse
Source: http://www.linaro.org/linux-on-arm/
About GCC main compiler cflags
-O1
Optimize. Optimizing compilation takes somewhat more time, and a lot more memory for a large function. With -O, the compiler tries to reduce code size and execution time, without performing any optimizations that take a great deal of compilation time.
-O2
Optimize even more. GCC performs nearly all supported optimizations that do not involve a space-speed tradeoff. As compared to -O, this option increases both compilation time and the performance of the generated code. -O2 turns on all optimization flags specified by -O.
-O3
Optimize yet more. -O3 turns on all optimizations specified by -O2 and also turns on the -finline-functions, -funswitch-loops, -fpredictive-commoning, -fgcse-after-reload, -ftree-loop-vectorize, -ftree-slp-vectorize, -fvect-cost-model, -ftree-partial-pre and -fipa-cp-clone options.
-Os
Optimize for size. -Os enables all -O2 optimizations that do not typically increase code size. It also performs further optimizations designed to reduce code size.
Click to expand...
Click to collapse
Removed.
Thanks for all you're amazing hard work!!
What is the difference between this rom, and the other topic? Is this one not based on CM11?
@RaiderWill, is this rom more smooth or less smooth than 4-4-14?
bmxje said:
Thanks for all you're amazing hard work!!
What is the difference between this rom, and the other topic? Is this one not based on CM11?
@RaiderWill, is this rom more smooth or less smooth than 4-4-14?
Click to expand...
Click to collapse
its based on "kangs" from cyan code.
and its very smooth. the custom toolchains and compiling method do their job well done..
regards.
Thanks so much man! You have no idea how much better you make my tablet and therefor the day to day use! Flashing this now!
Edit:
In your FAQ post it states: "These are unofficial builds of CyanogenMod 11 for the v500/LG G Pad." I think it's accidentally copied from the CM11 rom? Just thought to let you know!
bmxje said:
Thanks so much man! You have no idea how much better you make my tablet and therefor the day to day use! Flashing this now!
Edit:
In your FAQ post it states: "These are unofficial builds of CyanogenMod 11 for the v500/LG G Pad." I think it's accidentally copied from the CM11 rom? Just thought to let you know!
Click to expand...
Click to collapse
typo. its corrected now.
I've flashed the rom now and have played with it for a bit. It's insanely smooth and fast! No unnessisary hickups, great overal speed ect.
I have a Samsung Galaxy S4 GPE which has identical hardware, the only difference being that the CPU is clocked at 1.9ghz by Samsung. On stock LG firmware this tablet was rediculously slow compared to my S4 tho. So i switched to Madhi first, which was still laggy, Same goes for CM11 itself. Then i switched to your CM11 Infected rom which was already good, but i was still slightly dissapointed with the devices preformance, but with this one...... It's at least as fast, if not faster than the official GPE rom on the S4
The only thing i absolutely loved about the CM11 infected rom was the standby time, last night i had 2% in 8 hours, even though i had wifi turned on, Ill test to night how it preforms with this rom, i hope it is the same!
Thank you again!
Do you btw think there is ever going to be a possible convertion from the GPE rom for the LG G Pad to the stock model? So v510 rom for v500 devices. In the topic dedicated to this on: http://forum.xda-developers.com/showthread.php?t=2564149 they seem to struggle with Wifi. What are your thoughts on this?
I am using this rom and for now all ok but my last rom is Mahdi but I like Moore dpi 290 + or -, have any config that I can change resolution? I try installing qremote here and will see if work.
Enviado de meu XT1033 usando Tapatalk
bmxje said:
Do you btw think there is ever going to be a possible convertion from the GPE rom for the LG G Pad to the stock model? So v510 rom for v500 devices. In the topic dedicated to this on: http://forum.xda-developers.com/showthread.php?t=2564149 they seem to struggle with Wifi. What are your thoughts on this?
Click to expand...
Click to collapse
Why do you need a GPE rom, if you have so many much better AOSP/CM based rom's?
is it because of the boot logo? :silly:
regards
m.mcrespo said:
I am using this rom and for now all ok but my last rom is Mahdi but I like Moore dpi 290 + or -, have any config that I can change resolution? I try installing qremote here and will see if work.
Enviado de meu XT1033 usando Tapatalk
Click to expand...
Click to collapse
edit build.prop, and change dpi for the one you want to use.
regards.
Ok thanks.
Enviado de meu LG-V500 usando Tapatalk
infected_ said:
Why do you need a GPE rom, if you have so many much better AOSP/CM based rom's?
is it because of the boot logo? :silly:
regards
Click to expand...
Click to collapse
Haha I hear you! No but there is no denying official GPE is buttery smooth! Just love the most stock you can get
Running it now and its very nice. Always partial to AOKP for some reason. Does this support ART? Thanks.
situman said:
Running it now and its very nice. Always partial to AOKP for some reason. Does this support ART? Thanks.
Click to expand...
Click to collapse
CM has ART broken on boot, but they have a patch ready to be merged as soon is reviewed..
AOKP don't know if ART is working, never tried it.. make a nandroid backup and try to switch to ART, after a clean install. if it doesnt boots, i'll try use CM patch on AOKP builds.
regards.
We Have A New Leader IMO..
Removed.
any chance use qremote in this rom?
Enviado de meu LG-V500 usando Tapatalk
RaiderWill said:
Infected.. I did not think it possible..
Only you could come up with a compile that would place your 4/4 CM build in 2nd ( A VERY CLOSE 2nd ) place..
But I have to admit.. I prefer this AOKP's interface/options slightly better than your CM's. Speedwise.. they are equal ( of course )
and since I clean wipe for EVERY update/install.. Zero issues to be had with your Excellent Work Sir.
Click to expand...
Click to collapse
Man.....I just got his CM build all setup and configured and you go and post this....
Now I got to do it all over again!
Sent from my LG-V500
m.mcrespo said:
any chance use qremote in this rom?
Enviado de meu LG-V500 usando Tapatalk
Click to expand...
Click to collapse
never tried it, but i dont think it will work.. give it a try tough and leave feedback here, if you can.
regards.

[ROM][KK][4.4.4][LINARO/SABERMOD] PARANOID ANDROID 4.6 [BETA 2]

v500/G Pad 8.3" PARANOID ANDROID 4.x LINARO/SABERMOD BUILDS
4.6 BETA 2 is ONLINE
Build/Sync Date: Sep 06 06h:xx GMT+1 Lisbon
DOWNLOAD
(infected server)
(md5sum included with all builds)
CHANGELOG
http://forum.xda-developers.com/showthread.php?p=54620455
HOMEPAGE
http://infectedbuilds.net
kernel code compiled with linaro arm-eabi-4.7.4 201404 toolchain
rom code compiled with with sabermod arm-linux-androideabi-4.8.4 201408 toolchain
FEATURES
-O3 optimizations
strict-aliasing rules
custom performance flags
+30 cherry-picks used
graphite
(buildbot: intel core i7 [email protected], asus p8z77-v, 8gb corsair vengeance pro 2133mhz cl9, sapphire hd7970 dual-x, 2x samsung 128gb ssd 840 pro raid 0 array,
4x western wigital wd3200aaks raid 10 array, samsung f1 1tb, silverstone olympia 1000w psu, antec 1200 high-tower)
(wc setup: swiftech apogee xt cpu-block, black-ice gtx-lite 240 radiator, 2x noiseblocker eloop b12-3 1900rpm fans, swiftech mcp355 water-pump, danger den 5.25" reservoir bay)
(Linux Mint 17 x64 "Qiana" 3.13.0-24)
Disclaimer:
These builds are freshly compiled/synced from AOSPA Legacy open-source code:
https://github.com/AOSPA-legacy
latest boosted arm-eabi-4.7.4 toolchain used to compile the kernel code & sabermod arm-linux-androideabi-4.8.4 toolchain to compile ROM code
Special Thanks
AOSPA Legacy Dev Team
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
​
XDA:DevDB Information
v500/G Pad 8.3 Linaro/SaberMod AOSPA Legacy KitKat Builds, ROM for the LG G Pad 8.3
Contributors
infected_
ROM OS Version: 4.4.x KitKat
ROM Kernel: Linux 3.4.x
ROM Firmware Required: Latest CWM Recovery or TWRP recovery
Based On: AOSPA Legacy
Version Information
Status: Testing
Current Stable Version: 4.45
Stable Release Date: 2014-08-03
Current Beta Version: 4.6 BETA 1
Beta Release Date: 2014-09-06
Created 2014-06-03
Last Updated 2014-09-12
Flashing Instructions
First time installing:
Flash CWM recovery or TWPR recovery.
Option #1 = http://forum.xda-developers.com/showthread.php?t=2588671
Option #2 = http://forum.xda-developers.com/showthread.php?t=2641409
Place build zip + gapps on internal/external memory
reboot into recovery
wipe /system /data /cache
flash build + gapps
reboot
you're done, enjoy!
Coming from previous build version:
Flash build, flash gapps
you're done, enjoy!
Gapps = Updated PA_GApps
F.A.Q (Frequently Asked Questions)
What is the difference between these builds and the official builds?
These are unofficial builds of AOSPA Legacy for the v500/LG G Pad.
ROM is built using the same source code (github) like the official one but with these following additions:
Compiled using linaro arm-eabi 4.7.4 14.04 (kernel code) & sabermod arm-linux-androideabi 4.8.3 14.05 (rom code) toolchain compilers
May contain some custom cherry-picks. Always see changelog for details.
Cross-compiled using those custom toolchains results in a more smoother, faster, and battery friendly ROM
What is Toolchain?
In software, a toolchain is the set of programming tools that are used to create a product (typically another computer program or system of programs). The tools may be used in a chain, so that the output of each tool becomes the input for the next, but the term is used widely to refer to any set of linked development tools.
A simple software development toolchain consists of a compiler and linker to transform the source code into an executable program, libraries to provide interfaces to the operating system, and a debugger. A complex product such as a video game needs tools for preparing sound effects, music, textures, 3-dimensional models, and animations, and further tools for combining these resources into the finished product.
Click to expand...
Click to collapse
Source: http://en.wikipedia.org/wiki/Toolchain
What is SaberMod?
The term "SaberMod" is coming from:
SaberMod is a AOSP based ROM with some extra features added in and mostly from CyanogenMod. SaberMod started out pure AOSP when android 4.2.1 launched. Originally it was pure AOSP with a few extra features I ported over from CyanogeMod and linaro optimizations. Then I rebased everything off of rasbeanjelly because I liked many features found in rasbean. Since then I've modified a lot of the code so not much of it is rasbeanjelly based anymore. But you will still find some commonly used features found in rasbeanjelly. SaberMod is not a rasbeanjelly or CM clone, or KANG. Custom kernels are included for certain devices when available. These are personal builds we make for ourselves and originally became very popular in the nexus 7 forums. Features are very rarely added, and are built to SaberMod's team members liking. Currently there are two members of SaberMod working on this project. Myself and @jarjar124 . Please understand our time is limited and we are only two people who have lives, and do not have 25-50 members like CyanogenMod to add things. And our goal is not to add a bunch of features that bloat the system of the ROM.
Click to expand...
Click to collapse
Source: http://forum.xda-developers.com/show....php?t=2158698
What is Linaro?
Linaro is the place where engineers from the world's leading technology companies define the future of Linux on ARM. The company is a not-for-profit engineering organization with over 120 engineers working on consolidating and optimizing open source software for the ARM architecture, including the GCC toolchain, the Linux kernel, ARM power management, graphics and multimedia interfaces.
Click to expand...
Click to collapse
Source: http://www.linaro.org/linux-on-arm/
About GCC main compiler cflags
-O1
Optimize. Optimizing compilation takes somewhat more time, and a lot more memory for a large function. With -O, the compiler tries to reduce code size and execution time, without performing any optimizations that take a great deal of compilation time.
-O2
Optimize even more. GCC performs nearly all supported optimizations that do not involve a space-speed tradeoff. As compared to -O, this option increases both compilation time and the performance of the generated code. -O2 turns on all optimization flags specified by -O.
-O3
Optimize yet more. -O3 turns on all optimizations specified by -O2 and also turns on the -finline-functions, -funswitch-loops, -fpredictive-commoning, -fgcse-after-reload, -ftree-loop-vectorize, -ftree-slp-vectorize, -fvect-cost-model, -ftree-partial-pre and -fipa-cp-clone options.
-Os
Optimize for size. -Os enables all -O2 optimizations that do not typically increase code size. It also performs further optimizations designed to reduce code size.
Click to expand...
Click to collapse
I will try your new rom
theres was issue with previous build, thats why i removed it. i recompiled and fixed the errors.
linaro/sabermod PA Legacy v500 4.4 beta 1 is online!
(full wipe recommended due to massive changes)
regards.
http://forum.xda-developers.com/showpost.php?p=53237381&postcount=433
Could it be that hover is missing?
just flashed the newest rom and can't find it.
4.4 RC1 is up.
no changelog published atm of build upload .
Darkmasterhk said:
Could it be that hover is missing?
just flashed the newest rom and can't find it.
Click to expand...
Click to collapse
source code from aospa legacy github is untouched. i just optimize and cross-compile the code with custom toolchains...
only thing i see related maybe is: settings -> display -> notifications -> notifications peek
maybe is not available to "legacy" devices, only nexus. try asking on the G+ community.
regards.
Running great so far!
Sent from my LG-V500 using Tapatalk
"Hover" is finally available to Legacy branch. Latest RC1 (20140612) i've uploaded just now have it included.
regards.
infected_ said:
"Hover" is finally available to Legacy branch. Latest RC1 (20140612) i've uploaded just now have it included.
regards.
Click to expand...
Click to collapse
Nice !!
Thanks for your work man.
I have a slight issue though, I need to unmount my sdcard but I can't find the option in the "Storage" menu of the parameters where it used to be. Any suggestion ? (I search but could find anything)
Thanks !
<EDIT>
The "umount /storage/sdcard1" does unmount the sdcard but not as the option in the Paramaters/storage menu did.
My goal is to use AParted to make 2 ext4 partitions on the SDcard to use with Mount2SD and to have 80Gb of storage. Unfortunately, AParted asked me to unmount it even when unmounted.
So way around might be with a SD adaptator and a linux computer but I still wonder where this option of the storage menu went ???
</EDIT>
I am facing issue while increasing volume over safe headset level. When I click on OK button my tab reboots.. Anyone else? @infected_
Sent from my Nexus 5 using XDA Premium 4 mobile app
Going to try it!!
EDIT:
Back to CM for me...this rom was not smooth, and OS would 'cut out' at weird times for no reason, and only show a banner that said ("Sorry, rom (or OS) stopped working") - but all would seem OK, and functions worked just fine. This only happened when making some setting change, if I recall correctly. Hover did work - (whatever that does as I never got to use it but it showed it activated)
Frankly, IMO, it had nothing better, or newer than CM.
Cal-123 said:
Going to try it!!
EDIT:
Back to CM for me...this rom was not smooth, and OS would 'cut out' at weird times for no reason, and only show a banner that said ("Sorry, rom (or OS) stopped working") - but all would seem OK, and functions worked just fine. This only happened when making some setting change, if I recall correctly. Hover did work - (whatever that does as I never got to use it but it showed it activated)
Frankly, IMO, it had nothing better, or newer than CM.
Click to expand...
Click to collapse
I have never faced issues mentioned by you. The only issue I faced so far is the reboot when you click on safe volume popup. Try SlimKat.. Its a good ROM. I am not a big fan of cm. But its just a personal opinion.
Sent from my Nexus 5 using XDA Premium 4 mobile app
seems RC2 its on is way...
Code:
/mnt/Building/aospa/out/target/product/v500/pa_v500-4.4-RC2-20140617.zip
well.. at least the name tag is already there...
but i'll wait official announcement. more commits can be merged before release.
linaro/sabermod AOSPAL 4.4 RC2 is online.
regards.
After a brief test this is very, very smooth. Thank you.
is that rom which you compiled today 4.4.4 or second compiled rc2?
4.4 FINAL/STABLE is ONLINE!
regards.

[ROM][v500][LP][5.1.1_r6][SM-4.8.x] Resurrection Remix LP SaberMod Builds [v5.5.2]

{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
G Pad 8.3"/v500 RESURRECTION REMIX LP SABERMOD BUILDS
v5.5.2 is Online
Changelog
LOLLIPOP 5.1.1_r6
DOWNLOAD
ROM CODE COMPILED WITH LATEST SABERMOD ARM-LINUX-ANDROIDEABI 4.8.5 (20150716)
KERNEL CODE COMPILED WITH LATEST SABERMOD ARM-EABI 4.8.5 (20150716)
SOURCE: https://github.com/infected-lp/android_kernel_lge_v500/tree/infected
- -O3 Optimization (thumb & arm)
- strict-aliasing
- frame-pointers
- Linker Optimizations
- Graphite Flags
- CPU Arch specific flags
- Other GCC flags to optimize the build
BUGS REPORT
REPORT BUGS ONLY:
- AFTER A CLEAN INSTALL
- USING STOCK KERNEL
- USING GAPPS FROM THIRD POST
- NO MODS OF ANY SORT
BUILDBOT:
(intel core i7 3770k, asus p8z77-v, 24gb corsair vengeance pro 2133mhz cl11, msi gtx 970, 1x samsung 250gb 850 evo + samsung 128gb 840 pro, 4x western wigital wd3200aaks raid 10 array, samsung f1 1tb, seagate 2tb, silverstone olympia 1000w psu, antec 1200 high-tower)
(wc setup: swiftech apogee xt cpu-block, ek crossflow xtx 240 radiator, 2x scythe slipstream 120mm 1900rpm fans, swiftech mcp355 water-pump, danger den 5.25" reservoir bay)
DISCLAIMER:
These builds are freshly compiled/synced from ResurrectionRemix Rom open-source code:
https://github.com/ResurrectionRemix
SPECIAL THANKS
Resurrection Remix Dev Team = for the source code.
​
XDA:DevDB Information
G Pad 8.3, ROM for the LG G Pad 8.3
Contributors
infected_
Source Code: http://github.com/ResurrectionRemix
ROM OS Version: 5.1.x Lollipop
ROM Kernel: Linux 3.4.x
ROM Firmware Required: Latest TWRP
Based On: CyanogenMod
Version Information
Status: Testing
Created 2015-03-01
Last Updated 2015-07-24
EXTRA INFO
GAPPS
http://forum.xda-developers.com/lg-...pp-minimal-gapps-gapps-lp-20150107-1-t2997368
All packages contains backup-script, so you dont have to flash gapps, everytime you flash a new build.
RECOVERY
http://forum.xda-developers.com/lg-g-pad-83/orig-development/recovery-twrp-2-8-2-0-v500-t2968472
F.A.Q (Frequently Asked Questions)
What is the difference between these builds and the official builds?
These are unofficial builds of Resurrection Remix LP for the v500/LG G Pad.
ROM is built using the same source code (github) like the official one but with these following additions:
Compiled using sabermod arm-eabi 4.8.5 (kernel code) & sabermod arm-linux-androideabi 4.8.5 (rom code) toolchain compilers
May contain some custom cherry-picks. Always see changelog for details.
Cross-compiled using those custom toolchains results in a more smoother, faster, and battery friendly ROM
What is Toolchain?
To compile any Android project like a kernel or ROM, developers need to use a toolchain. As per elinux.org, a toolchain is a set of distinct software development tools that are linked (or chained) together by specific stages such as GCC, binutils and glibc (a portion of the GNU Toolchain). Toolchains may contain a debugger or a compiler for a specific programming language as C++ or other. Quite often, the toolchain used for embedded development is a cross toolchain, or more commonly known as a cross compiler. All the programs (like GCC) run on a host system of a specific architecture (such as x86) but produce binary code (executables) to run on a different architecture (e.g. ARM).
The most commonly used toolchain is GCC, initially released almost 20 years ago. A lightly modified GCC is used by Google during the AOSP build process. While Google’s GCC is considered to be the most stable toolchain around, it has some pretty decent competitors like Linaro and SaberMod. These projects are known to boost the overall system performance significantly on many devices. Let’s take a quick look to see the background of these projects.
Click to expand...
Click to collapse
Source: http://elinux.org
What is SaberMod?
The term "SaberMod" is coming from:
the SaberMod project. Initially the project was used on SaberMod ROM for the Nexus 7 WiFi model (2013). This continued onto the Nexus 4 and Nexus 5 through help of user donations. The toolchains are based on GNU GCC 4.8, 4.9, and 5.0 with AOSP patches forward ported into GNU GCC. SaberMod also provides extra optimization features unlike Google’s toolchain, which gives options for a few amendments in the ROM itself to add more performance gains, such as graphite loop transformation optimizations. SaberMod tracks other utilities from GNU in the toolchain source components that are generally more up to date than AOSP or Linaro toolchains, and almost always tracks the development branches of GNU GCC for the latest patches and bug fixes. The toolchain ecosystem of SaberMod is very different from AOSP, using complex scripts to provide quick, up to date toolchains. Other toolchain sources like the AOSP based toolchain build repository have been heavily modified to work in favor of the way SaberMod toolchains are produced. I have approached some toolchain developers to ask a few questions.
Click to expand...
Click to collapse
Source: http://www.xda-developers.com/interview-with-developers-of-sabermod-hyper-toolchains/
What is Linaro?
Linaro is the place where engineers from the world's leading technology companies define the future of Linux on ARM. The company is a not-for-profit engineering organization with over 120 engineers working on consolidating and optimizing open source software for the ARM architecture, including the GCC toolchain, the Linux kernel, ARM power management, graphics and multimedia interfaces. The Linaro organization was founded in mid 2010 and almost instantly its developers started to work on many projects, including GCC-based toolchains for ARM. Android builds compiled with Linaro started to pop up a few months later. Ever since the Linaro group was founded, users praised it for decent performance improvements and overall snappiness. Linaro uses its own solutions and is constantly updated. You can download the newest version of the toolchain directly from the web page.
Click to expand...
Click to collapse
Source: http://www.linaro.org/linux-on-arm/
About GCC main compiler cflags
-O1
Optimize. Optimizing compilation takes somewhat more time, and a lot more memory for a large function. With -O, the compiler tries to reduce code size and execution time, without performing any optimizations that take a great deal of compilation time.
-O2
Optimize even more. GCC performs nearly all supported optimizations that do not involve a space-speed tradeoff. As compared to -O, this option increases both compilation time and the performance of the generated code. -O2 turns on all optimization flags specified by -O.
-O3
Optimize yet more. -O3 turns on all optimizations specified by -O2 and also turns on the -finline-functions, -funswitch-loops, -fpredictive-commoning, -fgcse-after-reload, -ftree-loop-vectorize, -ftree-slp-vectorize, -fvect-cost-model, -ftree-partial-pre and -fipa-cp-clone options.
-Os
Optimize for size. -Os enables all -O2 optimizations that do not typically increase code size. It also performs further optimizations designed to reduce code size.
Click to expand...
Click to collapse
Unable to change keyboard
Install the ROM and runs well.... but now I can't change keyboards -_-;
I uninstall and reinstall Swiftkey and no dice. I try to enable Swiftkey but it force closes saying that Settings has unfortunately stopped.
samuraix21 said:
Install the ROM and runs well.... but now I can't change keyboards -_-;
I uninstall and reinstall Swiftkey and no dice. I try to enable Swiftkey but it force closes saying that Settings has unfortunately stopped.
Click to expand...
Click to collapse
you posted on two threads the same question...
wipe /system partition and /data and do a clean install.
My Favorite Rom!!
This Is My Favorite Rom On my LG 4X HD!!! Thx @_infected For Building This Rom on our Device
Edit: Gonna Test This After download! XD
Hi great ROM, the first ROM outside stock I've used. Everything works perfectly for me except for the dropouts on wifi. I believe its more too often than occasional dropouts I've experienced when on stock. And it doesn't matter if I sit beside my router or away from it.
Aside from that problem, everything works very smoothly and I am planning to stick unto this ROM forever. Thanks.
From the recommended TWRP ... I'm guessing that one must be on 4.2.2 base ?
Seems Stable Its Smooth Too Im Staying With This Rom
hyperxguy said:
From the recommended TWRP ... I'm guessing that one must be on 4.2.2 base ?
Click to expand...
Click to collapse
you have to try for yourself. i used to change "base" 422/442 because of the brightness issue, but that was months ago, dont know how that subject is now.
@infected_ you should fix the UI this is not look like Resurrection Remix LP.
Jansxel said:
@infected_ you should fix the UI this is not look like Resurrection Remix LP.
Click to expand...
Click to collapse
lol, ok... which ROM UI is it then?
and how can you compare, if i am the only one compiling RR for v500? you cant compare to other devices, you know that right?
It Look Like CM12 LoL XD
Jansxel said:
It Look Like CM12 LoL XD
Click to expand...
Click to collapse
RR is CM code based, and then RR dev's add their features/options/preferences to the code..
liking this ROM. A lot of usefull mods.
Very nice
This is what I want!!!
Jansxel said:
This is what I want!!! View attachment 3195254View attachment 3195255
Click to expand...
Click to collapse
im liking this rom but I am having wifi issues all of a sudden.
new v3.5.7 (20150306) is up.
regards.
Very easily my new best fast ROM...bye bye LG Stock KitKat...hello LL...
@infected_ whats new?

[ROM][v500][LP][5.1.1_r6][SM-4.8.x/4.8.x] CyanogenMod 12.1 SaberMod Builds

{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
v500/G Pad 8.3" CYANOGENMOD 12.1 SABERMOD BUILDS
Android Lollipop 5.1.1_r6
DOWNLOAD #1
(main server)
DOWNLOAD #2
(backup server)
(md5sum included with all builds)
ROM CODE COMPILED WITH LATEST SABERMOD ARM-LINUX-ANDROIDEABI 4.8.x (20150704)
KERNEL CODE COMPILED WITH LATEST SABERMOD ARM-EABI 4.8.x (20150704)
SOURCE: https://github.com/infected-lp/android_kernel_lge_v500/tree/infected
- -O3 Optimization (thumb & arm)
- strict-aliasing
- frame-pointers
- Linker Optimizations
- Graphite Flags
- CPU Arch specific flags
- Other GCC flags to optimize the build
CHANGELOG
http://www.cmxlog.com/12.1/v500/
(buildbot: intel core i7 3770k, asus p8z77-v, 24gb corsair vengeance pro 2133mhz cl11, msi gtx 970, 1x samsung ssd 850 evo + 1x samsung ssd 840 pro, 4x western digital wd3200aaks raid 10 array, samsung f1 1tb, seagate 2tb, silverstone olympia 1000w psu, antec 1200 high-tower)
(wc setup: swiftech apogee xt cpu-block, black-ice gtx-lite 240 radiator, 2x noiseblocker eloop b12-3 1900rpm fans, swiftech mcp355 water-pump, danger den 5.25" reservoir bay)
Disclaimer:
These builds are freshly compiled/synced from CyanogenMod Rom open-source code:
https://github.com/CyanogenMod
Special Thanks
CyanogenMod Dev Team = for the code sources.
​
XDA:DevDB Information
v500/G Pad 8.3 SaberMod CyanogeMod 12.1 Unofficial Builds, ROM for the LG G Pad 8.3
Contributors
infected_
Source Code: https://github.com/CyanogenMod
ROM OS Version: 5.1.x Lollipop
ROM Kernel: Linux 3.4.x
ROM Firmware Required: Latest TWRP recovery
Based On: CyanogenMod
Version Information
Status: Testing
Created 2015-03-30
Last Updated 2015-07-12
F.A.Q (Frequently Asked Questions)
What is the difference between these builds and the official builds?
These are unofficial builds of CyanogenMod 12.1 for the v500/LG G Pad.
ROM is built using the same source code (github) like the official one but with these following additions:
Compiled using sabermod arm-eabi 4.8.5 (kernel code) & sabermod arm-linux-androideabi 4.8.5 (rom code) toolchain compilers
May contain some custom cherry-picks. Always see changelog for details.
Cross-compiled using those custom toolchains results in a more smoother, faster, and battery friendly ROM
What is Toolchain?
To compile any Android project like a kernel or ROM, developers need to use a toolchain. As per elinux.org, a toolchain is a set of distinct software development tools that are linked (or chained) together by specific stages such as GCC, binutils and glibc (a portion of the GNU Toolchain). Toolchains may contain a debugger or a compiler for a specific programming language as C++ or other. Quite often, the toolchain used for embedded development is a cross toolchain, or more commonly known as a cross compiler. All the programs (like GCC) run on a host system of a specific architecture (such as x86) but produce binary code (executables) to run on a different architecture (e.g. ARM).
The most commonly used toolchain is GCC, initially released almost 20 years ago. A lightly modified GCC is used by Google during the AOSP build process. While Google’s GCC is considered to be the most stable toolchain around, it has some pretty decent competitors like Linaro and SaberMod. These projects are known to boost the overall system performance significantly on many devices. Let’s take a quick look to see the background of these projects.
Click to expand...
Click to collapse
Source: http://elinux.org
What is SaberMod?
The term "SaberMod" is coming from:
the SaberMod project. Initially the project was used on SaberMod ROM for the Nexus 7 WiFi model (2013). This continued onto the Nexus 4 and Nexus 5 through help of user donations. The toolchains are based on GNU GCC 4.8, 4.9, and 5.0 with AOSP patches forward ported into GNU GCC. SaberMod also provides extra optimization features unlike Google’s toolchain, which gives options for a few amendments in the ROM itself to add more performance gains, such as graphite loop transformation optimizations. SaberMod tracks other utilities from GNU in the toolchain source components that are generally more up to date than AOSP or Linaro toolchains, and almost always tracks the development branches of GNU GCC for the latest patches and bug fixes. The toolchain ecosystem of SaberMod is very different from AOSP, using complex scripts to provide quick, up to date toolchains. Other toolchain sources like the AOSP based toolchain build repository have been heavily modified to work in favor of the way SaberMod toolchains are produced. I have approached some toolchain developers to ask a few questions.
Click to expand...
Click to collapse
Source: http://www.xda-developers.com/interview-with-developers-of-sabermod-hyper-toolchains/
What is Linaro?
Linaro is the place where engineers from the world's leading technology companies define the future of Linux on ARM. The company is a not-for-profit engineering organization with over 120 engineers working on consolidating and optimizing open source software for the ARM architecture, including the GCC toolchain, the Linux kernel, ARM power management, graphics and multimedia interfaces. The Linaro organization was founded in mid 2010 and almost instantly its developers started to work on many projects, including GCC-based toolchains for ARM. Android builds compiled with Linaro started to pop up a few months later. Ever since the Linaro group was founded, users praised it for decent performance improvements and overall snappiness. Linaro uses its own solutions and is constantly updated. You can download the newest version of the toolchain directly from the web page.
Click to expand...
Click to collapse
Source: http://www.linaro.org/linux-on-arm/
About GCC main compiler cflags
-O1
Optimize. Optimizing compilation takes somewhat more time, and a lot more memory for a large function. With -O, the compiler tries to reduce code size and execution time, without performing any optimizations that take a great deal of compilation time.
-O2
Optimize even more. GCC performs nearly all supported optimizations that do not involve a space-speed tradeoff. As compared to -O, this option increases both compilation time and the performance of the generated code. -O2 turns on all optimization flags specified by -O.
-O3
Optimize yet more. -O3 turns on all optimizations specified by -O2 and also turns on the -finline-functions, -funswitch-loops, -fpredictive-commoning, -fgcse-after-reload, -ftree-loop-vectorize, -ftree-slp-vectorize, -fvect-cost-model, -ftree-partial-pre and -fipa-cp-clone options.
-Os
Optimize for size. -Os enables all -O2 optimizations that do not typically increase code size. It also performs further optimizations designed to reduce code size.
Click to expand...
Click to collapse
screenshots in attachment.
GAPPS
http://forum.xda-developers.com/android/software/app-minimal-gapps-gapps-lp-20150107-1-t2997368
All gapps packages on the previous link, contain a backup script, so you dont need to flash them everytime you flash a new build.
Many thanks to @Deltadroid for these.
Sweet. Going to install in a bit.
Sent from my SM-N900V using Tapatalk
you may need to wipe /data for first install, i had to. and 5.0.2 gapps are compatible.
infected_ said:
you may need to wipe for first install, i had to. and 5.0.2 gapps are compatible.
Click to expand...
Click to collapse
Is this 5.1 r3?? Base on 4.2.2 or 4.4???
infected_ said:
you may need to wipe for first install, i had to. and 5.0.2 gapps are compatible.
Click to expand...
Click to collapse
When you say a wipe are you talking about a Factory Reset, or something more specific? If more specific, what do I need to wipe?
darksidesh007 said:
When you say a wipe are you talking about a Factory Reset, or something more specific? If more specific, what do I need to wipe?
Click to expand...
Click to collapse
A Factory Reset (standard wipe in TWRP)
There is a report of success with a dity flash over CM12, but I had to do a Factory Reset in order to get it to boot, as did the OP.
Works OK so far. I do get a Settings crash when pressing Sounds. Also noticed minor issue of AM/PM option for clock greyed out.
@infected_
This commit fixes the settings crash.
https://github.com/Euphoria-OS/andr...mmit/6285ecbfbf3ff95b33e02549d6defc00ede727d9
Deltadroid said:
@infected_
This commit fixes the settings crash.
https://github.com/Euphoria-OS/andr...mmit/6285ecbfbf3ff95b33e02549d6defc00ede727d9
Click to expand...
Click to collapse
thanks! will add it on next build.
infected_ said:
thanks! will add it on next build.
Click to expand...
Click to collapse
@Rick Roll deserves most (all) of the credit. He posted the link.
20150331 is up.
Downloading now. Just a suggestion, but maybe the download link in the OP go directly to the 12.1 folder.
Also, which boot is this based, 4.2.2 or 4.4.2? I'm on 4.2.2 and all seems fine.
Under this one (Infected's 12.1) the recent downloads are located here.
One *has* to do a factory reset & be using Deltandroid's 5.0.2 gapps. One thing, I had by using Red's 16 kernel was getting a 'orange' tint on blue icons, so reverted to Red's 15 & all is great!! Using Infected's 2015-3-31 ROM. :good:
*Edit:* Using 4.4.2 bootloader. Get a vague dimming when booting to recovery, but only a second & then recovery is bright.
Cal said:
Under this one (Infected's 12.1) the recent downloads are located here.
One *has* to do a factory reset & be using Deltandroid's 5.0.2 gapps. One thing, I had by using Red's 16 kernel was getting a 'orange' tint on blue icons, so reverted to Red's 15 & all is great!! Using Infected's 2015-3-31 ROM. :good:
*Edit:* Using 4.4.2 bootloader. Get a vague dimming when booting to recovery, but only a second & then recovery is bright.
Click to expand...
Click to collapse
How can dimming when booting to Recovery be relevant to any ROM you are using?
uzi2 said:
How can dimming when booting to Recovery be relevant to any ROM you are using?
Click to expand...
Click to collapse
It was really not relevant to the ROM - only that recovery latest TWRP could dim if using a 4.4.2 bootloader.
Was stated with the latest TWRP recovery - best to use a 4.2.2 Base.
Another (minor) issue - While they fixed the FC for Sounds, the selections made do not stick with a reboot.
I'm using this one instead of CM 12...can't understand the seemingly lack of interest in this version. Anyone have a comment? It runs solid and smooth and just upgraded to the latest version and all seems fine.
Comments regarding this version?
I've been running it since the first nightly. I think it's great...Just very small issues which were resolved fast.

Categories

Resources