X10 mini pro with Linaro? - Sony Ericsson XPERIA X10 Mini

Linaro provides a performance improvement of 100%. These optimizations could be added to the xperia x10 mini, mini pro, or x8?
http://www.youtube.com/watch?v=mrQRYmYip6Q
https://wiki.linaro.org/Platform/Android
Thanks

Isn't Linaro just another Rom (for other devices of course)?
I don't think those "optimizations" will fit for our devices,
but I'm not a developer.
Bye

Maybe it hase some secret tweaks, but we have to wait for a dev opinion

Linaro are some optimizations for android. The video shows an official rom running on a Motorola Rarz and another with the same phone with Linaro. There roms on XDA with these optimizations for other devices.

Linaro is an ARM toolchain, not a ROM.
Sent from my GT-I9100 using Tapatalk 2

Yes Linaro should be applicable to the kernels built here.
As said above it is a toolchain - so compiler/linker/libraries.
The people to ask would be those developing kernels. They would need to build and use the linaro versions of gcc.
Looks like there are some minor differences in how to build a kernel using the linaro toolset as opposed to the standard gcc/etc

Related

Request linaro 4.7.1 toolchain CM9

I invite all community members with experience in compilation, testing with Linaro 4.7.1 toolchain,
know that the previous version and instability caused incopatibilidad CM9, but I think the new Linaro 4.7.1 toolchain is compatible,
Here is a link as a reference for a dev to compile your kernel and CM9, and works great.
http://forum.xda-developers.com/showthread.php?t=1630023
I think this may be possible, those who support this project by CM9 rom faster and have the benefits Linaro.​
LINARO INFORMATION​
Kernels can be compiled with Linaro toolchain, really nothing new. CM9 source code needs to be modified to compile with Linaro, IMO it isn't worth it. Also, why in the hell do we need any OpenWRT-related Linaro patch?

[Q] Linaro is the best?

What a difference a ROM system in Linaro?
Dunno if a rom compiled with linaro -o3 would make any notable difference on our device but again I have no idea and we can only wait for a dev's input on this.

[ROM]CM10.1 Linaro O3 Build With Basic Kernel 02/06

