Here are some scripts that will increase overall user experience on your sidekick!
I do not take any credit for these tweaks i found them all over XDA and i put them together nicely for you so you can use them yourself.
Strict Mine Free handler
echo "2048,3072,6144,15360,17920,20480" > /sys/module/lowmemorykiller/parameters/minfree
Internet
echo "0" > /proc/sys/net/ipv4/tcp_timestamps;
echo "1" > /proc/sys/net/ipv4/tcp_tw_reuse;
echo "1" > /proc/sys/net/ipv4/tcp_sack;
echo "1" > /proc/sys/net/ipv4/tcp_tw_recycle;
echo "1" > /proc/sys/net/ipv4/tcp_window_scaling;
echo "5" > /proc/sys/net/ipv4/tcp_keepalive_probes;
echo "30" > /proc/sys/net/ipv4/tcp_keepalive_intvl;
echo "30" > /proc/sys/net/ipv4/tcp_fin_timeout;
echo "404480" > /proc/sys/net/core/wmem_max;
echo "404480" > /proc/sys/net/core/rmem_max;
echo "256960" > /proc/sys/net/core/rmem_default;
echo "256960" > /proc/sys/net/core/wmem_default;
echo "4096,16384,404480" > /proc/sys/net/ipv4/tcp_wmem;
echo "4096,87380,404480" > /proc/sys/net/ipv4/tcp_rmem;
Battery
echo "500" > /proc/sys/vm/dirty_expire_centisecs
echo "1000" > /proc/sys/vm/dirty_writeback_centisecs
Vm Management
echo "4096" > /proc/sys/vm/min_free_kbytes
echo "0" > /proc/sys/vm/oom_kill_allocating_task;
echo "0" > /proc/sys/vm/panic_on_oom;
echo "0" > /proc/sys/vm/laptop_mode;
echo "0" > /proc/sys/vm/swappiness
echo "50" > /proc/sys/vm/vfs_cache_pressure
echo "90" > /proc/sys/vm/dirty_ratio
echo "70" > /proc/sys/vm/dirty_background_ratio
Click to expand...
Click to collapse
These tweaks will increase performance speed and battery life.
To add these just download the file below and then extract the 77tweaks file inside, then using adb or a file manager push them to system/etc/init.d and name them 77tweaks.
Please let me know if you see any difference.
I will be adding some more as time passes and i will also add build.prop tweaks
I want to make your phone better for you to use so please enjoy and leave feedback!
Thanks bro.. I give you feedback as soon as I throw these in... does it matter if your on kg1 or kg2?
Sent from my SGH-T839 using xda premium
ChoctawT said:
Thanks bro.. I give you feedback as soon as I throw these in... does it matter if your on kg1 or kg2?
Sent from my SGH-T839 using xda premium
Click to expand...
Click to collapse
no that wont matter at all! im gonna release some build.prop tweaks later that will make some improvement too! let me know how it goes thanks
tylermaciaszek said:
no that wont matter at all! im gonna release some build.prop tweaks later that will make some improvement too! let me know how it goes thanks
Click to expand...
Click to collapse
Gotchu
Sent from my SGH-T839 using xda premium
ChoctawT said:
Gotchu
Sent from my SGH-T839 using xda premium
Click to expand...
Click to collapse
these wont due as much as the build.prop likely will but you can try them and see a little improvement
They work great bro
Sent from my SGH-T959 using XDA App
hey help. well i dnt have init.d i have init. goldfish.sh.. any idea why?
Sent from my SGH-T839 using XDA App
HC13 said:
hey help. well i dnt have init.d i have init. goldfish.sh.. any idea why?
Sent from my SGH-T839 using XDA App
Click to expand...
Click to collapse
what rom you on?
stock KG2..
Sent from my SGH-T839 using XDA App
just make an init.d folder and it should be fine!
HC13 said:
stock KG2..
Sent from my SGH-T839 using XDA App
Click to expand...
Click to collapse
Stock kernels do not support init.d
ayoteddy said:
Stock kernels do not support init.d
Click to expand...
Click to collapse
oh oops!
so he has to flash a kernel or is there a way to get the init.d on the stock?
so kernel do i flash or do i have to flash a custom rom.
Sent from my SGH-T839 using XDA App
HC13 said:
so kernel do i flash or do i have to flash a custom rom.
Sent from my SGH-T839 using XDA App
Click to expand...
Click to collapse
you can flash a custom rom or just flash this kernel:
http://forum.xda-developers.com/showthread.php?t=1189151
i flash the kernel and i still dnt have the int.d...
now you can just add an init.d folder in system/etc and you will be good! i recommend flashing a custom rom as it will have other inti.d tweaks built in i like touchmiuiwize3.0 personally
but i have KG2 is it compatible ?
yeah it is compatible! these tweaks work on all phone!
All you need is a busybox that supports init.d installed. The kernel has nothing to do with it. Thats how it is with htc devices at least.
Sent from my Senseless Doubleshot using xda premium
Related
Tried it and it works, if the benefits are true i can't tell atm, but anyways, i want to share it with you
GadgetCheck said:
Introduction
TurboBoost is a script package by me, Now due to the time i took in building a working ICS port for SGS2 with Cyanogen and TeamHacksung i got to study a lot about the ICS framework and working. Now what i did was to apply the same tweaks i found there on to a GB rom and vola TurboBoost was born!
Benefits
Better performance, better battery life through Linux kernel tweaks catered for Android OS and flash memory.
Better battery life and performance through usage of screenstate_scaling whereby it switches governors/thresholds/VM depending on your screen state.
Better network throughput from TCP tweaks and 3G tweaks
Less RAM usage through zipalign.
Faster database access through defragmentization of sqlite db files (a lot of apps use Database to store data like Swype dictionaries, Game saves etc)
Faster disk access through remount script (noatime, disable barrier etc)
Less lags through Quasi-charger, with multitasking
Requirements
Android Gingerbread 2.3.x
At least 2MB free on /system (Delete unused ringtones or useless apps like Aldiko/Allshare etc).
Root
Kernel that supports init.d
Ext4 lagfix if you want to use the remount script
Instructions
For the time being this is for developers and advanced users only,
SO I WONT BE PROVIDING ANY CWM PACKAGES if you dont know what to do with the package better not touch it let the developers do it for you
Developed
This will Zipallign every system .apk and framework @Boot!
Credit to Doc from Hyperdroid team for it
Code:
for apk in /system/app/*.apk ; do
zipalign -c 4 $apk;
ZIPCHECK=$?;
if [ $ZIPCHECK -eq 1 ]; then
echo ZipAligning $(basename $apk) | tee -a $LOG_FILE;
zipalign -f 4 $apk /cache/$(basename $apk);
if [ -e /cache/$(basename $apk) ]; then
cp -f -p /cache/$(basename $apk) $apk | tee -a $LOG_FILE;
rm /cache/$(basename $apk);
else
echo ZipAligning $(basename $apk) Failed | tee -a $LOG_FILE;
fi;
else
echo ZipAlign already completed on $apk | tee -a $LOG_FILE;
fi;
done;
for apk in /system/framework/*.apk ; do
zipalign -c 4 $apk;
ZIPCHECK=$?;
if [ $ZIPCHECK -eq 1 ]; then
echo ZipAligning $(basename $apk) | tee -a $LOG_FILE;
zipalign -f 4 $apk /cache/$(basename $apk);
if [ -e /cache/$(basename $apk) ]; then
cp -f -p /cache/$(basename $apk) $apk | tee -a $LOG_FILE;
rm /cache/$(basename $apk);
else
echo ZipAligning $(basename $apk) Failed | tee -a $LOG_FILE;
fi;
else
echo ZipAlign already completed on $apk | tee -a $LOG_FILE;
fi;
done;
Touch Screen Sensitive FIX
Code:
echo 7035 > /sys/class/touch/switch/set_touchscreen;
echo 8002 > /sys/class/touch/switch/set_touchscreen;
echo 11000 > /sys/class/touch/switch/set_touchscreen;
echo 13060 > /sys/class/touch/switch/set_touchscreen;
echo 14005 > /sys/class/touch/switch/set_touchscreen;
In house ICS Developed Tweaks
Included libsqlite.so and libsqlite_ini.so from Android 4.0 (improves performance)
Included app_process and system_server from Android 4.0 (improves scrolling)
Included sqlite3 from Android 4.0
Included Vpn
Files In Package
xbin> openvpn & sqlite3
etc>>init.d> s78enable_touchscreen_1 , S95zipalign , S98CFSK & S98system_tweak
bin> app_process & system_server
lib> libncurses.so , libsqlite.so & libsqlite_jni.so
Important
Dont use a RAM script with this
Set the permissions to 777
Make sure if u use TB-V8 only use its content, and verify your personal tweaks dont tamper its functionality
Can be used on both CM and Sammy Rom's (But reminder i don't Guarantee ur phone will boot)
Credits
Zacharias.maladroit
XDA's devs for some reference of some tweaks in Zach's scripts
zeppelinrox Supercharger scripts
ChainFire - Touchscreen Tweaks
pikachu01-ThunderBolt! via S98system_tweak
@doctorcete- for the zipallinging
@All- if any one i have missed out!
Info for Developers: Please Give Due Credit's if you use it in your ROM's
And please use the thread for support and not PM!
Added a CWM Flash-able zip, try out and Report
Click to expand...
Click to collapse
Original thread: http://forum.xda-developers.com/showthread.php?t=1380006
it says no ram script..can i still use V6 Supercharger memory management?
Sounds really nice! I will try it.
does it work on sense roms?
VLADSLAYER said:
does it work on sense roms?
Click to expand...
Click to collapse
yes i have applied it on the one from PV Team. seems working but till now i can't any big difference
Can i flash this on cm7???
Sent from my HTC Desire S using xda premium
lavier said:
Can i flash this on cm7???
Sent from my HTC Desire S using xda premium
Click to expand...
Click to collapse
I guess you can. I did it
docertabum said:
I guess you can. I did it
Click to expand...
Click to collapse
Yaa i did it too
Sent from my HTC Desire S using xda premium
tcchuin said:
it says no ram script..can i still use V6 Supercharger memory management?
Click to expand...
Click to collapse
You can try, but at the text is at important: Dont use a RAM script with this.
Sry, to say.
Installed on cm7 so only time will tell here's hoping
Sent from my HTC Desire S using xda premium
MIUI
Very interesting.
There is no word about rom compatibility (Only that a gingerbread rom is needed).
It would be interesting if MIUI Rom's are supported? Those fixes sound very interesting and i think they can really help (Even my MIUI Rom has already a very great battery life)
Someone tested this?
---------- Post added at 07:46 PM ---------- Previous post was at 07:44 PM ----------
Tectas said:
Tried it and it works, if the benefits are true i can't tell atm, but anyways, i want to share it with you
Click to expand...
Click to collapse
can you give us a link to the original thread so we can click on the thanks button, and read the comments there for further information?
how did it go now? i wanna try it, did you just flashed the file?
Installed on cm7 so only time will tell here's hoping
Sent from my HTC Desire S using xda premium
Click to expand...
Click to collapse
Sent from my HTC Desire S
MarlX said:
how did it go now? i wanna try it, did you just flashed the file?
Just flashed thru recovery battery seems as if it's lasting longer but will need to test over a number of day's to see if it really does work
Sent from my HTC Desire S
Click to expand...
Click to collapse
Sent from my HTC Desire S using xda premium
Added the link.
Swyped from my desire s running damn sweet ice cream
If it's said ginger bread it's because it's universal.. Works with every phone, ROM, as long as it is GB. Like many scripts like super charger and so on.
what is the 777 permissions?
Is it
rw-r--r--
or
rwxr-xr--
or
else?
It is rwxrwxrwx
.
4=read
2=write
1=execute
4+2+1= 7
Sent from my Desire S using XDA App
init.d MIUI Rom?
A small side question.
I applied this and it seems there is not that much difference.
So i thought perhaps my kernel (the original kernel used in the HTC Desire S miui build) doesn't support init.d. How can i check i a kernel supports init.d scripts?
Regards,
Mike
mikep1993 said:
A small side question.
I applied this and it seems there is not that much difference.
So i thought perhaps my kernel (the original kernel used in the HTC Desire S miui build) doesn't support init.d. How can i check i a kernel supports init.d scripts?
Regards,
Mike
Click to expand...
Click to collapse
Cause the miui kernel is more or less the cyanogen kernel i can tell, it supports init.d
But to answer your question, within the etc folder should be the init.d folder with some scripts in it.
Hi,
Can someone tell me how to edit 10overclock file to use smartass governor in cronosX ?
Thank you.
Sent from my XT720 using XDA
Problem solved : there is simply to enter this lines :
insmod /system/lib/modules/smartass.ko
echo "smartass" > /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
It is possible to do that automatically at boot by adding this lines in 10overclock file.
Here is my custom 10overclock file if someone want to compare.
I compiled overclock modules to work with our kernel. I repeat i did not make modules i only compiled them.
Here is original thread:
You can change freq and voltage of cpu.
Thanks to whirleyes
http://forum.xda-developers.com/showthread.php?t=1754888
Usage:
Root is needed
copy symsearch.ko and cpu_control.ko to /system/lib/modules
change permissions to rw-r-r and owner to root-root
open terminal and type
Code:
su
insmod /system/lib/modules/symsearch.ko
insmod /system/lib/modules/cpu_control.ko
always load symsearch first.
to get default freq and voltage table:
Code:
cat /proc/cpu_control/opp_table_default
example for our cpu:
Id Freq Volt(mV)
0 300 1025
1 600 1200
2 800 1325
3 1000 1388
to get current freq and voltage table:
Code:
cat /proc/cpu_control/opp_table_current
to get current CPU & GPU frequency
Code:
cat /proc/cpu_control/frequency_current
to change freq and voltage type or make a script to do it:
echo id frequency(Mhz) voltage(mV) > /proc/cpu_control/tweak_cpu
Code:
echo 0 300 980 > /proc/cpu_control/tweak_cpu
echo 1 600 1200 > /proc/cpu_control/tweak_cpu
echo 2 800 1300 > /proc/cpu_control/tweak_cpu
echo 3 1200 1370 > /proc/cpu_control/tweak_cpu
You will have to try what is best for you.
And it is you own fault if you do something wrong with your phone. You are responsible for any damage not me.
This will work on all ICS omap4430 lg phones like p940 su640 su760 p760 p720 su870 with 3.0.21 kernel
Comfirmed working on L9:
http://forum.xda-developers.com/showthread.php?p=34192656
Attached OC modules for P940 Prada with 3.0.21-00002-OMAP-Android kernel TESTED working:
http://forum.xda-developers.com/showthread.php?p=34469297
Added modules for CM10
EDIT:
I found a way to add init.d support it works perfect:
http://forum.xda-developers.com/showthread.php?t=1938782
I Never get 4000 with gingerbread.
Only OC to 1200. Nice.
Sent from my LG-P940 using xda app-developers app
Once again Well Done!.
Your contributions to the P920 community are always appreciated.
At least from me. :thumbup:
Sent using xda app-developers app from my "4.0.4 SuperG Jellybeanized LG-P920"
This is awesome 4000 is crazy for 03D on a stock rom. IODAK
Lol the O3D has been Given new Life hehe
I wonder when will come GPU and RAM overclock :laugh:
Pesach85 said:
I wonder when will come GPU and RAM overclock :laugh:
Click to expand...
Click to collapse
There is no point in oc gpu. You dont get any speed up, bus is slow. RAM can be OC when source i out.
Sent from my LG-P940 using xda app-developers app
SU870 was supposed to be out like last week but i suppose they delay was they were maybe using same source for su760 now that it's out they shouldn't delay
OK, the insmod of this two modules can be added with the autostart.sh script of the other three modules, is right?
And the echo should be added into the init.d but is our actual kernel able to read init.d ?
Pesach85 said:
OK, the insmod of this two modules can be added with the autostart.sh script of the other three modules, is right?
And the echo should be added into the init.d but is our actual kernel able to read init.d ?
Click to expand...
Click to collapse
You can add insmod to autostart. Init.d is not supported by kernel. I run script manual it is safer if you set wrong or to big freq or voltage, so it dont get run on boot again.
Sent from my LG-P940 using xda app-developers app
Is it possible for someone to but together a flashable.zip of this, for us folks not really good with terminal... Please and thank you... Great work...
Sent from my Pimpout LG THRILL / LG-SU760 running 4.0.4 ICS.... Rooted...
Huge thanks this works great.
6400+ is a nice antutu score for stk rom at 1200.
Also you can use rom toolbox to make a module loading script and run at boot. It also has memory management, kernel, and sd read ahead tweaks that work on this rom.
Sent from my LG-P925 using xda premium
init.d support
Added how to add init.d support link to first post! Since we cant moddify boot.img to do it.
Do this mean we can flash zip in first post with cmw?
Sent from my Pimpout LG THRILL / LG-SU760 running 4.0.4 ICS.... Rooted...
dkdk1fam said:
Do this mean we can flash zip in first post with cmw?
Sent from my Pimpout LG THRILL / LG-SU760 running 4.0.4 ICS.... Rooted...
Click to expand...
Click to collapse
No. I dont see why cwm zip is needed it is not hard to copy two files in place.
Script is in the modules zip you just need to modify it how you like and run it.
Sent from my LG-P940 using xda app-developers app
iodak said:
I compiled overclock modules to work with our kernel. I repeat i did not make modules i only compiled them.
Here is original thread:
You can change freq and voltage of cpu.
Thanks to whirleyes
http://forum.xda-developers.com/showthread.php?t=1754888
Usage:
Root is needed
copy symsearch.ko and cpu_control.ko to /system/lib/modules
change permissions to rw-r-r and owner to root-root
open terminal and type
Code:
su
insmod /system/lib/modules/symsearch.ko
insmod /system/lib/modules/cpu_control.ko
always load symsearch first.
to get default freq and voltage table:
Code:
cat /proc/cpu_control/opp_table_default
example for our cpu:
Id Freq Volt(mV)
0 300 1025
1 600 1200
2 800 1325
3 1000 1388
to get current freq and voltage table:
Code:
cat /proc/cpu_control/opp_table_current
to get current CPU & GPU frequency
Code:
cat /proc/cpu_control/frequency_current
to change freq and voltage type or make a script to do it:
echo id frequency(Mhz) voltage(mV) > /proc/cpu_control/tweak_cpu
Code:
echo 0 300 980 > /proc/cpu_control/tweak_cpu
echo 1 600 1200 > /proc/cpu_control/tweak_cpu
echo 2 800 1300 > /proc/cpu_control/tweak_cpu
echo 3 1200 1370 > /proc/cpu_control/tweak_cpu
You will have to try what is best for you.
And it is you own fault if you do something wrong with your phone. You are responsible for any damage not me.
This will work on all ICS omap4430 lg phones like p940 su640 su760 p760 p720 su870 with 3.0.21 kernel
EDIT:
I found a way to add init.d support it works perfect:
http://forum.xda-developers.com/showthread.php?t=1938782
Click to expand...
Click to collapse
What do you mean by'' Open Terminal ???? what do i have to open? and how do i do it?
@tpag02 just instal terminal emulator from google play store.
Sent from my LG-P920 using xda app-developers app
skilovan said:
@tpag02 just instal terminal emulator from google play store.
Sent from my LG-P920 using xda app-developers app
Click to expand...
Click to collapse
Ok, thanks i did that, now my issue is that when i type those code for tweaking my device it says that cannot :S
iodak said:
Added how to add init.d support link to first post! Since we cant moddify boot.img to do it.
Click to expand...
Click to collapse
this can only be done in the bin file so have to reflash ics if boot.img is modified
This metod is working nice so is no need to do that.
Sent from my LG-P940 using xda app-developers app
tpag02 said:
Ok, thanks i did that, now my issue is that when i type those code for tweaking my device it says that cannot :S
Click to expand...
Click to collapse
Can you say what part did you do and what is the problem. Did you copied and insmod modules?
Sent from my LG-P940 using xda app-developers app
these will make your galaxy y fast and will enhance your touchscreen performance
on creeds romv3.5 using this tweeks i got antutu bench mark result of 1881 whereas on stock rom the result was 1841
I AM NOT RESPONSIBLE IF YOUR PHONE GOT BRICKED
METHOD 1
go to recovery mode and flash skvelocity.zip
and enjoyyyy
METHOD 2
copy skvelocity.zip
using root explorer go to etc
in int.d paste skvelocity.zip(if u dont have int.d create new folder named int.d)
and give all the permissions
and reboot.
PRESS THANKS IF I HELPED YOU
You never get stable benchmark results.
hell_lock said:
You never get stable benchmark results.
Click to expand...
Click to collapse
the results were almost stable with creeds rom v3.5 And i have not tried with other roms.......
the result with creeds rom v3.5 were in range of 1879-1882.I tried almost 10 times and got same results.....
bt the result with stock rom was 1841
sk.galaxy said:
the result with creeds rom v3.5 were in range of 1879-1882.I tried almost 10 times and got same results.....bt the result with stock rom was 1841
Click to expand...
Click to collapse
is this tweak made by you????
if no...give link to original thread...
can u explain what this trick actually do so that ..our galaxy y become fast????
waiting fr reply.....!
keshav258 said:
is this tweak made by you????
if no...give link to original thread...
can u explain what this trick actually do so that ..our galaxy y become fast????
waiting fr reply.....!
Click to expand...
Click to collapse
THIS IS MADE BY ME and ONLY ME ..so dont worry it works 100%
actually it increases multitasking ability
touchscreen sensitivity
and lot more.... see the benchmark result its 1881...
i think its one of highest for samsung galaxy y.....
press thanks if i helped
sk.galaxy said:
actually it increases multitasking ability
touchscreen sensitivity
and lot more.... see the benchmark result its 1881...
i think its one of highest for samsung galaxy y.....
press thanks if i helped
Click to expand...
Click to collapse
No its not...:sly:
Highest are 1900-2000 lol...
And 1800 down is like normal..?
么 动态 看浓雾 哇哈他 团伙 么按时
sk.galaxy said:
actually it increases multitasking ability
touchscreen sensitivity
and lot more.... see the benchmark result its 1881...
i think its one of highest for samsung galaxy y.....
press thanks if i helped
Click to expand...
Click to collapse
highest is around 2000+
@hell_lock: you can forget the old result which around 2000. you won't get that with the newest benchmarking app (antutu). new benchmarking app use different method to calculate the system performance. I never saw any result touch 1900 with the newest version. anyway, let's get to the business. @OP: I've seen the code and I found
Code:
echo 7035 > /sys/class/touch/switch/set_touchscreen;
echo 8002 > /sys/class/touch/switch/set_touchscreen;
echo 11000 > /sys/class/touch/switch/set_touchscreen;
echo 13060 > /sys/class/touch/switch/set_touchscreen;
echo 14005 > /sys/class/touch/switch/set_touchscreen;
sgy have different set of hardware and this part wont work.
Code:
setprop dalvik.vm.startheapsize 48;
setprop cm.filesystem.ready 1;
setprop oxygen.filesystem.ready 1;
1st line obviously never work on GB rom. 2nd and 3rd line doesn't have any effect on system performance.
it's seems that you've made a quite good job here for your first tweak. there are several aspect need some fixes but overall it's quite good for a daily usage tweak. there are also some aspect you could improve to get a better result but for a first made tweak, its indeed a nice stuff. keep it up mate.
kurotsugi said:
@hell_lock: you can forget the old result which around 2000. you won't get that with the newest benchmarking app (antutu). new benchmarking app use different method to calculate the system performance. I never saw any result touch 1900 with the newest version. anyway, let's get to the business. @OP: I've seen the code and I found
Code:
echo 7035 > /sys/class/touch/switch/set_touchscreen;
echo 8002 > /sys/class/touch/switch/set_touchscreen;
echo 11000 > /sys/class/touch/switch/set_touchscreen;
echo 13060 > /sys/class/touch/switch/set_touchscreen;
echo 14005 > /sys/class/touch/switch/set_touchscreen;
sgy have different set of hardware and this part wont work.
Code:
setprop dalvik.vm.startheapsize 48;
setprop cm.filesystem.ready 1;
setprop oxygen.filesystem.ready 1;
1st line obviously never work on GB rom. 2nd and 3rd line doesn't have any effect on system performance.
it's seems that you've made a quite good job here for your first tweak. there are several aspect need some fixes but overall it's quite good for a daily usage tweak. there are also some aspect you could improve to get a better result but for a first made tweak, its indeed a nice stuff. keep it up mate.
Click to expand...
Click to collapse
THANKS
hell_lock said:
highest is around 2000+
Click to expand...
Click to collapse
I HAVE DONE THE BENCHMARK RESULT WITH LATEST POSSIBLE VERSION OF
ANTUTU(V3.1.1) .U MAY BE TALKING ABOUT RESULT DONE WITH V2.9
Click to expand...
Click to collapse
hell_lock said:
highest is around 2000+
Click to expand...
Click to collapse
@hell_lock Where can i get this kind of tweak to make my phone possible to reach 2000+ ?? Please reply... thanks...
Sent from my GT-S5360 using xda app-developers app
use chainfire and clear ram before starting antutu.
Sire all I can get is 1800+ not beyond that ... Even though i clear my RAM and use CF3d ...
My RAM usage always go down to 77.6 mb when I clear my RAM
Sent from my GT-S5360 using xda app-developers app
Friendzzz.... do not use with evolution rom the rom is itself awesome but any yweak on it it may lead to problem with customization and your phone may also go brick off...
Tested Velocity on evo x3
Sent from my GT-S5360 using Tapatalk 2
jasonxD said:
么 动态 看浓雾 哇哈他 团伙 么按时
Click to expand...
Click to collapse
Lol I'm a Chinese and I can assure you that line doesn't make sense
Saving the universe, one game at a time.
Wer can i download dis app to see my sgy score??
Sent from my GT-S5360 using xda app-developers app
Dhaval Bhatt said:
Wer can i download dis app to see my sgy score??
Sent from my GT-S5360 using xda app-developers app
Click to expand...
Click to collapse
Antutu it wasn't that hard...
kurotsugi said:
@hell_lock: you can forget the old result which around 2000. you won't get that with the newest benchmarking app (antutu). new benchmarking app use different method to calculate the system performance. I never saw any result touch 1900 with the newest version. anyway, let's get to the business. @OP: I've seen the code and I found
Code:
echo 7035 > /sys/class/touch/switch/set_touchscreen;
echo 8002 > /sys/class/touch/switch/set_touchscreen;
echo 11000 > /sys/class/touch/switch/set_touchscreen;
echo 13060 > /sys/class/touch/switch/set_touchscreen;
echo 14005 > /sys/class/touch/switch/set_touchscreen;
sgy have different set of hardware and this part wont work.
Code:
setprop dalvik.vm.startheapsize 48;
setprop cm.filesystem.ready 1;
setprop oxygen.filesystem.ready 1;
1st line obviously never work on GB rom. 2nd and 3rd line doesn't have any effect on system performance.
it's seems that you've made a quite good job here for your first tweak. there are several aspect need some fixes but overall it's quite good for a daily usage tweak. there are also some aspect you could improve to get a better result but for a first made tweak, its indeed a nice stuff. keep it up mate.
Click to expand...
Click to collapse
everytime kuro reply,, many others learned,, like me.....LOL
This is my first contribution to galaxy y forum.I hope you like it
Indroducing you my first script "plasma tweak" to boost your proccessor and decreace lag as possible.
This script is very simple , as I said it's my first work and I am still learning.please If you found it useless just dont try it and dont flame me. JUST DONT TRY.
Here we go,
Requirments :
-rooted galaxy y
-busybox installed
-a kernel with init.d support
Click to expand...
Click to collapse
Installation:
-download the script
-copy to /system/etc/init.d
-set permission to rw xr x
-enjoy
Click to expand...
Click to collapse
changelog:
v0.1 : initial release
Click to expand...
Click to collapse
v0.2 :
-minor change in cpu tweak
-added internet tweak
-added SD tweak
Click to expand...
Click to collapse
Click to expand...
Click to collapse
Download :
v0.1 https://db.tt/8P4Ozt5a
v0.2 https://www.dropbox.com/s/jt9ahuvd6nte2go/01PlasmaTweak
Click to expand...
Click to collapse
credits :
me
lucius.zen for his guide
Click to expand...
Click to collapse
press thanks if you liked my work
you should add the info that we must delete the "txt" ending of the filename,otherwise it dont work.
Nice start! As -CALIBAN666- said, you will have to remove the ".txt" extension. This script changes your CPU frequency and governor.
In your script you will only need one
Code:
#!/system/bin/sh
I suggest you to keep the Min. frequency at 312MHz or 156Mhz. Yes, keeping the Min. frequency at 832Mhz will improve your devices' performance at the cost of battery life.
Code:
echo "832000" > /sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq
echo "312000" > /sys/devices/system/cpu/cpu0/cpufreq/scaling_min_freq
or
Code:
echo "156000" > /sys/devices/system/cpu/cpu0/cpufreq/scaling_min_freq
If you need help with scripts just PM me, I'll be happy to help.
Ah nice try!
Best of luck mate!
Sent from my GT-S5360
-CALIBAN666- said:
you should add the info that we must delete the "txt" ending of the filename,otherwise it dont work.
Click to expand...
Click to collapse
I added that, thanks for advice
Sent from my GT-S5360 using Tapatalk 2
fifa2151 said:
Ah nice try!
Best of luck mate!
Sent from my GT-S5360
Click to expand...
Click to collapse
Thanks for encouragment
Ne.xt said:
Nice start! As -CALIBAN666- said, you will have to remove the ".txt" extension. This script changes your CPU frequency and governor.
In your script you will only need one
Code:
#!/system/bin/sh
I suggest you to keep the Min. frequency at 312MHz or 156Mhz. Yes, keeping the Min. frequency at 832Mhz will improve your devices' performance at the cost of battery life.
Code:
echo "832000" > /sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq
echo "312000" > /sys/devices/system/cpu/cpu0/cpufreq/scaling_min_freq
or
Code:
echo "156000" > /sys/devices/system/cpu/cpu0/cpufreq/scaling_min_freq
If you need help with scripts just PM me, I'll be happy to help.
Click to expand...
Click to collapse
I will try this when I am back from school hope me luck with the exam
Sent from my GT-S5360 using Tapatalk 2
i try it on my lg overclocked to 1.1 ghz,seems very cool because its very tiny.:good:
-CALIBAN666- said:
i try it on my lg overclocked to 1.1 ghz,seems very cool because its very tiny.:good:
Click to expand...
Click to collapse
Good
Sent from my GT-S5360 using Tapatalk 2