Noob here on init.d - Sprint Samsung Galaxy S III

What exactly are some scripts I can use with this? I've recently flashed Freezas optimized kernel. And my friend said I can use battery performance tweaks and everything. I've never used anything like this before so please be bold and informational on the explanation.
thanks!
Sent from my SPH-L710 using Tapatalk 2

Well really you can have almost anything in there...those scripts are executed as soon as the OS starts up (on "init" lol)
Its not limited to ONLY battery performance tweaks
For example, on my shift theres a soft-key backlight brightness issue on JB since its not officially supported, so I made a script that just does "echo "0" > /sys/class/leds/....." since the "/" file system is recreated on boot
So my backlights are kept off
Some mods, for example lentropy feeders, will add their own startup scripts here to initiate their tweaking services at boot (if they dont have an app counterpart to receive the BOOT_COMPLETE receiver)

Related

[[Speed Improvements]] Brainstorming & Testing Thread!!

Hey guys,
Seems there's a lot of ways you can improve the speed of Android in general. Some seem to be snakeoil... others, work quite well and there's proof to back it up.
I'm only interested in discussing the latter .
A lot of people have helped me gather a better understanding of Android (hyc, stinebd to name a few) in addition to a lot of Google searching. I am going to compile a list of what I have done, I would like to hear what you guys have done! Most app killer apps / app control will already be addressed, so those tools need not apply... I'm looking for real, permanent fixes here without adding more apps!
I am also trying to have topics that are easy working up to advanced. Obviously the more advanced topics are going to be harder to do. You've been warned.
So here's the disclaimer.
****DISCLAIMER****
Speed is as always relative. That basically means I don't want arguments about which build is faster. I want to argue about how to make every build faster .
Also, these tips should apply to any build, any device... they are pretty generic tips, but are obviously specific to Android, with some idiosyncrasies that apply to our port that wouldn't apply to native Android devices. Some is common sense, others are real ways to tear into the system. Hope you enjoy it!
Topic 1
Difficulty Easy - Apps/Widgets​
I've noticed the number of widgets i have on my screens, or the number of apps that I have installed/are running in the background to greatly effect performance, in an obviously negative way.
Once I removed all the widgets (I only have the basic analog clock widget & the Google search widget on one desktop...) this seemed to improve general speed. One minor thing to check is if apps are set to auto/background sync. Only enable the ones you really want syncing, others just check manually.
On this same topic, replacing the launcher (the stock launcher in Android, Launcher2 is quite slow) can help immensely. I like ADW, but I've used LauncherPro in the past and it is good. Zeam also seems like a good launcher. I haven't used Go Launcher EX, I've heard good and bad things about it. Use what works best for you, try 'em all!
The last thing on this topic I would like to mention is animations. Settings -> Display -> Animation -> No animations can make the phone feel quite a bit snappier, obviously at the expense of the look/feel of the OS.
Topic 2​
Difficulty Easy - Controlling app 'net Access​
This leads me into the next topic, DroidWall. I've noticed that blocking apps from accessing the internet has been a very good thing - it's not so much a performance booster (although it probably does provide a little bump) it's mostly about battery life. Just be warned, if you block an app that is set to background sync, it will probably have very negative effects. Only disable an app's access to the internet with DroidWall after you've checked that app's background sync feature is disabled. I have a few apps allowed in DroidWall, and the rest are blocked. You can "whitelist" everything and check apps you want to block, or "blacklist" everything and check the apps you want to allow. It's a little annoying to remember to enable/disable DroidWall (I use the DroidWall widget to enable/disable it globally) but if you do, it is much better - you have complete control over how apps access the 'net on your device. It is available on the Market.
Topic 3​
Difficulty Moderate - SD cache/readahead tweaking​
The only reason I'm calling this one 'moderate' is the number of choices you have for settings for this... It's basically telling the SD card how much to hold on to or... read "ahead" if you will . This was turned way up in FRX07, (from 256kb to 2048kb or 2mb...) and I think this might be the source of a lot of the complaints of 'mini-resets' if you will where the boot animation is suddenly seen after a long system hang...
So some cards will work better with a larger setting - I've heard some with spankin new C6 cards that said 3072kb or 3mb was a good setting. Others have found a sweet spot at 256kb or 1024kb (1mb).
There are two ways of doing this - you can hack the init in the rootfs and adjust the setting manually, or be lazy like me and use SD Booster (from the Market). Adjusts the same settings, and they are applied immediately!
I would like to find a "sweet spot" - a good default if you will. Can folks test out 512kb and 1024kb, see if you have any more mini-resets within Android or any other slowness, etc... Obviously this isn't a cure-all for the slowness or the mini-resets, what we're looking to do is mitigate the effects. So let's focus on that, thanks!
Topic 4​
Difficulty Moderate - Overclocking​
Overclocking is obviously one relatively easy way to improve the speed of Android. In your startup.txt, add a line
Code:
acpuclock.oc_freq_khz=710400
for example to overclock to 710.4mhz. How did I find this value? I actually put in 714000, but if you look at dmesg near the beginning you'll see "ACPU running at ..." - that's what clock is the actual maximum. It goes in 19.2khz increments.
Feel free to experiment with how high your phone can go, just be warned that the higher you go the potential for failure goes up as well . Phone shouldn't blow up, but it might not work correctly or at all. Rebooting and scaling it back will fix it.
Here's the full *example* startup.txt:
Code:
set ramsize 0x10000000
set ramaddr 0x10000000
set mtype 2292
set KERNEL zImage
set initrd initrd.gz
set cmdline "lcd.density=240 msmvkeyb_toggle=off gsensor_axis=2,1,3 pm.sleep_mode=1 physkeyboard=rhod400 acpuclock.oc_freq_khz=710400"
boot
You can put the command anywhere in the cmdline section, just make sure it's between the quotes and at least one space between each command.
Topic 5​
Difficulty Advanced - How Android Manages Memory/apps​
Ok, I'm going to take two approaches to this. The first, is the full explanation on how Android manages memory.
Please feel free to read the post I originally read that inspired me to start looking at this stuff - How to configure Android's *internal* taskkiller. It was very helpful for me to grasp how Android manages applications. This is the reason why application killers are not a good thing...
If you want to do it manually, Starfox suggests:
Code:
echo "1536,3072,8192,10240,12288,20480" > /sys/module/lowmemorykiller/parameters/minfree
To try to do these commands, adb is very useful. Once you get adb shell working, then you just need to "su" (provides 'super user' privileges (root)) and put in the echo command above ^^.
I had another user (thanks icevapor) suggest this script -
[Script] V6 SuperCharger! HTK & BulletProof Launchers! The ONLY Android MEMORY FIXER!
I tried it myself, and it works very well. This thread is a little overwhelming, but the jist of it is this:
Install Script Manager (on the Market)
Run the V6 SuperCharger script. I use "Aggressive 1 Settings" (#2) and then I use the OOM Grouping Fixes & "Hard to Kill" launcher (#17)
Point Script Manager to run /data/99SuperCharger.sh to run as root & on boot. This will ensure the tweaks are reapplied after a reboot.
Topic 6​
Difficulty Advanced - Managing Apps that auto-start on boot​
This is one of the most annoying things in Android. When you have no apps installed, it seems very fast. Then you install apps, and you never seem to get that original speed back... Now you can!
This is kind of difficult to do, I am still getting the hang of it... but here goes. All credit goes to hyc, his original post.
The basic idea here is you run a logcat (adb logcat is easiest here, or you can use GetLogs to pull logcat...) Look in this log for "for broadcast" and find apps that start on boot. For example,
Code:
Line 41: I/ActivityManager( 1394): Start proc nextapp.systempanel for broadcast nextapp.systempanel/.monitorservice.BootReceiver: pid=1752 uid=10060 gids={3003, 1015}
Notice there are two sides of the "for broadcast". The name of the package (nextapp.systempanel) and the name of the service, "nextapp.systempanel/.monitorservice.BootReceive". I made the mistake of disabling the app (the left side). Do not do this, you want to disable the right side!
So in the shell,
Code:
pm disable nextapp.systempanel/.monitorservice.BootReceive
This will be persistent across boots, it will go with your data.img.
Obviously this was just one example of an app to disable. So long as you disable the right side (after the 'for broadcast') you shouldn't disable anything that will cause a serious problem. The apps should still work, but for example if you disable Google Voice you won't get messages until you open the app. So think about that... You disable Titanium Backup schedules.BootReceiver, the schedules for Titanium Backup (if you have any) won't run. Stuff like that. Disable calendar, you won't get calendar events... Disable clock no alarms. Get it? Good. I have been rebooting several times, and I keep checking what is set to start on boot. I'm not quite happy with it yet, but there's some things I'm leery of disabling. Just be wary, if you do disable something and don't like it - just pm enable <whatever you disabled>.
Now experiment away! The one caveat is if you do break something with pm disable (and it's serious) you might get a failure to boot. It really depends on how bad you mess up. If you make a copy of your data.img before you start making these changes, you can revert to that data.img and start back there.
Alright guys. Going to use this thread as a way to brainstorm about ways to improve the speed. Read up what I've posted, let me know if I did anything wrong... Also let me know what you guys do to improve speed!
Don't care about what build you're running, this thread isn't about what build is fastest - this is a how do I make every build faster thread.
I also realize I posted this in the Rhodium section - I want to see if there's any BLAC-specific tweaks that others should be made aware of!
Thanks. Great posting. Will try some of the topics I never used (because I didn't know about them).
ThaiDai said:
Thanks. Great posting. Will try some of the topics I never used (because I didn't know about them).
Click to expand...
Click to collapse
I'm sure there are more as well... These are just the ones that I found made the most difference on my device.
I'm also curious about the minfree setting. I've only tried a few settings, they seem good. I haven't done any drastic number changing, it seems like changing these values should be done with a lot of caution and testing. There are definitely some values that should not be touched and others that can take some more fudging with numbers .
Added Topic 3 and Topic 4 to startup.txt and rootfs.img.
Just booting. Let's see if this is stable.
Software options I do not test now because I only test the new versions now. So specific app optimization only necessary when ThaiDai Android Loader and installation procedure reaches v2
Ok, boot ok, started Android (NeoFROYO build(, will tell tomorrow if stable.
If so I will use this options as standard for Blacky and I will add software like Droid firewall.
Thanks and good night
Update - I redid topic 4, feel free to re-read it.
Thanks
Enviado desde mi FROYO BLUE CWM1.9 usando Tapatalk
Hi Arrrghhh!
Can a squashfsed and odexed apk boost speed inside Android OS?
john_matrix said:
Hi Arrrghhh!
Can a squashfsed and odexed apk boost speed inside Android OS?
Click to expand...
Click to collapse
No clue. What does that have to do with the Speed Improvements thread?
I'm guessing you tried and it didn't work? What APK!?!
I guess I don't really follow your train of thought. Does sqshfs'ing and odexing an APK make it run faster...? I'm pretty new to Android in general. Never even used a native Android device .
http://www.addictivetips.com/mobile/what-is-odex-and-deodex-in-android-complete-guide/
http://forum.xda-developers.com/showthread.php?t=709630
farukb said:
http://www.addictivetips.com/mobile/what-is-odex-and-deodex-in-android-complete-guide/
http://forum.xda-developers.com/showthread.php?t=709630
Click to expand...
Click to collapse
I still don't get what that has to do with our builds. ODEX and DEODEX have nothing to do with our builds... That stuff only applies to native devices, or builds that are ported from native devices (I would think).
Perhaps I'm missing something here... please tell me if I am .
Maybe they mean something else like: oxidized or deoxidized (reduced) apps. With these modified apps you can speed up the transfer of electrons, resulting in more performance without overclocking your cpu. And more: it will not reduce your battery capacity measurable. I used it in some of the builds I tried. You will get a nice small benefit also: because of the electron transfers you will get a small induced massage in your fingers for free.
ThaiDai said:
Maybe they mean something else like: oxidized or deoxidized (reduced) apps. With these modified apps you can speed up the transfer of electrons, resulting in more performance without overclocking your cpu. And more: it will not reduce your battery capacity measurable. I used it in some of the builds I tried. You will get a nice small benefit also: because of the electron transfers you will get a small induced massage in your fingers for free.
Click to expand...
Click to collapse
LOL!
Epic.
OK. I cant get V6 SuperCharger script to work! I downloaded the script and run it but I cant find /data/99SuperCharger.sh after I run it
x12CHRIS18x said:
OK. I cant get V6 SuperCharger script to work! I downloaded the script and run it but I cant find /data/99SuperCharger.sh after I run it
Click to expand...
Click to collapse
Did you make the choices in the script, or did you just exit the script?
You have to make sure ScriptManager is running as root too. There's a setting for it. "Browse as root" - make sure that is enabled. You won't be able to see /data without browsing as root.
...You have a TouchHD? I always thought you had a RHOD, lol.

[Tweaks] Lightning Zap for Ntiro from Team Fah-Q!

Please read the entire OP
DISCLAIMER:
I am NOT responsible for anything YOU do that causes damage to your device. Follow the instructions to TEE and there won't be any problems.
Your ROM/kernel MUST support init.d scripts
How do you know if your kernel supports init.d scripts? There are a number of ways to check, but the best way is to ask the developer of that kernel. You can also check in the ROMofCHOICE.zip by navigating to /system/etc/init.d. If the original .zip of your ROM has an init.d folder with scripts in it, then you are good to go.
What is Lightning Zap!?
Lightning Zap! is a set of tweaks that I have written and compiled to make the LG Nitro Lightning fast, super smooth, and contain excellent battery life!
I have used these same tweaks on devices like the Samsung SGS4G, Samsung Captivate, Samsung Skyrocket, Samsung Blaze, Sony S Tab. I have also assisted others with adding Lightning Zap! to their devices such as the Nexus S and various HTC devices. They have been proven time and time again to add amazing improvements to all devices.
What's the difference in the various version I find of Lightning Zap! when I google it?
Simply put, all devices are setup, formatted and created differently.
What's included in Lightning Zap!:
Battery tweaks for awesome battery life
Governor tweaks for amazing speed and performance without sacrificing battery life
Kernel tweaks
Memory and Ram tweaks
Cleaner tweaks
Build.prop tweaks
Internet speed tweaks
and MORE!
I used ParanoidAndroid ROM to test these tweaks. Although I have used the tweaks from froyo to jellybean, the the mounts, on some devices, are sometimes different as well as some kernel differences on each android version. If you are using a different ROM, feel free to test and post your results in this thread.
Install instructions:
Make a backup and then backup your data with titanium or something alike
***Download link is at the bottom of this post***
Download Lightning Zap! v1.zip to pc (Can be downloaded to sdcard also)
Place Lightning Zap! v1.zip on sdcard
Flash
Allow phone to set for 10 minutes after reboot
Enjoy
Confirmed ROMs & kernels
This space is going to be used to track the ROMs and kernels people have tested and confirmed Lightning Zap! installs and functions correctly.
Gningerbread:
ICS:
Jellybean:
ParanoidAndroid
CM10
Miui 2.9.27
CodeNameAndroid
I'm also adding some helpful tips on how to test Lightning Zap! to get the most positive results.
Testing option 1:
After flashing Lightning Zap!, download SManager from the market, navigate to /system/etc/init.d
Press menu key/more/advanced options/mount /system as rw and click ok
Press on each script individually then a ui will come up
In the ui, tap the icon at the top that is a skull and cross bones (has SU under it) then tap run.
An output will be displayed. Note the output for errors and report errors to me. Please use pastebin.com to upload your outputs
Testing option 2:
Plug phone into pc, open a terminal/command prompt and type each command individually
adb shell
su
cd /system.etc.init.d
Now type the file name of each tweak individually, eg:
01governor
Now note each output that is displayed and look for errors
If errors exist, report errors to me. Please use pastebin.com.
There may be some errors that exist that are not true errors. I know what they are, but haven't noted them yet.
If you have failures, please get them to me as soon as you can so I can fix it
FYI, since I installed Lightning Zap! on my wife's Nitro, she is at 100% with light use at 4.5 hours... I know it is not a normal day for her as she uses her phone much more than what she is using it today, but this is just to give users an idea of how great my scripts are. Typically on my S2 Skyrocket I get about 30 hours under moderate use (many texts from my wife, 5-10 calls, 30-45 minutes of web browsing, etc.) on a single charge...
More improvements and tweaks
The governor tweak is set pretty high for performance. If you find yourself needing battery life over performance, you can make some minor changes. Here's how:
1 Download Script Manager from the market (it's free)
2 Open Script Manager and navigate to /system/etc/init.d
3 Press menu/more/advanced options and select mount as RW
4 Select 01governor and select "edit" at the top (this will open the file in atext editor)
5 Change:
Code:
echo "45" > /sys/devices/system/cpu/cpufreq/ondemand/up_threshold;
To:
Code:
echo "[COLOR=red]70[/COLOR]" > /sys/devices/system/cpu/cpufreq/ondemand/up_threshold;
6 Select menu/save
7 Press the skull and cross bones icon at the top (this will allow Super User)
8 Press run, close app and enjoy
This will result is slightly slower performance but higher battery life.
If you want even better battery life:
1 Following steps 1-4
2 Add a # at the begining of lines 11 to 19
3 Scroll to "pwoersaver" section
4 Remove the # at the begining of lines 28, 30-38 and 43
Code:
#AWAKE_GOVERNOR="ondemand"
#SLEEP_GOVERNOR="ondemand"
# echo "70" > /sys/devices/system/cpu/cpufreq/ondemand/up_threshold;
etc
Code:
AWAKE_GOVERNOR="powersaver"
#SLEEP_GOVERNOR="powersaver"
echo "20000" > /sys/devices/system/cpu/cpu0/cpufreq/ondemand/sampling_rate;
5 Follow steps 6-8 (no need to select super user icon if you already did)
This will result in lower performance, but ultimate battery life
When running in a higher performance mode (especially for gaming) you can disable powersave_bias by changing the 1 to a 0 like this:
Code:
echo "1" > /sys/devices/system/cpu/cpufreq/ondemand/powersave_bias;
echo "[COLOR=red]0[/COLOR]" > /sys/devices/system/cpu/cpufreq/ondemand/powersave_bias;
Powersave_bias only allows the CPU to peak for small increments at a time, and not allow the CPU to remain peaked even when the system calls for it. In gaming, that could result in choppy, laggy perofrmance and slow FPS..
Although it says not to in the script, you can change the sampling rate as well. Do not go below 50000. I left it at 57500 as I found this seems good setting for smooth scrolling and performance.
Code:
echo "[COLOR=Red]57500[/COLOR]" > /sys/devices/system/cpu/cpufreq/ondemand/sampling_rate;
Always leave SLEEP_GOVERNOR="powersave" uncommented (no #) and do not uncomment any other SLEEP_GOVERNOR as this will keep ultimate battery save while screen is off.
Only change values in increments of 5 for the up_threshold.
I am not resposible if you do something wrong. Make a back up just in case.
Working on CM10 latest nightly. Noticing a slight speed up. Will keep an eye on battery and post back if I notice any notable changes. Thank you!!
Sent from my LG-P930 using XDA Premium HD app
Can i use it with official miui?
Jl6owa said:
Can i use it with official miui?
Click to expand...
Click to collapse
You should be able to, but like i said in the op, i need you guys to help me test. At worst, you will have to reflash your Rom and gapps... make sure you backup your data too...
Please report back with your results...
When i get home, i will post some testing tips for you guys also...
Sent from my SGH-I727 using xda app-developers app
Thanks for supplying this! I'll have time to make these changes tomorrow and hope to see great improvements.
Sent from my LG-P930 using xda app-developers app
AllstarE4 said:
Thanks for supplying this! I'll ha e time to make these changes tomorrow and hope to see great improvements.
Sent from my LG-P930 using xda app-developers app
Click to expand...
Click to collapse
Are you building from source? If so, you can add many of the values straight into the kernel. I haven't looked at the Nitro's source, but I can still somewhat guide you on how to make a Lightning Zapped! kernel where the tweaks work MUCH better than going thru scripts...
thomas.raines said:
Are you building from source? If so, you can add many of the values straight into the kernel. I haven't looked at the Nitro's source, but I can still somewhat guide you on how to make a Lightning Zapped! kernel where the tweaks work MUCH better than going thru scripts...
Click to expand...
Click to collapse
Oh heck no. I'm still a noob. I'm pretty good at following instructions though. Lol
Does SQLite Editor work the same? Can I perform all those changes with it or do I need the other app mentioned?
Sent from my LG-P930 using xda app-developers app
Jl6owa said:
Can i use it with official miui?
Click to expand...
Click to collapse
It works fine with miui. Phone become little more faster.
+500 points in antutu
Jl6owa said:
It works fine with miui. Phone become little more faster.
+500 points in antutu
Click to expand...
Click to collapse
Which version of MIUI?
Anyone tried it on Full Throttle 8.4
I'm not proficient enough so I want to hear if other Full Throttle 8.4 finds this working for them.
Jl6owa said:
It works fine with miui. Phone become little more faster.
+500 points in antutu
Click to expand...
Click to collapse
Want to raise your scores even higher, refer to the second post but lower the up_threshold to 15. Of course this will take from your battery life, but it will seriously enhance your performance. You can also change powersave_bias, io_is_busy, down_differential, ignore_nice_load to "0" and play with sampling_rate a bit too... Keep in mind, the more you add performance, the less battery life you will have...
AllstarE4 said:
Oh heck no. I'm still a noob. I'm pretty good at following instructions though. Lol
Does SQLite Editor work the same? Can I perform all those changes with it or do I need the other app mentioned?
Sent from my LG-P930 using xda app-developers app
Click to expand...
Click to collapse
Any text editor that supports shell scripting will work. As for adding this to a port, then it's as easy as adding files and a few entries in your updater-script...
Tried to install this on Full Throttle. Is it supposed to restart in the middle of flashing?
rsalan said:
Tried to install this on Full Throttle. Is it supposed to restart in the middle of flashing?
Click to expand...
Click to collapse
It does reboot itself as soon as it is done flashing... Since it rebooted, it flashed correctly...
Is full throttle ICS and how is it working for you?
thomas.raines said:
Which version of MIUI?
Click to expand...
Click to collapse
Miui 2.9.27
thomas.raines said:
It does reboot itself as soon as it is done flashing...
Click to expand...
Click to collapse
I get that you want to automate the process a bit, but I think it could be annoying in some cases. What if I wanted to do something else in recovery before rebooting? Just my personal opinion.
drumist said:
I get that you want to automate the process a bit, but I think it could be annoying in some cases. What if I wanted to do something else in recovery before rebooting? Just my personal opinion.
Click to expand...
Click to collapse
From my experience, when flashing tweaks, you want to reboot immediately after so they fully install. Same with ROMs, kernels and recoveries... Otherwise, you can cause gremlins to take over and corrupt your partitions...
thomas.raines said:
From my experience, when flashing tweaks, you want to reboot immediately after so they fully install. Same with ROMs, kernels and recoveries... Otherwise, you can cause gremlins to take over and corrupt your partitions...
Click to expand...
Click to collapse
Not true, but whatever. It's a minor point anyway.

[ROM] Dec.1st -{}- UVDLJA {} LIGHTNING_rev3 -{}- 4.1.1 Jelly Bean OTA

Welcome to Lightning ROM
MAJOR UPDATE, REV3, CHANG LOG IN SECOND POST**********
The goal when creating this today has been simple. Squeezing the most performance out of the T-Mobile Galaxy S III as I possibly could, without destroying your battery. This ROM was build with two things in mind - optimization and speed. Nuff said. It is based off the official Jelly Bean leak as of late last night and wild child's deodexed version he was kind enough to throw down. It will probably impregnate you, with twins, then not pay you child support. If you are ready to propel your device to levels above 9 thousand, you should probably keep reading. You have been warned. IT IS FAST! ..... yet... friendly...
Like myself, in the spirit of android, I am sure you all love customization. I am doing something a little different with this. Rather than add all the toggles, mods, themes, etc, I focused today on the performance aspect and will leave the theming up to you, and after you get it set up the way you want (as there will soon be and already is tons of pretty extras for this build) revert to post 2 of this thread for a nice little guide to odex this bad boy straight from Android UI via terminal emulator. I'll take care of the tweaking, you theme it the way you want, then wrap it up with some memory optimization of your own, or don't. Sound good? Thought so
Getting right down to it - a quick list of things modified here, and I know I am missing some things:
-Init.d support
-Busybox
-Deodexed (until you odex - see post 2)
-Rooted - duh
-CIQ removed***
-Debloated: removed a lot of stuff, but it is all avail' in the market, youtube, etc, you would have had to update it anyways -__-
-File system and SD read optimized for speed
-added freeza's custom CPU script to init.d ***see changelog in post 2
-Build.prop has been modified.
*added the 0 ring delay script
*wifi scan adjusted to 600
*media streaming optimized
*media recording optimized (video and image)
*data speeds optimized
-Database df on each boot / sql support - totally kanged this from somewhere else it was kanged... all credits due
-Memory optimizations
-Default IO scheduler optimized for flash-type disks (android devices)
-Carefully modified CPU parameters with performance in mind. Tweaked values to optimize IO throughput during heavy workload and multi-tasking, yet on the other end, CPU cycles are greatly reduced when system is not under heavy load. You will see this in performance :highfive:
INSTALLATION - follow this to the T, or I will ignore you. And keep in mind you might still have issues. Not every device is the same.
1. download ROM, put it on your external SD card, and verify it is good with an MD5 check
2. once all is well, boot to recovery
3. do a factory reset/data wipe (I have always been in the habit of being thorough and formatting anything 3 times)
4. format/wipe system (3 times recommended)
5. flash ROM
6. reboot (it will take a couple minutes)
7. once the device boots, let it stand alone for about a minute or so (i typically wait until it shuts off the display on its own) and ENJOY
NOTE: DO NOT TRY TO SIGN IN TO DROP BOX. I REMOVED IT. DL FROM MARKET!!
Also, some other things removed: browser, YouTube, calculator, some other stuff. I didn't remove anything that was not available in the play store. Wanted to keep it light weight. Do not try to sign in to anything other than your google account when you boot. Again, enjoy.
thanks to wild child, freeza, virus, steelH, dj, luke, ktoonz, and many others. mad respect to you all. i have implemented things that are either your direct work or things i have learned from you. so here is my humble shout out. if there is something i left out, somebody i didn't mention, please forgive me and post in this thread and call me out, i will happily update the OP with thanks. respect to you all
REV_3 - ready, set.. ok click now!
With morfic's kernel..... clocked at 1.83
ok... so if you are like me, and you REALLY wanna get intense with this, and just make it as bad A as you possibly can, keep reading....
This will essentially odex all files in your /system/framework and it will do it straight from the Android UI via my personal favorite app ... this is good because it frees up mem, and reduces DVM size. OPTIMALLL
1. download the odex.zip here --> PURPLE
2. extract all files with a file explorer, i prefer root explorer or fx file explorer
3. place the extracted folder and all of it's contents in /data/local/tmp ... so you should have /data/local/tmp/odex/+(misc files in new odex directory)
4. give the new directory and ALL contents FULL permissions. full read, write, and execute perms. your file explorer, if it has taken you this far, should be able to accomplish this
5. download this app TERMINAL EMULATOR dont worry it is free. open the app
Type the following commands - each new line should be executed with the enter key:
su (hit enter, it will ask for root)
/data/local/tmp/odex/odex (hit enter, you will see
you will see a bunch of outputs. there will be a message when it is done (honestly, like 10 seconds if that) saying something like "enjoy your hybrid ROM"
type "reboot recovery" (without the quotes)
device will boot into recovery immediately after you hit enter...
wipe cache and dalvik cache once more each, and reboot your device.
viola <--- this was spelled wrong. but i am going to leave it. because i can. rofl
THANKS*** freeza for sending me the the odex script, and you're welcome, for the bootclasspath for the script.. lulz. and thanks freeza for convincing me to download titanium backup again... and you're welcome for giving you the peace of mind that you can odex framework from android. el o el
****change log*****
rev3-December 1st, 2012 -uploading
-added morfic's alpha 23 kernel. OC'able to 1.83, no UV, L2 cache tables optimized, CPU hot plugged (for now, panel of=cpu1 off), pretty much an overhaul here. performance is ridiculous.
-removed CPU tweak by freeza (i still love you tho)
-optimized IO, AGAIN. adjusted ondemand parameters for a little bit better performance
-removed unneeded scripts from init.qcom.post_boot.sh file - positive effect on IO
-cleaned up build prop, added scripts for TCP windows, added network hack by... somebody... can't remember. File is in /etc/init.d/ "internet"
-optimized BT audio streaming
-added properties for optimal accessibility of T-Mos spectrum/towers
-disabled unneeded logging - save CPU cycles and power
-debloated some more. lightweight. DO NOT... try to sign in to dropbox upon first boot (if it even gives you the option) download the latest version of the app on the play store.
rev2-NOVEMBER 19, 2012
-removed some UI audio sounds (charger connection [for those that listen to music], lowbattery sound, volume toggle sounds, other annoying useless sounds such as boot up and power off)
implemented freeza's CPU control script for some amazing performance and battery life. thanks bud, as always, great work. i have been running this since he was finished with it, and it is absolutely amazing. your device with tons of unique and user friendly, editable scripts.
-freeza's CPU script adjusts CPU parameters for both cores based upon whether your device is charging, and how much battery you have left. it is a performance and battery friendly script that is power efficient and editable depending on what YOU want your device to do.
beta1-
initial release
all the things...
In rev 2, with freeza's CPU mod, you can navigate to init.d and you will see a "70cputweak" file. if you open that up, you can adjust CPU values and parameters of governors to your liking. for now, i left them as is - the way they were when freeza gave them to me. edit them with a file explorer and reboot and you are now adjusting your OWN values based on the performance and battery YOU desire. follow instruction in OP to flash
Thanks will try this later today
Sent from my SGH-T999 using xda app-developers app
Does teathering work on this?
ScottBroker said:
Does teathering work on this?
Click to expand...
Click to collapse
wireless/native? no. but my easy tether app works perfectly. i'll implement it, if i have time, in beta2... i haven't slept in two days lol
OP updated
Will the odex.me app work with this rom? I'm not lazy, just curious if there's an easier way to odex..tia
Sent from my SGH-T999 using Xparent Blue Tapatalk 2
Yeah does the odex me app work the same way than doing all that other stuff?
Sent from my SGH-T999
which tether app you using ?
Thanks
Odex me app will not work
great Rom thanks
Is this still running Touchwiz? How much RAM available? Other then your optimizations for speed what has been added or removed? Are animations gone due to the optimizations?
EGBTMagus said:
Is this still running Touchwiz? How much RAM available? Other then your optimizations for speed what has been added or removed? Are animations gone due to the optimizations?
Click to expand...
Click to collapse
All I have done is tweak properties listed. Didn't mess with animations, or anything. You guys can do all that with a theme, kitchen, etc... I would recommend wild child's work. It's great stuff. Like I said the reason for this is because after you get it the way you want, you can go in and odex it and finalize your OWN build the way you want it to look. I'm not too big on aesthetics. But I can make your device run better
And to answer your question, yes, it is still running touchwiz launcher by default. Again I would recommend apex or nova. touchwiz is awful IMO. nothing unique about it.
Rom looks great will be testing it tonight!
Can anyone confirm wildchilds kitchen is working?
Sent from my SGH-T999 using xda app-developers app
Liking the rom so far, only issue I have come across is that I can't get App2ExtSD2 working.
Can we use your Odex wizardry in any deodexed TW Rom?
SiNJiN76 said:
Can we use your Odex wizardry in any deodexed TW Rom?
Click to expand...
Click to collapse
yeah
http://forum.xda-developers.com/showthread.php?t=1994048
Thanks...didn't know he created a separate thread.
Anyway, the first thing I noticed was that when I try to sign into Drop Box from the initial boot sequence, it FCs... I also got nowhere near the Quad score the OP got. Mine was in the 3Ks. Just my experience.
CIQ?
SiNJiN76 said:
Thanks...didn't know he created a separate thread.
Anyway, the first thing I noticed was that when I try to sign into Drop Box from the initial boot sequence, it FCs... I also got nowhere near the Quad score the OP got. Mine was in the 3Ks. Just my experience.
Click to expand...
Click to collapse
I got over 5K in Quadrant, but I also came from a 100% stock phone (reset it to make sure there were no issues). DropBox fails intially because he removed dropbox from the rom.
EDIT:
I can't seem to find the stock web browser... has it been removed?

[MOD][TWEAK-PACK][2-17-14][S3] ComaDose A Collection Of The Best, By The Best

VERSION 3.5​
"My phone is flying!" - vgomez916
"My phone is lighting quick now, Like I said this thing is really flyin. Thanks"- zackandethan
"This mod is sickkk. phone is flying, on 3g i'm getting 1-2 mbs speed. Thanks for the mod Goddly."- Nyckrs
"My speeds are way up too. 100-200 kbs up to 850kbs now. Download and upload. Same time of the day, same location"- g_ding84
"4G speed jumped to 8.9MB. Incredible!"- xNicoyAx
Stock MF9 , with busybox workaround. http://forum.xda-developers.com/showthread.php?t=1933849 ~~ POST #2 ~~ thanks - devoureddreams-
This tweak pack Originated in the Epic 4G Touch Forums, been tested, and has improved-
Battery Life, User battery life may vary, depending on a varitey of things, widgets, radios, etc., etc.,
network speed
GPS lock
system performance, Increased app load speed, etc.
Browser upgrades
wifi_wait (Kobridge)
memory tweaks (Modded Kobridge, Mine)
test screenstate (screen off = deep sleep, Phakker, Improved)
Init.d test script (Exit_Only)
battery stats format (Exit_Only)
and more
V1.2
added Kobridge, read ahead script
added script for working Cron (Exit_Only)
added an option for NO Undervolt. (more universal)
cleaned up things.
v 1.3
stripped undervolt till a new kernel pops up.
cleaned up scripts, non working parts
added Kobridge 41 tweaks, modded for less conflicts , thanks Kobridge
and a few small touches
Version 2.1 Crossbreeder
]Added newest Crossbreeder to install package
Slightly modded GPS settings.
changed updater script to be compatible with the S4 and all other rooted Android devices
Version 3.0.2 ~
~added more init.d low memory tweaks
~added a few more small kernel tweaks
~swapped out the stock browser for my modded variation
~added a browser cache script (hoping to load browser pages quicker)
~added delay to the larger scripts (to speed up boot times)
~New~ Version 3.5
~Fixed loss of root issue
~added newest release of crossbreeder 12-4
~added a few new kernel tweaks
~cleaned up
Infromation About CrossBreeder-
- This is a new take at Android lag reduction. It's lightweight and won't consume battery. Users have reported drastic improvements in usability and even benchmark scores. It will show noticeable improvements - Android devices from Donut to Froyo to Gingerbread to Honeycomb to ICS and Jellybean.
- This is a combination of 5 different methodologies to reduce Android lag.
- Removal of DNS lag . A lot of the lag in a lot of apps, apart from the GUI lag, is due to slow DNS querying, specially on the mobile network.
- CrossBreeder now runs a caching, parallelising DNS client on the device. So now most of your DNS queries will be served from the cache and if not found, the query will be sent in in round robin fashion to multiple DNS servers including Google DNS, OpenDNS and your home router and the reply will be served to you, hot.
- This speeds up network access and networked apps, like Browsers of course, and Tapatalk, Gmail and thousands of others drastically. And removes a lot of the lag where it was due to DNS querying. This will not increase your network or download speed but pages will load much faster.
- This will future proof your devices as more and more apps start using HTML5 and/or reside completely as web pages or the like.-
I Just thought, there are some great developers in our forum, with great tweaks, geared for their own specific purpose, and i thank them. I HAVE asked for permission to use these tweaks, to make a pack of the best, from the best taking a few of those great tweaks and putting them in one lightweight package. Now , I did NOT create any tweak in this pack. That is why introductions and thanks are in order.
ALL THANKS TO THESE GUYS
Exit_Only - For being the mad scientist of the "tweak" in general
Kobridge - Having used your tweaks in various roms and knowing how great they work :good:
Phakker - For the use of his Infamous, screenstate tweak
G_Ding84 - For being one h*ll of a rom maker , teacher, and one of the most helpful guys youll meet on any forum
idcrisis - For the use of his CrossBreeder Mod found here -
http://forum.xda-developers.com/showthread.php?t=2113150
Without these guys we wouldnt be where we are now, as a forum, or a community.
Gentlemen- On behalf of the users of this tweak , and every E4GT owner out there.... *BOWS* I thank you....
I am in no way responsible for your equipment, flash at your own risk
Download ComaDose version you prefer, from the downloads section, and put on root of phone
Boot into custom recovery
Flash ComaDose
Reboot to rom (flash stock kernel) or reboot system etc.
This is a .zip file, can be flashed with CWM recovery, put on root of phones storage, boot into recovery & flash.
Issues with repack and new Custom Recovery kernels-
Now Ive heard it works for some people on repacks, and ive heard of battery drain, and GPS taking along time to lock on others. But the best results i get, are out of the "stock" Leak kernels.
Conflicting issues with new Custom Recovery modded and released updated version
~NEW~ComaDose V3.5
http://d-h.st/22v
md5: faae873f493540cd68e58f5ddc9ac79a
ComaDose V2.1 W/ Crossbreeder V. 7.2.13
View attachment 2149730
Mirror #1
http://www.androidfilehost.com/?fid=23060877490004661
ComaDose_removal.zip (Uninstaller)
View attachment 2149687
Mirror #1
http://www.androidfilehost.com/?fid=23060877490004662
Whats under this button??
If you guys like my work and have a little jingle floating around, dont hesitate to toss a beer (or coffee ) my way through the "donate to me" under my avatar. THANKS GUYS!​
Test Init.d With The "21 Test-init.d" script​
-THINGS YOU NEED-
Rom Toolbox (free or pro)
Root Access (superuser access) for Rom Toolbox
ComaDose Already Flashed
-Steps-
After ComaDose flash, if you want to check if your init.d is functioning properly you can check it with the 21 test init.d script...
After flash the test init.d script has already ran (on startup) now thwe sole purpose of this script is to show whether or not init.d
is properly functioning.
When this script is ran (executed) as all scripts in init.d are upon startup, it creates a file in the /data folder.
so why dont we take a look for it?
Using Rom Toolbox, go to the "root browser" tab (upon first startup youll be prompted to SuperUser permissions, Allow this)
Once in Root Browser youll be in the root of your device by default. ( / )
Click on the "Data" folder..
In the /Data folder, were looking for "Exit Only Init.d" file
if you see this file, your init.d is working and all scripts are running ...
If you dont see this file after reboot (post flash) you can execute the "21 test Init " script manually...
back out to the root of the phone, go into "system", then into "etc" then into the "init.d" folder and locate the "21_testinit.d" script, press on it , bringing up this menu.
press the "open as" tab, bringing up this menu...
then press the "script file" option..
Then you want to press the "execute Script" option, making sure the "execute as root option is checked, as shown below.
which will then execute the script using init.d support to do so.. looking like this
after its executed, go back into /data and find the "Exit Only Init.d" file if its there your init.d is working.....
If its as good as it sounds, this'll surely be one of my favorites. Trying this out.
Good to see you on here! I used your tweaks when I was on the E4GT. This is good stuff people!
Sent from my SPH-L710 using XDA
Soap said:
If its as good as it sounds, this'll surely be one of my favorites. Trying this out.
Click to expand...
Click to collapse
give it a try
s9amme said:
Good to see you on here! I used your tweaks when I was on the E4GT. This is good stuff people!
Sent from my SPH-L710 using XDA
Click to expand...
Click to collapse
this is the best working version yet enjoy
Nice. Giving this a try
Sent from my SPH-L710 using xda premium
Goddly said:
this is the best working version yet enjoy
Click to expand...
Click to collapse
Is it for stock kernel only, or will it play nice with KT as well?
:fingers-crossed:
orlzzt said:
Is it for stock kernel only, or will it play nice with KT as well?
:fingers-crossed:
Click to expand...
Click to collapse
Same question but with dkp?
Sent from my SPH-L710 using xda premium
_Epic said:
Same question but with dkp?
Sent from my SPH-L710 using xda premium
Click to expand...
Click to collapse
Its not kernel sensitive , nothing in this relates to kernel. should be 100% compatible, only thing you need to be rooted, (busybox etc) Crossbreeder is awesome. has add block etc. for those who want to shut off certain aspects of crossbreeder there are terminal commands you can find those in his thread...
Goddly said:
Its not kernel sensitive , nothing in this relates to kernel. should be 100% compatible, only thing you need to be rooted, (busybox etc) Crossbreeder is awesome. has add block etc. for those who want to shut off certain aspects of crossbreeder there are terminal commands you can find those in his thread...
Click to expand...
Click to collapse
Thank you! Will be flashing it in a few.
Sent from my SPH-L710 using xda premium
I'll give it a go!
Sent from my SPH-L710 using xda app-developers app
You will not be disappointed.
Sent from my SPH-D710 using Tapatalk 2
Goddly said:
You will not be disappointed.
Sent from my SPH-D710 using Tapatalk 2
Click to expand...
Click to collapse
12 hours in, and I must say I am impressed! Definitely helps with reducing lag and with screen times. My battery is much better today, but being on my wi-fi instead of that nebulistic vortex that is Universal Studios Orlando will always improve battery. Will follow the OP instructions and do a full cycle, then report back.
Thanks to @Goddly for the lovely treat!
This is no joke guys... ive spent countless hours on this mod . I run this myself and know it's results. Just trying to share the wealth.
Sent from my SPH-D710 using Tapatalk 2
Will this work if I'm not on touchwiz? I'm currently running slimbean
Sent from my SPH-L710 using xda premium
shehroze3 said:
Will this work if I'm not on touchwiz? I'm currently running slimbean
Sent from my SPH-L710 using xda premium
Click to expand...
Click to collapse
it will, if you see the file in /data "Exit Only init.d" .. FILE not folder. then your init.d is working correctly..
Sent from my ASUS Transformer Pad TF300T using Tapatalk HD
Seems to be doing well for me except for one problem, it seems to conflict with adaway? I restored a backup from right before I flashed this and adaway worked fine, but with the mod adaway says disabled every time and resets to that when I try to enable it, which requires a reboot.
Any ideas why? Potential fix?
Sent from my SPH-L710 using xda premium
therenegadenail said:
Seems to be doing well for me except for one problem, it seems to conflict with adaway? I restored a backup from right before I flashed this and adaway worked fine, but with the mod adaway says disabled every time and resets to that when I try to enable it, which requires a reboot.
Any ideas why? Potential fix?
Sent from my SPH-L710 using xda premium
Click to expand...
Click to collapse
Crossbreeder has its own ad block brother. try uninstalling adaway, if you find you want or need adaway as opposed to the ad block in CBreeder, there are terminal commands that can be used to disable ad blocking in Crossbreeder.. lemme know ill give you the disable terminal command.
looks good, will i need to uninstall crossbreeder before i flash this
edit: cant wait, i will uninstall and flash!

[MOD][TWEAK-PACK][7-19-13][GNEX] ComaDose A Collection Of The Best, By The Best

ComaDose v2.1 W/ CrossBreeder V.7.2.13​
"My phone is flying!" - vgomez916
"My phone is lighting quick now, Like I said this thing is really flyin. Thanks"- zackandethan
"This mod is sickkk. phone is flying, on 3g i'm getting 1-2 mbs speed. Thanks for the mod Goddly."- Nyckrs
"My speeds are way up too. 100-200 kbs up to 850kbs now. Download and upload. Same time of the day, same location"- g_ding84
"4G speed jumped to 8.9MB. Incredible!"- xNicoyAx
~Testing For Init.d Support~
To verify your kernel has proper init.d support.... see post #2
~Kernel Without Init.d Support~
Busybox workaround. http://forum.xda-developers.com/showthread.php?t=1933849~~ POST #2 ~~ [/FONT] thanks - devoureddreams-
NOTE- Please give at least 1 full empty-charge cycle for true battery results.. you will not be disappointed​
This tweak pack Originated in the Epic 4G Touch Forums, been tested, and has improved-
Battery Life - Marked battery Improvement... User battery life may vary, depending on a varitey of things, widgets, radios, etc., etc.,
Network speed
GPS lock
System performance, Increaded app load time, etc.
Tweaks include-
Crossbreeder V7.2.13 (Idcrisis link in the thanks section)
wifi_wait (Kobridge)
gps.conf (Exit_Only & g_ding)
Memory tweaks (Modded Kobridge)
Test screenstate Variant (screen off = deep sleep, Modded Phakker)
Init.d test script (Exit_Only)
NOS - Injection (modded) (Exit_Only)
and more
Infromation About CrossBreeder-
- This is a new take at Android lag reduction. It's lightweight and won't consume battery. Users have reported drastic improvements in usability and even benchmark scores. It will show noticeable improvements - Android devices from Donut to Froyo to Gingerbread to Honeycomb to ICS and Jellybean.
- This is a combination of 5 different methodologies to reduce Android lag.
- Removal of DNS lag . A lot of the lag in a lot of apps, apart from the GUI lag, is due to slow DNS querying, specially on the mobile network.
- CrossBreeder now runs a caching, parallelising DNS client on the device. So now most of your DNS queries will be served from the cache and if not found, the query will be sent in in round robin fashion to multiple DNS servers including Google DNS, OpenDNS and your home router and the reply will be served to you, hot.
- This speeds up network access and networked apps, like Browsers of course, and Tapatalk, Gmail and thousands of others drastically. And removes a lot of the lag where it was due to DNS querying. This will not increase your network or download speed but pages will load much faster.
- This will future proof your devices as more and more apps start using HTML5 and/or reside completely as web pages or the like.-
Thanks, and a brief statement-
I Just thought, there are some great developers in our forum, with great tweaks, geared for their own specific purpose, and i thank them. I HAVE asked for permission to use these tweaks, to make a pack of the best, from the best taking a few of those great tweaks and putting them in one lightweight package. Now , I did NOT create any tweak in this pack. That is why introductions and thanks are in order.
ALL THANKS TO THESE GUYS
Exit_Only - For being the mad scientist of the "tweak" in general
Kobridge - Having used your tweaks in various roms and knowing how great they work :good:
Phakker - For the use of his Infamous, screenstate tweak
G_Ding84 - For being one h*ll of a rom maker , teacher, and one of the most helpful guys youll meet on any forum
idcrisis - For the use of his CrossBreeder Mod found here -
http://forum.xda-developers.com/showthread.php?t=2113150
Without these guys we wouldnt be where we are now, as a forum, or a community.
Gentlemen- On behalf of the users of this tweak, in many different devices. *BOWS* we thank you ....
Change Log-
NEWComaDose V2.1 W/Crossbreeder V.7.2.13
Added newest Crossbreeder to install package
Slightly modded GPS settings.
changed updater script to be compatible with the S4 and all other rooted Android devices
Flashing Instructions-
Download ComaDose V.2.1 , from the downloads section, and put on root of phone
Boot into custom recovery
Flash ComaDose
Reboot to rom (flash stock kernel) or reboot system etc.
This is a .zip file, can be flashed with CWM recovery, or TWRP. put on root of phones storage, boot into recovery & flash.
Downloads-
~NEW~ComaDose V2.1 W/ Crossbreeder V. 7.2.13
View attachment ComaDose_V2.1_Cossbreeder_7.2.13.zip
ComaDose_removal.zip (Uninstaller)
View attachment ComaDose_Removal.zip
If you guys like my work and have a little jingle floating around, dont hesitate to toss a beer (or coffee ) my way through the "donate to me" under my avatar. THANKS GUYS!​
Test Init.d With The "21 Test-init.d" script​
-THINGS YOU NEED-
Rom Toolbox (free or pro)
Root Access (superuser access) for Rom Toolbox
ComaDose Already Flashed
-Steps-
After ComaDose flash, if you want to check if your init.d is functioning properly you can check it with the 21 test init.d script...
After flash the test init.d script has already ran (on startup) now thwe sole purpose of this script is to show whether or not init.d
is properly functioning.
When this script is ran (executed) as all scripts in init.d are upon startup, it creates a file in the /data folder.
so why dont we take a look for it?
Using Rom Toolbox, go to the "root browser" tab (upon first startup youll be prompted to SuperUser permissions, Allow this)
Once in Root Browser youll be in the root of your device by default. ( / )
Click on the "Data" folder..
In the /Data folder, were looking for "Exit Only Init.d" file
if you see this file, your init.d is working and all scripts are running ...
If you dont see this file after reboot (post flash) you can execute the "21 test Init " script manually...
back out to the root of the phone, go into "system", then into "etc" then into the "init.d" folder and locate the "21_testinit.d" script, press on it , bringing up this menu.
press the "open as" tab, bringing up this menu...
then press the "script file" option..
Then you want to press the "execute Script" option, making sure the "execute as root option is checked, as shown below.
which will then execute the script using init.d support to do so.. looking like this
after its executed, go back into /data and find the "Exit Only Init.d" file if its there your init.d is working.....
reserved X2
Holy crap!!! This ***** is fast now!!!! Thanks!!!!
Sent from my Galaxy Nexus using xda premium
Almost like it should be
Thanks to my Gnex testers !!!
Sent from my SPH-D710 using Tapatalk 2
Goddly said:
Almost like it should be
Thanks to my Gnex testers !!!
Sent from my SPH-D710 using Tapatalk 2
Click to expand...
Click to collapse
Really glad to see some familiar names from the E4GT days.Great phone and great Devs..I remember some of those scripts.Anyway this os working great!
Flashed a couple hours ago, and tbh, I don't really notice a difference in performance at all. My web pages open at the same speed and overall my phone feels the same. Will keep an eye on battery life. In any case, thanks for putting this together for us!
Sent from my Galaxy Nexus using xda app-developers app
I have been using crossbreader for sometime now and between this and crossbreader I have not notice any performance change
Sent from my Galaxy Nexus using xda app-developers app
adio201 said:
I have been using crossbreader for sometime now and between this and crossbreader I have not notice any performance change
Sent from my Galaxy Nexus using xda app-developers app
Click to expand...
Click to collapse
my original versions did not include crossbreeder, and was strictly light performance gain, it was designed to be a battery saver.... the added crossbreeder was a request from many users. i can give you the original version (battery gain) (deep sleeps like a baby)
Sent from my ASUS Transformer Pad TF300T using Tapatalk HD
Goddly said:
my original versions did not include crossbreeder, and was strictly light performance gain, it was designed to be a battery saver.... the added crossbreeder was a request from many users. i can give you the original version (battery gain) (deep sleeps like a baby)
Sent from my ASUS Transformer Pad TF300T using Tapatalk HD
Click to expand...
Click to collapse
Well if this version will give me a better battery life with performance then I'm all hands on
Sent from my Galaxy Nexus using xda app-developers app
Kobridge and phhaker made some amazing scripts.If your using them than I know it'll be amazing. My phone is instantly snappier. I notice a massive difference and it is definitely NOT placebo.
Jesus. This is ridiculous. Everything is blazing fast!
Great work
I think you have to add SuplRootCert file in /system/etc cause in the gps.conf file there is this line.
SUPL_TLS_CERT=/system/etc/SuplRootCert
And why there are 2 different kb read ahead values? In the KB_read_ahead_tweaks script it's 2048 and in the S02_direct_inject script it's 3072? Is it for the internal and external sd card different or is it a mistake? Nice work btw.
Verstuurd van mijn GT-I9300
I flashed this a couple of days ago and completely forgot about it, but I was wondering why my phone was doing so well on a bloat filled 4.2.1 ROM.
Nice job.
This really speed up my gnex only issue I had was it kept force closing my navigation app. Any suggestions? I'm on pacrom running Franco
Sent from my Galaxy Nexus using Tapatalk 4 Beta
The gps.conf. needs to be system specific. Can you guys toss me a stock gps.conf ? I have to swap it out!! Lol
Sent from my SPH-D710 using Tapatalk 2
This mod is fantastic! Made my phone speedy! Paired with ASKP and XenonHd ROM makes my phone fast as hell!!
Thanks for this, will report back on battery life in a few days
Sent from my Galaxy Nexus using Tapatalk 2
The link doesn't work for me.
Sent from my Galaxy Nexus using Tapatalk 4 Beta
This is the 2nd day since applying the script while I agree my phone is blazing fast now but as for as battery life I'm still looking at around 8hrs off a full charge.
Are you guys seeing the same, less or more?
Flashing right now... Will I have to reflash this every time i dirty flash or clean flash my rom and ak kernel?

Categories

Resources