Thought I would share this. Its a build of CM10.1 from 02/04 with the Linaro updates added and compiled with linaro's 4.7 toolchain oh and it had O3 turned on
Notes:
All Credit got to the CM team and Sbrissen who got CM working for our phones
If CM doesn't include the commits and people like this enough I will most likely provide weekly updates
Features:
ROM
Compiled with Linaro's GCC 4.7.3 toolchain (01/13)
O3
KERNEL
Compiled with Linaro GCC 4.7.3
Updated wifi driver
Unofficial Voodoo sound driver (otherwise this has not been reviewed and approved by Supercurio)
OverClock up to 1.8 Ghz
CPU Undervolting
Downgrade to mali r2p4 which fixed graphic glitches
ChangeLog:
02/04 - initial release
02/06
Updated with CM base 02/06 at 7PM
Compiled kernel with the Linaro GCC 4.7.3 toolchain
Complete base has now been compiled the wtih Linaro GCC 4.7.3 toolchain (many things moved from 4.6)
Source:
Kernel source https://github.com/kejar31/android_k...msung_smdk4412
Credit:
gokhanmoral
codeworkx
sbrissen
CyanogenMod
supercurio
Tk-Glitch
Install:
Boot to recovery and make a backup
Wipe data/cache/dalvik
Flash ROM
Flash GAPPS
Reboot
Downlaods:
GAPPS
ROM FOR THE VZW NOTE 2 ONLY
Quick rundown from a Phoronix artificial that does a pretty good job of a quick breakdown on the differences.. It even includes some benchmarks
Note that Android is normally compiled with O2 and Os
For those unfamiliar with the different optimization flags, see the GCC optimize options documentation. The tested flags used in this article include:
-O0 - Reduce compilation time and make debugging produce the expected results. This is the default.
-O1 - Optimize. Optimizing compilation takes somewhat more time, and a lot more memory for a large function.
-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.
-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-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.
-Ofast - Disregard strict standards compliance. -Ofast enables all -O3 optimizations. It also enables optimizations that are not valid for all standard-compliant programs. It turns on -ffast-math and the Fortran-specific -fno-protect-parens and -fstack-arrays.
think i could flash on top of nightlies?
Re: [ROM]CM10.1 Linaro O3 Build With Basic Kernel 02/04
No clue what O3 is but sound fancy. Thanks for posting.
Sent from my SCH-I605 using Tapatalk 2
laxattack said:
think i could flash on top of nightlies?
Click to expand...
Click to collapse
Yea should not be a problem
Re: [ROM]CM10.1 Linaro O3 Build With Basic Kernel 02/04
Wasn't really keen to the specifics of O3 but googled it and it definitely helped my understanding (to a certain extent). Pretty interesting stuff. Either way thanks for this build
Sent from my SCH-I605 using Tapatalk 2
Breezer23 said:
No clue what O3 is but sound fancy. Thanks for posting.
Sent from my SCH-I605 using Tapatalk 2
Click to expand...
Click to collapse
Quick rundown from a Phoronix artificial that does a pretty good job of a quick breakdown on the differences.. It even includes some benchmarks
Note that Android is normally compiled with O2 and Os
For those unfamiliar with the different optimization flags, see the GCC optimize options documentation. The tested flags used in this article include:
-O0 - Reduce compilation time and make debugging produce the expected results. This is the default.
-O1 - Optimize. Optimizing compilation takes somewhat more time, and a lot more memory for a large function.
-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.
-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-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.
-Ofast - Disregard strict standards compliance. -Ofast enables all -O3 optimizations. It also enables optimizations that are not valid for all standard-compliant programs. It turns on -ffast-math and the Fortran-specific -fno-protect-parens and -fstack-arrays.
Hey Kejar, is it safe to flash over AOKP/CM roms?
trentb12 said:
Hey Kejar, is it safe to flash over AOKP/CM roms?
Click to expand...
Click to collapse
most likly but have not tried it soooo I can not really say
I'll try it out.
Re: [ROM]CM10.1 Linaro O3 Build With Basic Kernel 02/04
Flashed over today's nightly with no problems. On another note, how did you get around the missing extractfiles.sh script in the i605 device directory when trying to pull the proprietary files from the phone to do your builds?
fallingd0wn said:
Flashed over today's nightly with no problems. On another note, how did you get around the missing extractfiles.sh script in the i605 device directory when trying to pull the proprietary files from the phone to do your builds?
Click to expand...
Click to collapse
Use these
https://github.com/sbrissen/proprietary_vendor_samsung
Awesome stuff! Any way to get centered clock on this?
Kaleb Randleaxe said:
Awesome stuff! Any way to get centered clock on this?
Click to expand...
Click to collapse
This is simply an optimized CM build with my custom kernel.. if you are looking for extra features you need to reach out to the CM team
Every time I try to install, I get the same error:
assert failed: getprop("ro.product.device") == "
getprop("ro.product.device") == "i605" ||
getprop("ro.product.device") == "SCH-i605"
Any ideas? I've tried downloading it twice now.
dmbfan13 said:
Every time I try to install, I get the same error:
assert failed: getprop("ro.product.device") == "
getprop("ro.product.device") == "i605" ||
getprop("ro.product.device") == "SCH-i605"
Any ideas? I've tried downloading it twice now.
Click to expand...
Click to collapse
Are you using twrp and the first one at that? If so you need to update twrp or install CWM
kejar31 said:
Are you using twrp and the first one at that? If so you need to update twrp or install CWM
Click to expand...
Click to collapse
ahh gotcha! thanks!
Re: [ROM]CM10.1 Linaro O3 Build With Basic Kernel 02/04
Thank you kind sir! Gonna have to check this out tomorrow
Sent from my SCH-I605 using xda app-developers app
Re: [ROM]CM10.1 Linaro O3 Build With Basic Kernel 02/04
Sick! Love it.. Thanks!!!
Sent from my SCH-I605 using Tapatalk 2
kejar31 said:
Use these
https://github.com/sbrissen/proprietary_vendor_samsung
Click to expand...
Click to collapse
I don't see an i605 there either. Am I missing something?
Re: [ROM]CM10.1 Linaro O3 Build With Basic Kernel 02/04
Nice work kejar. Thanks.
Sent from my SCH-I605 using xda premium

[ROM][KK][4.4.4][LINARO/SABERMOD] SlimKat [WEEKLY BUILDS][9.0][FINAL]

v500/G Pad 8.3" SLIMKAT LINARO/SABERMOD WEEKLY BUILDS
Final Build 9.0 is ONLINE
DOWNLOAD
(infected server)
(md5sum included with all builds)
kernel code compiled with linaro arm-eabi-4.7.4 201406 toolchain
rom code compiled with with sabermod arm-linux-androideabi-4.8.5 201412 toolchain
-O3 optimizations
strict-aliasing rules
custom performance flags
+30 cherry-picks used
graphite
(buildbot: intel core i7 [email protected], asus p8z77-v, 16gb corsair vengeance pro 2133mhz cl11, nvidia gtx 970, 2x samsung 128gb ssd 840 pro raid 0 array,
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, 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.1 x64 "Rebecca" 3.13.0-39)
Disclaimer:
These builds are freshly compiled/synced from SlimRoms open-source code:
https://github.com/SlimRoms
latest linaro arm-eabi-4.7.4 used to compile the kernel code & sabermod arm-linux-androideabi-4.8.5 toolchains to compile ROM code
Special Thanks
SlimRoms Dev Team​
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!
Gapps = SlimRom Gapps
F.A.Q (Frequently Asked Questions)
What is the difference between these builds and the official builds?
These are unofficial builds of SlimKat 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.04 (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
Wow.. Thanks Again..
Removed.
I must have picked the right time to root etc my Pad as yet another superb ROM is now here to try.
Having just nandroid the CM 11 build I have now wiped and flashed this. It looks every bit as good as it does on my Nexus 5. I love the built in DPI as well as the inverted GAPPS, when the darker Slim is selected.
All seems well so far.
Thanks for sharing
Seems to work well, thanks!
Am I the only one who is having a problem with the screen being way too dim? Setting up the tablet after the first reboot was a pain. Could it be tied to the recovery version on my device? I am running TWRP 2.7.
Running fine. Swapped over from Demetris' build to see if any different. Did have a sound glitch when on Spotify that I don't notice here. Might be smoother as well or could be placebo effect.
new linaro/sabermod SlimKat build 4.9 is up!
regards.
Love the Rom, best I've tried. Can't seem to see 4.9 on the download server? Sorry if I'm being blind
Sent from my LG-V500 using Tapatalk
joegrant said:
Love the Rom, best I've tried. Can't seem to see 4.9 on the download server? Sorry if I'm being blind
Sent from my LG-V500 using Tapatalk
Click to expand...
Click to collapse
It's on the Slim website. Download section, weekly, and V500 device.
thanks, I was looking at the infected server from the Op. maybe that can be changed to the slimkat website if the infected server is not being updated. cheers
Sent from my MI 2S using Tapatalk
sorry, but i wasnt aware the upload failed.
i re-uploaded build 4.9
regards.
@infected_ Could you build the v5.PCFR release?
Thanks
Demetris said:
@infected_ Could you build the v5.PCFR release?
Thanks
Click to expand...
Click to collapse
yes.
Code:
SLIM_VERSION=Slim-4.4.2.build.5.PCFR-INFECTED-20140510-1607
i'll upload as soon has it finishes.
build 5 PCFR is up!
Ok I'll bite
What is PCFR...?
BTW excellent work yet again for the continuing support
vimesUK said:
Ok I'll bite
What is PCFR...?
BTW excellent work yet again for the continuing support
Click to expand...
Click to collapse
Whatever it is I lost root after flashing it
Sent from my LG-V500 using XDA Premium 4 mobile app
xyojimbox said:
Whatever it is I lost root after flashing it
Sent from my LG-V500 using XDA Premium 4 mobile app
Click to expand...
Click to collapse
go to developer settings and enable it...
Is it possible to install SuperSU from Chainfire on this after you enable root? It just feels a little faster.
infected_ said:
go to developer settings and enable it...
Click to expand...
Click to collapse
Infected Thanks for the GREAT effort you are putting into these ROMs, really appriciated.
You will be the first I will donate some beer to!!!

[EOL][KERNEL][UNOFFICIAL BUILDS] Boeffla Kernel Linaro/Uber

hi Guys,
as some of u maybe know from the Samsung Galaxy S3 area i'm doing a "build-service" for non official boeffla kernel builds and as we recently also got a boeffla kernel for the One Plus One device (kudos to @Lord Boeffla!) i want to share with u my self made Linaro (and here also Uber!) builds for that device in addition.
i'm gonna reduce redundancy and keep it shorter this time as about how this started and my primary intention can also be taken from the corresponding Samsung Thread
for people who asks themself: Linaro, Sabermod, Uber what? here some good info about it: https://docs.google.com/document/d/1C-ehLWl6XcStOmB30QHDA_DOdceXiGIyzXT_0eIg5nQ/edit (thx to @ViditM14 for providing the link!) and finally more infos about Uber Toolchains : https://plus.google.com/+ChetKener/posts/YzMJEkzPQgp and here: https://plus.google.com/communities...3/stream/ac70dec1-dad7-438d-baeb-f8d6644217fd
so without further ado let's go:
First of all the obligatorily Disclaimer:
As also written in the title please note these builds are UNOFFICIAL, are NOT SUPPORTED in any way by Lord Boeffla or myself and might be EVEN UNSTABLE! So take them as they are! As always flash them at your own risk and make a backup before flashing! (yeah take this advice seriously!)
About bugs: Before you report ANY issues with the linaro/uber builds provided here (doesn't matter which one!) FIRST TRY the non-linaro/uber official builds from HERE to see if they will be gone then. if they wont, you can go on and report your problems in the official boeffla kernel thread! I hope you understand that we have to treat and keep these builds here completely separate from official ones as they have in no terms something to do with each other! Not respecting this will force me to stop building further linaro/uber builds of boeffla kernel.
About benchmarks and comparisons between toolchains: It's common known that linaro (maybe also uber?) builds might give us higher benchmark rates and that seems great for some people (in fact it's pointless per se in my opinion ) so please if you really must, post them ONLY here and NOT in official boeffla kernel thread, thanks!
Now some more precise informations about what's going on here:
what i did:
the images are always build with original sources from official boeffla kernel OPO repositories from HERE
with some not worth to mention minor changes to be able to build it on my build environment with non stock toolchains.
all images are compiled from special branches from this forked Boeffla Kernel repository
with Toolchain Linaro 4.8.4-2014.11 + Toolchain Linaro 4.9.3-2015.03 - Credits to @Christopher83 for this pre-configured toolchains and Toolchain Sabermod 4.8.4 + Toolchain Sabermod (Uber) 4.9.3 - Credits to RobbieL811 for this preconfigured toolchains and thx to @ak for pointing me to it! Since 27.03.15 there are also images compiled with Toolchain Uber 4.9.3 20150501 + Toolchain Uber 5.1.1 20150501 + 6.0.0 20150501 (experimental) Credits and Thx to Uber Team!
all images are build with changes from following repos
for Boeffla Kernel CM13.0/CM12.1/CM12/CM11/CM11s/CM12s/COS12.1 Linaro/Uber :
https://github.com/zanezam/boeffla-kernel-cm-bacon
for Boeffla Kernel Oxygen OS 1.0.x Linaro/Uber :
https://github.com/zanezam/boeffla-kernel-oos-bacon
Beside of some additional fixes from my side all changes are mixed up and taken from repositories of ak
and DerRomtester so all credits to them!
...and also for letting me bother them! thank u guys for bring me "on track"!
before someone asks some last words about the used toolchain versions: i did a lot of testing before releasing these builds here
and the used Linaro / Uber versions are the maximum versions which can be used to make working builds with pure boeffla
kernel sources and without changing a lot of code in addition. So if u still want to try higher versions i must state here that Linaro versions
above 4.8 might produce a "messed up" image (without optimized flags and without warnings/errors etc. during build!)
which at the end gives you a boot-looping device and that might even be dangerous, so be aware !! if someone has a clue what exactly has to be
done to use higher versions of the corresponding toolchains (with respecting the original kernel source of course) feel free to let us know,
it will be definitely appreciated!
Update 15.03.15: found one reason and i'm able to use some higher versions now!
But with CM11s and CM11 only Uber 4.9.3 and Linaro 4.8.4 are possible!
builds with higher Linaro/Uber toolchain versions still doesn't boot!
what i will do:
build the source code with linaro/uber toolchain and (like Lord Boeffla usually does) provide a CWM image of recent boeffla kernel versions.
do a test for about 1 day with this builds and if they work without any big issues, add them here in the thread.
i will try to keep the linaro/uber toolchain as up-to-date as possible till the need of bigger code change will be reached.
not providing versions that are not released by Lord Boeffla yet.
not providing an image if it is not working - well of course not *g* but it will be marked as "canceled" then for info.
not change the source code to add/remove features or fix boeffla kernel related bugs.
not support the whole stuff here.
what i will maybe do (sooner or later):
provide ZZMoove Governor test builds if there are any new versions to test - more infos and discussions about ZZMoove Governor can be found HERE
maybe tune the build flags if some more linaro/uber experienced dev comes up with "better" ones (feel free to post and let me know, toolchain specialists! *g*)
Downloads:
CM11s (for stock roms!)
One Plus One Bacon CM11s stock builds
(for CM11s XNPH38R/44S/05Q *l484* linaro / *u493* uber)
CM12s (for stock roms!)
One Plus One Bacon CM12s stock builds
(for CM12s YNG1TAS0YL+YNG1TAS17L+YNG1TAS2I3 *l494* linaro / *u494* + *u521* + *u600* uber)
CM12.1s (for stock roms!)
One Plus One Bacon CM12.1s stock builds
(for CM12.1s YOG4PAS1N0 *l494* linaro / *u494* + *u521* + *u600* uber)
COS13.0 (for stock roms!)
One Plus One Bacon COS13.0 stock builds
(for COS13.0 ZNH0EAS2JK *l494* + *l531* linaro / *u494* + *u531* + *u600* + *u700* uber)
COS13.1 (for stock roms!)
One Plus One Bacon COS13.1 stock builds
(for COS13.1 ZNH2KAS1KN *l494* + *l531* linaro / *u494* + *u531* + *u600* + *u700* uber)
CM11 (for genuine roms!)
One Plus One Bacon CM11 builds
(for CM11 roms only! *l484* linaro / *u493* uber)
CM12 (offical nightlies and based ones)
One Plus One Bacon CM12 builds
(for CM12 roms only! *l493* linaro / *u493* + *u511* + *u600* uber)
CM12.1 (official builds and based ones)
One Plus One Bacon CM12.1 builds
(for CM12.1 roms only! *l494* linaro / *u494* + *u521* + *u600* uber)
Oxygen OS 1.x.x
One Plus One Bacon Oxygen OS 1.x.x builds
(*l494* linaro / *u494* + *u521* + *u600* uber)
Oxygen OS 2.x.x
One Plus One Bacon Oxygen OS 2.xx builds
(*l494* + *l531* linaro / *u494* + *u531* + *u600* uber)
CM13.0 (official builds and based ones) + Nethunter and "Cafcam" special builds
One Plus One Bacon CM13.0 builds
(for CM13.0 roms only! *l494* + *l531* linaro / *u494* + *u531* + *u600* + *u700* uber)
CM14.1 (official builds and based ones) + Nethunter special builds
One Plus One Bacon CM14.1 / LineageOS 14.1 builds
(for CM14.1 roms only! *l494* + *l531* linaro / *u494* + *u531* + *u600* + *u700* uber)
Mirror on Androidfilehost for all devices (only latest kernel versions)
Nethunter Install Packs:
For One Plus One Bacon Marshmallow Roms
finally i wanna throw out big thanks to Lord Boeffla for his great work and for accepting that i provide you these linaro/uber builds here! :highfive:
so now i wish u much fun with these builds and maybe some of u can drop a line about how they work for u
reserved
this one too
Welcome, will test the versions. I tried Ak with linaro. It's ready fast.
Sent from my A0001 using Tapatalk
---------- Post added at 11:40 PM ---------- Previous post was at 11:00 PM ----------
Test now the sabemod version, It's fast. Apps open very quick. Scrolling is Smooth en benchmarks are great 47350 point on antutu. Tomorrow I will test more. Thanks ZaneZam.
Sent from my A0001 using Tapatalk
I'd be interested to see what gains/ if any can be made with another toolchain, but I'm holding out on a CM version..
Sent from my One A0001 using XDA Premium 4 mobile app
yeah that's the question on this device the differences are hard to see but well not every system is the same and maybe "something" works significant better.
i had the impression the builds are a bit more "fluid" then stock and sabermod a bit more "fluid" then linaro but well atm with 2 tired eyes will have to look closer tomorrow
and yes i will add CM11 builds after Lord Boeffla releases im also curious about that CM11s-CM11 differences
ZaneZam said:
yeah that's the question on this device the differences are hard to see but well not every system is the same and maybe "something" works significant better.
i had the impression the builds are a bit more "fluid" then stock and sabermod a bit more "fluid" then linaro but well atm with 2 tired eyes will have to look closer tomorrow
and yes i will add CM11 builds after Lord Boeffla releases im also curious about that CM11s-CM11 differences
Click to expand...
Click to collapse
He has test builds up, I'm running it now.. It IS speed, it IS fluidity.. Its also stable, no worries.. If a new tool chain could make this any better, I'd be such a happy camper.. All in its own time.. Rest up, I'm here to test when you have time to build..
Sent from my One A0001 using XDA Premium 4 mobile app
Setting.Out said:
He has test builds up, I'm running it now.. It IS speed, it IS fluidity.. Its also stable, no worries.. If a new tool chain could make this any better, I'd be such a happy camper.. All in its own time.. Rest up, I'm here to test when you have time to build..
Sent from my One A0001 using XDA Premium 4 mobile app
Click to expand...
Click to collapse
Which one are you currently running? Also to anyone out there, what's the main differences between linaro and sabormod? Thanks.
ZaneZam said:
yeah that's the question on this device the differences are hard to see but well not every system is the same and maybe "something" works significant better.
i had the impression the builds are a bit more "fluid" then stock and sabermod a bit more "fluid" then linaro but well atm with 2 tired eyes will have to look closer tomorrow
and yes i will add CM11 builds after Lord Boeffla releases im also curious about that CM11s-CM11 differences
Click to expand...
Click to collapse
I'm sure he would link you to where he has builds already would love to see the difference having ran lord boeffla kernel for a while the cm11 version much alohas
Sent from my One A0001 using Tapatalk
My Phone reboot, after I overclock the Phone. It doesn't matter but Ak kernel is stable at 2.88
Sent from my A0001 using Tapatalk
ZaneZam version that you recommend? Linaro or Sabermod... Sorry my english but I'm using a translator ...
otisman said:
I'm sure he would link you to where he has builds already would love to see the difference having ran lord boeffla kernel for a while the cm11 version much alohas
Sent from my One A0001 using Tapatalk
Click to expand...
Click to collapse
actually I have access to Lord boefflas "other" reposities so I even could make a build but it's not official yet so I won't
mdv53 said:
My Phone reboot, after I overclock the Phone. It doesn't matter but Ak kernel is stable at 2.88
Sent from my A0001 using Tapatalk
Click to expand...
Click to collapse
Ah oc, well I had problems too (on every build also official stock and with pvs value of 5)
They are gone after using +50mv (+25mv is the actual standard) on all oc freq or at least on 2.88. So maybe that helps?
NeGriTa79 said:
ZaneZam version that you recommend? Linaro or Sabermod... Sorry my english but I'm using a translator ...
Click to expand...
Click to collapse
I cannot give any recommendations atm because the builds are too "fresh" had only about 1 day with each of them and also did rebuilds/reboots during that time. So I'm testing like u haven't found "mine" yet.
Any consideration for F2FS compatibility in future ?
Sent from my A0001 using Tapatalk
I'm afraid not from my side as stated in op I will make no changes to the source code except toolchain related ones, so it stays a pure boeffla. If Lord boeffla considers to add it it will also be in these builds here but I think he has already made his point clear about f2fs and not adding it. it's a benefits/problems question I guess.
suaverc118 said:
Which one are you currently running? Also to anyone out there, what's the main differences between linaro and sabormod? Thanks.
Click to expand...
Click to collapse
about the toolchain difference: well honesty i dunno exactly sabermod toolchain was made for the Sabermod AOSP rom and has AOSP related patches included
but i think the biggest difference between the used toolchains HERE is the difference in gcc version per se 4.7 and 4.8 but someone with more experience/knowledge can surely "spend more light" only thing i know for sure is that these versions are working
ZaneZam said:
actually I have access to Lord boefflas "other" reposities so I even could make a build but it's not official yet so I won't
Ah oc, well I had problems too (on every build also official stock and with pvs value of 5)
They are gone after using +50mv (+25mv is the actual standard) on all oc freq or at least on 2.88. So maybe that helps?
Click to expand...
Click to collapse
+25 did the trick. Thanks, sabemod kernel works great.
Sent from my A0001 using Tapatalk
@ZaneZam
finally your thread is born .... i'm here for eventually help ...
thanks a lot for your hard work. :good:
I have to thank, mate! Because of your work/help I was able to start this and thx good to know that u have an eye on
Very good kernel. With my personal config and ZZMoove governor OPO is very smooth with good battery performance.
Regards !

Categories

Resources