[SCRIPT/GUIDE] How To Improve Multitasking On Stock Jelly Bean 4.3 With Simple Script - Sony Xperia T, TL, TX, V

Hello Xperia friends....
Since we are updating our software to Official Jelly Bean 4.3, we all know that Jelly Bean 4.3 is not good on management RAM compared with Official Jelly Bean 4.1
so i want share some tips for you that may improve Multitasking
Requirement :
1. Rooted
2. Busybox installed
build.prop
you can add all this code
Code:
# Enable Purgeable Assets to free up more RAM when needed
persist.sys.purgeable_assets=1
# Lock Launcher in Memory
ro.HOME_APP_ADJ=1
OOM Groupings (choose ONLY one, Medium or High)
1. Medium OOM Groupings
Code:
# Mid OOM Groupings
ro.FOREGROUND_APP_MEM=6400
ro.VISIBLE_APP_MEM=8960
ro.SECONDARY_SERVER_MEM=14080
ro.BACKUP_APP_MEM=17920
ro.HOME_APP_MEM=3200
ro.HIDDEN_APP_MEM=17920
ro.EMPTY_APP_MEM=64000
ro.PERCEPTIBLE_APP_MEM=3200
ro.HEAVY_WEIGHT_APP_MEM=14080
ro.CONTENT_PROVIDER_MEM=38400
ro.FOREGROUND_APP_ADJ=25
ro.VISIBLE_APP_ADJ=35
ro.SECONDARY_SERVER_ADJ=55
ro.BACKUP_APP_ADJ=56
ro.HOME_APP_ADJ=26
ro.EMPTY_APP_ADJ=69
ro.HIDDEN_APP_MIN_ADJ=250
ro.PERCEPTIBLE_APP_ADJ=27
ro.HEAVY_WEIGHT_APP_ADJ=36
ro.CONTENT_PROVIDER_ADJ=70
ENFORCE_PROCESS_LIMIT=false
MAX_SERVICE_INACTIVITY=false
MIN_HIDDEN_APPS=false
MAX_HIDDEN_APPS=false
CONTENT_APP_IDLE_OFFSET=false
EMPTY_APP_IDLE_OFFSET=false
MAX_ACTIVITIES=false
ACTIVITY_INACTIVE_RESET_TIME=false
MAX_RECENT_TASKS=false
MIN_RECENT_TASKS=false
APP_SWITCH_DELAY_TIME=false
MAX_PROCESSES=false
PROC_START_TIMEOUT=false
CPU_MIN_CHECK_DURATION=false
GC_TIMEOUT=false
SERVICE_TIMEOUT=false
MIN_CRASH_INTERVAL=false
2. High OOM Groupings
Code:
# High OOM Groupings
ro.FOREGROUND_APP_MEM=6400
ro.VISIBLE_APP_MEM=8960
ro.SECONDARY_SERVER_MEM=19200
ro.BACKUP_APP_MEM=23040
ro.HOME_APP_MEM=3200
ro.HIDDEN_APP_MEM=23040
ro.EMPTY_APP_MEM=64000
ro.PERCEPTIBLE_APP_MEM=3200
ro.HEAVY_WEIGHT_APP_MEM=19200
ro.CONTENT_PROVIDER_MEM=38400
ro.FOREGROUND_APP_ADJ=25
ro.VISIBLE_APP_ADJ=35
ro.SECONDARY_SERVER_ADJ=75
ro.BACKUP_APP_ADJ=76
ro.HOME_APP_ADJ=26
ro.EMPTY_APP_ADJ=89
ro.HIDDEN_APP_MIN_ADJ=250
ro.PERCEPTIBLE_APP_ADJ=27
ro.HEAVY_WEIGHT_APP_ADJ=36
ro.CONTENT_PROVIDER_ADJ=90
ENFORCE_PROCESS_LIMIT=false
MAX_SERVICE_INACTIVITY=false
MIN_HIDDEN_APPS=false
MAX_HIDDEN_APPS=false
CONTENT_APP_IDLE_OFFSET=false
EMPTY_APP_IDLE_OFFSET=false
MAX_ACTIVITIES=false
ACTIVITY_INACTIVE_RESET_TIME=false
MAX_RECENT_TASKS=false
MIN_RECENT_TASKS=false
APP_SWITCH_DELAY_TIME=false
MAX_PROCESSES=false
PROC_START_TIMEOUT=false
CPU_MIN_CHECK_DURATION=false
GC_TIMEOUT=false
SERVICE_TIMEOUT=false
MIN_CRASH_INTERVAL=false
init.d
LOW MEMORY KILLER (choose ONLY one, Medium or High)
make a new file (Whatever the name but don't give space) then add all this code
1. Medium
Code:
#!/system/bin/sh
# Mid Minfree Values
echo "6400,8960,14080,17920,38400,64000" > /sys/module/lowmemorykiller/parameters/minfree
echo "16" > /sys/module/lowmemorykiller/parameters/cost
echo "1" > /sys/module/lowmemorykiller/parameters/lmk_fast_run
2. High
Code:
#!/system/bin/sh
# High Minfree Values
echo "6400,8960,19200,23040,38400,64000" > /sys/module/lowmemorykiller/parameters/minfree
echo "16" > /sys/module/lowmemorykiller/parameters/cost
echo "1" > /sys/module/lowmemorykiller/parameters/lmk_fast_run
zRAM Compression
make a new file (Whatever the name but don't give space) then add all this code
Code:
#!/system/bin/sh
# 128mb zRam Compression
/system/xbin/busybox mkswap /dev/block/zram0
/system/xbin/busybox swapon /dev/block/zram0
echo 134217728 > /sys/block/zram0/disksize
Now you need to fix permissions!!!
use this script for recovery
Code:
set_perm_recursive(0, 0, 0777, 0777, "/system/etc/init.d");
it will run automatically...
Flashable.zip at attachcement, just download it and flash
Enjoy :laugh:

looks great
Sent from my Xperia T using XDA Premium 4 mobile app

Rizal Lovins said:
Hello Xperia friends....
Now you need to fix permissions!!!
use this script for recovery
Code:
set_perm_recursive(0, 0, 0777, 0777, "/system/etc/init.d");
it will run automatically...
Enjoy :laugh:
Click to expand...
Click to collapse
I dont understand exactly about " fix permissions and use script for recovery " could u explain more clearly :silly: what i have to do after add all code to buildprob

Oohhlala said:
I dont understand exactly about " fix permissions and use script for recovery " could u explain more clearly :silly: what i have to do after add all code to buildprob
Click to expand...
Click to collapse
i mean, it's for script recovery, okay i upload the file in OP, just download it and flash

Very useful guide!
By seeing this im thinking that init.d support which kills the apps in bg and makes the rom laggy and redraws.
Sent from my LT25i using XDA Premium 4 mobile app

how about this tweak by @nreuge http://forum.xda-developers.com/showthread.php?t=2652469? which one is better ?

ghemanth said:
Very useful guide!
By seeing this im thinking that init.d support which kills the apps in bg and makes the rom laggy and redraws.
Sent from my LT25i using XDA Premium 4 mobile app
Click to expand...
Click to collapse
No redraw even you use Movies, you can try it
devilmaycry2020 said:
how about this tweak by @nreuge http://forum.xda-developers.com/showthread.php?t=2652469? which one is better ?
Click to expand...
Click to collapse
It's maybe full tweaks and it's great, this ONLY for multitasking, you can try this

Rizal Lovins said:
No redraw even you use Movies, you can try it
It's maybe full tweaks and it's great, this ONLY for multitasking, you can try this
Click to expand...
Click to collapse
Oooops. Had a home redraw after exiting movies
I had a very heavy net surfing and facebook but after all its so smooooth n no redraw but movies app gave me a redraw

Rizal Lovins said:
i mean, it's for script recovery, okay i upload the file in OP, just download it and flash
Click to expand...
Click to collapse
Thanks for easy way to install
I have used app setting modul to keep home in memory so i never have red raw. This script will conflict with module?. And how to check this script working or not? and need to use busybox ?
sorry for many question im noob

Thanks for this, how can i check workin this script?:cyclops:

Oohhlala said:
Thanks for easy way to install
I have used app setting modul to keep home in memory so i never have red raw. This script will conflict with module?. And how to check this script working or not? and need to use busybox ?
sorry for many question im noob
Click to expand...
Click to collapse
What configuration do you use in app setting for keeping home in memory?
Enviado desde mi Xperia T mediante Tapatalk

moliverac8 said:
What configuration do you use in app setting for keeping home in memory?
Enviado desde mi Xperia T mediante Tapatalk
Click to expand...
Click to collapse
just check " resident " in appsetting

thank you man! will monitor more feedback later
no need to edit build.prop right?just flash the zip

hi
thanks
i flash the zip file and edit the build.prop
or just flash the zip file?

will this work on Miui rom coz it has the worst ram management?

Dam* awesome job here!!:thumbup:
Sent from my LT29i using XDA Premium 4 mobile app

Will it work on stock kernel? Or I need to enable init.d support?
As you didn't mentioned init.d in requirements!!
Sent from my C1905 using XDA Premium 4 mobile app

Related

[TWEAKS] Script for Speed/Battery/IO Scheduler and Governor changer

Hi everybody!
I've compiled a script with a few tweaks based on knzo post
This works on CM7, should work on stock also!
I've also added to the script a few lines to change the IO Scheduler and governor. You just have to edit the attachment (unzip it first ) and remove the "#" before the line you want to apply (I've just add the lines depending if you have CM7's stock kernel or huexxx kernel, but you can edit for any kernel, you just have to edit for the governor/io schedulers available or just leave that lines commented).
# change Governor
# Huexxx's kernel
# echo interactivex > /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor;
# change IO Scheduler
# CM7's kernel
# echo "noop" > /sys/block/mmcblk0/queue/scheduler;
# Huexxx's kernel
# echo "sio" > /sys/block/mmcblk0/queue/scheduler;
.....​
After this, do this steps:
1 - Install SManager
2 - Open SManager and go to the script, I put it in /data/script
3 - Single click the script "74diogo" and check "Su" and "Boot" and then save.
4 - Just reboot.
Note: It could take a minute or two to change the governor in Cyanogenmod settings.
That is it!
Feel free to leave to give your feedback
By the way... When I changed the default governor via CM settings and applied at boot, the phone becomes very slow in the first minute after boot...
Changing the governor with this script, that slow performance disappears
Also, you can activate JIT, use 16 bit transparency and disable scrolling cache (force disable) for a little speed and smooth...
I get a lot of not found errors is that normal? And also a lot of permission denied.
a_alex_1993 said:
I get a lot of not found errors is that normal? And also a lot of permission denied.
Click to expand...
Click to collapse
Yeah. You should choose the option "boot" and "su" and reboot. The settings will apply.
You can't change some values while the system is running... that is why there are those errors.
Thank you for your help. I get it now. But can we use a other scripts like v6supercharger and should we expect any improvements from them if we already have this script?
a_alex_1993 said:
Thank you for your help. I get it now. But can we use a other scripts like v6supercharger and should we expect any improvements from them if we already have this script?
Click to expand...
Click to collapse
Yeah, it is possible. v6supercharger could change some values that this script change. Try both
I guess both at the same time won't work right?
a_alex_1993 said:
I guess both at the same time won't work right?
Click to expand...
Click to collapse
It should work. I don't see why not
Did you notice any difference using my script?
I did actually, Cm7 was already pretty smooth but at boot up after the script manager gets root permission it loads a lot faster than before, by this I mean that the starting lag lasts a lot less. As for general use it works great but it also worked great before so I can't really tell. I noticed an improved battery performance too.
So all in all it's great
a_alex_1993 said:
I did actually, Cm7 was already pretty smooth but at boot up after the script manager gets root permission it loads a lot faster than before, by this I mean that the starting lag lasts a lot less. As for general use it works great but it also worked great before so I can't really tell. I noticed an improved battery performance too.
So all in all it's great
Click to expand...
Click to collapse
That is great!
Topic is missleadinng.
dflt said:
Topic is missleadinng.
Click to expand...
Click to collapse
Why? Do you have any suggestion?
You can push that values in a file an add them to init.d folder and by this way removing the use of script manager. My two cents.
FDN
re4lsk said:
You can push that values in a file an add them to init.d folder and by this way removing the use of script manager. My two cents.
FDN
Click to expand...
Click to collapse
I tried that and it didn't work... at least in CM7
dcop7 said:
I tried that and it didn't work... at least in CM7
Click to expand...
Click to collapse
did you changed the permissions?
re4lsk said:
did you changed the permissions?
Click to expand...
Click to collapse
Yeah, or maybe I did something wrong. Did you manage to do that?
Works on Zeus 6.28n ?'
Sent from my LG-P970 using xda premium. If I Helped You Hit The Thank Boutton. Jizzz
Cedlad said:
Works on Zeus 6.28n ?'
Sent from my LG-P970 using xda premium. If I Helped You Hit The Thank Boutton. Jizzz
Click to expand...
Click to collapse
I should work!
Just have to edit (or don't use) the lines to change the governor and IO scheduler.
To edit, just put the name of the desired (and available) governor and IO Scheduler

[Tweak] Build.prop tweaks and Battery life

Hi all,
Today I am receive private message from @Amohell xda member about battery tweak in Build.prop from this thread http://forum.xda-developers.com/showthread.php?t=1786121
I make CWM installer from this tweak.We can test and report back for result.
I hope it help we for battery life.
This file flash via CWM after you flash this please wipe caches before reboot to system.
===============================================================================
update 20121014
new build.prop as below in CWM_build_prop_tweak_signed.zip
Code:
#### New Tweaks : somboons ####
debug.composition.type=hw
persist.android.strictmode=0
persist.sys.ui.hw=true
ro.com.google.networklocation=0
ro.config.nocheckin=1
ro.vold.umsdirtyratio=20
dalvik.vm.checkjni=false
dalvik.vm.execution-mode=int:jit
profiler.force_disable_err_rpt=1
profiler.force_disable_ulog=1
#Force launcher into memory
ro.HOME_APP_ADJ=1
#Raise JPG quality to 100%
ro.media.enc.jpeg.quality=100
#Render UI with GPU
debug.sf.hw=1
#Decrease dialing out delay
ro.telephony.call_ring.delay=0
#Helps scrolling responsiveness
windowsmgr.max_events_per_sec=150
#Save battery
wifi.supplicant_scan_interval=180
pm.sleep_mode=1
ro.ril.disable.power.collapse=0
#Increase overall touch responsiveness
debug.performance.tuning=1
video.accelerate.hw=1
#Raise photo and video recording quality
ro.media.dec.jpeg.memcap=8000000
ro.media.enc.hprof.vid.bps=8000000
#Signal (3G) tweaks
ro.ril.hsxpa=2
ro.ril.gprsclass=10
ro.ril.hep=1
ro.ril.enable.dtm=1
ro.ril.hsdpa.category=10
ro.ril.enable.a53=1
ro.ril.enable.3g.prefix=1
ro.ril.htcmaskw1.bitmask=4294967295
ro.ril.htcmaskw1=14449
ro.ril.hsupa.category=5
#Net speed tweaks
net.tcp.buffersize.default=4096,87380,256960,4096,16384,256960
net.tcp.buffersize.wifi=4096,87380,256960,4096,16384,256960
net.tcp.buffersize.umts=4096,87380,256960,4096,16384,256960
net.tcp.buffersize.gprs=4096,87380,256960,4096,16384,256960
net.tcp.buffersize.edge=4096,87380,256960,4096,16384,256960
#Disable blackscreen issue after a call
ro.lge.proximity.delay=25
mot.proximity.delay=25
#Fix some application issues
ro.kernel.android.checkjni=0
#Phone will not wake up from hitting the volume rocker
ro.config.hwfeature_wakeupkey=0
#Force button lights on when screen is on
ro.mot.buttonlight.timeout=0
#Miscellaneous flags
ro.config.hw_menu_unlockscreen=false
persist.sys.use_dithering=0
persist.sys.purgeable_assets=1
dalvik.vm.dexopt-flags=m=y
ro.mot.eri.losalert.delay=1000
#Specifics to some LG devices
persist.service.pcsync.enable=0
persist.service.lgospd.enable=0
user.feature.flex=true
user.feature.lgdrm=false
user.feature.lgresource=false
user.feature.lgpoweroff=false
user.feature.ls_event=false
user.feature.ls_normal=false
user.feature.sui=false
somboons said:
Hi all,
Today I am receive private message from @Amohell xda member about battery tweak in Build.prop from this thread http://forum.xda-developers.com/showthread.php?t=1786121
I make CWM installer from this tweak.We can test and report back for result.
I hope it help we for battery life.
This file flash via CWM after you flash this please wipe caches before reboot to system.
Click to expand...
Click to collapse
Can you explain what it does?
_RSAobj said:
Can you explain what it does?
Click to expand...
Click to collapse
#!/sbin/sh
# somboons
# Extra tweaks for build.prop
mkdir /sdcard/backuptweak
cp /system/build.prop /sdcard/backuptweak
echo "" >> /system/build.prop
echo "ro.ril.disable.power.collapse=0" >> /system/build.prop
echo "pm.sleep_mode=1" >> /system/build.prop
echo "debug.performance.tuning=1" >> /system/build.prop
echo "debug.composition.type=hw" >> /system/build.prop
echo "debug.sf.hw=1" >> /system/build.prop
echo "persist.android.strictmode=0" >> /system/build.prop
echo "persist.sys.use_dithering=1" >> /system/build.prop
echo "persist.sys.ui.hw=true" >> /system/build.prop
echo "persist.sys.purgeable_assets=1" >> /system/build.prop
echo "ro.com.google.networklocation=0" >> /system/build.prop
echo "ro.kernel.android.checkjni=0" >> /system/build.prop
echo "ro.config.nocheckin=1" >> /system/build.prop
echo "ro.vold.umsdirtyratio=20" >> /system/build.prop
echo "dalvik.vm.checkjni=false" >> /system/build.prop
echo "dalvik.vm.execution-mode=int:jit" >> /system/build.prop
echo "video.accelerate.hw=1" >> /system/build.prop
echo "windowsmgr.max_events_per_sec=240" >> /system/build.prop
echo "profiler.force_disable_err_rpt=1" >> /system/build.prop
echo "profiler.force_disable_ulog=1" >> /system/build.prop
touch /data/local/tmp/somboons
echo "done!!!" >> /data/local/tmp/somboons
Click to expand...
Click to collapse
It combines serveral Known Buildprop Tweaks.
Just copied the lines to build.prop
Now see how it goes.
Sent from my LG-P880 using xda app-developers app
any improvement?
after using the value, the battery use goes fc.
and some of the value is unnecessary
Sent from my LG-P880 using xda premium
Update new tweak build.prop.please help me to test .first I install via CWM pass not bootloop or stuck LG logo.
somboons said:
Update new tweak build.prop.please help me to test .first I install via CWM pass not bootloop or stuck LG logo.
Click to expand...
Click to collapse
it boots
somboons said:
Update new tweak build.prop.please help me to test .first I install via CWM pass not bootloop or stuck LG logo.
Click to expand...
Click to collapse
Edit manuel the lines to build.prop.
+1 boot
See how it goes
Sent from my LG-P880 using xda app-developers app
any overall improvement ???? after boot..better batery life?
better speed? please feedback
So your posting some build.prop "tweak" not even knowing what the lines exactly do or even if they work.. Great stuff.
I am testing now .It is many line .it is so good if anyone help me to test.
why do you are not help me to test I think as well as waiting me to tell any improvement
If you think it is not help you I reccommand not flash and I request
mod to close and lock this thread.
Sent from my LG-P880 using xda app-developers app
somboons said:
I am testing now .It is many line .it is so good if anyone help me to test.
why do you are not help me to test I think as well as waiting me to tell any improvement
If you think it is not help you I reccommand not flash and I request
mod to close and lock this thread.
Sent from my LG-P880 using xda app-developers app
Click to expand...
Click to collapse
To be honest I did not use/test it. If someone creates a post with some random build.prop "Tweaks" and does not know what he really is doing I will not test it. Try to study the lines and know what they mean before posting "Garbage" on the forums.
Use the latest tweaks.
No errors or FC's, but why use android system so much %??
Sent from my LG-P880 using xda app-developers app
my android system.
Sent from my LG-P880 using xda app-developers app
nothing here
please, bear in mind, thats a percentage used..
in terms of others..
its more of a comparision rather than time spent or actual battery consumed
I didn't root and I am in stock v10e of India and my battery performance
Sent from my LG-P880 using xda app-developers app
nevermind
hietsu said:
nevermind
Click to expand...
Click to collapse
Don't post some ****ty words. If you are not interested with the thread , just leave it and play away with small minded people due to your post.
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Thanks developer (somboons) for uploading cool files to improve our device and please keep up for that.
Best regards,
Now,I can not test some tweak in thread cause I bring my 4XO to service center for repaire touchscreen crack.

UNIVERSAL C0$M!c Mods

Pre Requisites :
*Root Access
*ROM with init.d present
Note:-
This is a universal mod and will work on any device and any ROM
If you see "for Simplicity v5" in the updater Script, Don't worry, its there just because it was first made for that awesome ROM
LightSpeed Intervention
or
Smoothness and script Tweak​
I don't know why but when I installed Simplicity, RAM consumption was very high even after opening 2 apps. (More than 200)
So, I included loopy smoothness, adrenaline script and simplicity is simply like a RED BULL
So, what does the mod do?
It gives your mobile wings
Smoothness by loopy smoothness
Better RAM consumption by adrenaline tweak
And prerajulisation and farhanitration by kuro Tweaks and other Tweaks
RAM consumption is great and also device is very snappy
Consists of :-
ZRam Tweak
Adrenaline Tweak
Loopy Smoothness Tweak
Kuro Tweak 1
Kuro Tweak 2
Sysctl Tweak
Droidwall Modules​
Download​
Stellar Robotic Intervention
​
What's in it?
Sounds Great?
Just Roboto Font, yeah, just it
Download​
Credits:-​
Thanks kewkie for the idea of name of the mod
Lightspeed Intervention:-​
ImbaWind for Adrenaline script
lpy for loopysmoothness
kurotsugi for kuro Tweak
Sysctl and Droidwall devs for them (Too lazy me and too laggy net to search)
Stellar Robotic Intervention:-​Google for Roboto font
Instructions:-
​They are at last because very less people read them
Though all the mods are tested both on stock and CWM recovery, you have the choice to use any one of them
These all mods mount and unmount partition and set the permissions automatically, so no no need tod o it, but these steps shown in instructions are shown to be done if everything else fails
1. Download desired mod
2. Place it in the root of your sdcard(Preferred)
3. Reboot into recovery
4. Mount /system(Do if installation fails)
5. Install zip from sdcard
6. Read what appears on screen
7. Reboot
8. Enjoy
Thanks for this...
But sysctl in kuro is not too good...
Sugesstion, add more and change value in sysctl.
Some tweak in kuro1 is not compatible... (i think)
Sorry if im false..
I will staytune in here.nn hope this will be great weak... For sgyd...:thumbup::thumbup::thumbup::thumbup::thumbup:
Sent from my GT-S6102 using Tapatalk 2
great work sir.... this is very useful to us...
thanks for this..
pressed:good::good::good::good::good:
tjbearX said:
great work sir.... this is very useful to us...
thanks for this..
pressed:good::good::good::good::good:
Click to expand...
Click to collapse
Plzz dont copy op.
Sent from my GT-S6102 using xda app-developers app
It is great
I have tested it on my friend's phone
No problem at all
And smooth phone
Me and my friends including have 4 phones
So I test everything before posting
Me - S5830i
My friend
Samsung Galaxy Y
Samsung Galaxy Y Duos
Micromax A90s
Recently, I will test and post the mod for Galaxy Mini
----------------------------------------------------​Don't forget to Thank
Tested it working fine..great work..
Thankss!!
Sent from my GT-S6102 using xda app-developers app
Will this work in Celkon A89?it's rooted.......and any SS for this rom
lavadepa said:
Will this work in Celkon A89?it's rooted.......and any SS for this rom
Click to expand...
Click to collapse
its clearly stated its for all android devices..and its not a rom:sly:
Sent from my GT-S6102 using xda app-developers app
insmod /system/lib/modules/lzo_compress.ko
insmod /system/lib/modules/lzo_decompress.ko
insmod /system/lib/modules/zram.ko
??
Where are these modules?
In your zip is only script files....
raw99 said:
insmod /system/lib/modules/lzo_compress.ko
insmod /system/lib/modules/lzo_decompress.ko
insmod /system/lib/modules/zram.ko
??
Where are these modules?
In your zip is only script files....
Click to expand...
Click to collapse
These files are kernel and device specific
So I removed them when releasing for this mobile and to make it universal
However, rest of the script works flawlessly
And it was specially made for better Ram consumption, so it is not a problem with Zram and other tweaks
iamareebjamal said:
These files are kernel and device specific
So I removed them when releasing for this mobile and to make it universal
However, rest of the script works flawlessly
And it was specially made for better Ram consumption, so it is not a problem with Zram and other tweaks
Click to expand...
Click to collapse
Thanks for info...
LEGAL bump
iamareebjamal said:
LEGAL bump
Click to expand...
Click to collapse
There is hardly any threads active here.. no need of a bump.. and this thread isn't a thread which you need response to.. so try not to bump it again.. for sake of bump..
____________________________________
“If you wait to do everything until you’re sure it’s right, you’ll probably never do much of anything.” –Win Borden
Deadly. said:
There is hardly any threads active here.. no need of a bump.. and this thread isn't a thread which you need response to.. so try not to bump it again.. for sake of bump..
____________________________________
“If you wait to do everything until you’re sure it’s right, you’ll probably never do much of anything.” –Win Borden
Click to expand...
Click to collapse
Ok Thanks for the information
no difference in ram consumption
After installing this mod on my stock rom I am able to see a increase in read and write speed of scard but ram consumption is still the same on my galaxy y duos.
amit34521 said:
After installing this mod on my stock rom I am able to see a increase in read and write speed of scard but ram consumption is still the same on my galaxy y duos.
Click to expand...
Click to collapse
Maybe you have another mods which hinder its working
iamareebjamal said:
Maybe you have another mods which hinder its working
Click to expand...
Click to collapse
no i havent installed any up until this one.

Your experiences with cocore8 and v6supercharger

Hey xda-community .
I'm new in rooting and have some questions ^^.
I have a S Advance i9070 (with JellyMod4) and want to know your experiences with the v6supercharger and cocore8.
Btw: is setcpu needed or is the script and cocore doing all it self ?
(And did someone got the aosp browser from 4.3 on the i9070 to work ?)
Greets, misterNewbee
Sent from my GT-I9070 using xda app-developers app
MisterNewbee said:
Hey xda-community .
I'm new in rooting and have some questions ^^.
I have a S Advance i9070 (with JellyMod4) and want to know your experiences with the v6supercharger and cocore8.
Btw: is setcpu needed or is the script and cocore doing all it self ?
(And did someone got the aosp browser from 4.3 on the i9070 to work ?)
Greets, misterNewbee
Sent from my GT-I9070 using xda app-developers app
Click to expand...
Click to collapse
I advice to you to flash harsh jelly 3.0 with cocore. Performance are awesome
You have to use set cpu or nofrills when you want to change the governors and I/O scheduler, if not, don't use them
For the browser..I think not
maurus1998 said:
I advice to you to flash harsh jelly 3.0 with cocore. Performance are awesome
You have to use set cpu or nofrills when you want to change the governors and I/O scheduler, if not, don't use them
For the browser..I think not
Click to expand...
Click to collapse
I remind to read somewhere that it is only possible to change the frequences with adb or terminal. Is this true or is it possible to change it with apps like setcpu (or no-frills) ?
And what does the harshjelly tweaker do ?
(How to understand tweaks ? :/)
Thank you for the answers :thumbup:
MisterNewbee said:
I remind to read somewhere that it is only possible to change the frequences with adb or terminal. Is this true or is it possible to change it with apps like setcpu or no-frills ?
To the governors and i/o sheduler, can you recommend me some ?
And what does the harshjelly tweaker do ?
(How to understand tweaks ? :/)
Thank you for the answers :thumbup:
Click to expand...
Click to collapse
Yes with set cpu you can only change gov and io and I prefer using pegasusq and sio as scheduler.
Harsh tweaker is an app that has some tweaks like disable or enable the crt effect, to enable or disable cache scrolling, enable logging, enable 360º rotation,enable the long press to kill and other tweaking
There is always in harsh jelly a command that you can write in the terminal emulator (typing harsh_controls) that can do some very useful things like zipalingn all the apps, vacuum and reindex you databases (it makes your phone less 'dirty' and so it makes the acces in the databases faster) ,enable or disable fsync (fsync off can improve performance but you ll have data loss if power goes out suddently, recomend to turn it on) and other little commands
Mr.harsh has done a very great work making this rom! Let's try it
Press thanks botton if i helped you:beer:
Inviato dal mio GT-I9070 con Tapatalk 2
MisterNewbee said:
I remind to read somewhere that it is only possible to change the frequences with adb or terminal. Is this true or is it possible to change it with apps like setcpu (or no-frills) ?
Click to expand...
Click to collapse
for me,i set the cpu using script.. load it at boot using script manager..
lawong said:
for me,i set the cpu using script.. load it at boot using script manager..
Click to expand...
Click to collapse
Good to know that this is possible too ;D. Are in the i9070 forum some scripts or have i to make them myself ? And do someone use the v6 supercharger script ?
Sent from my GT-I9070 using xda app-developers app
MisterNewbee said:
Good to know that this is possible too ;D. Are in the i9070 forum some scripts or have i to make them myself ? And do someone use the v6 supercharger script ?
Sent from my GT-I9070 using xda app-developers app
Click to expand...
Click to collapse
use the below script to
#to change the scheduler
echo "sio" > /sys/block/mmcblk0/queue/scheduler
#to change the governor
echo "ondemandq" > /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
don't use windows text editor like text pad.. insted use use notepad++ and the file should have no extension.
Create a new folder named 'init.d' in /system/etc
then push the file using a root explorere to the folder
Set the permission of init.d foler and the script file to 0777(rwxrwxrwx)
u can also search the forum for other commands which can be used to tweak the governor like the scaling frequency and other stuff
check http://forum.xda-developers.com/showthread.php?t=2198510

[SHARE][MOD][FIX] Fix systemUI restart,speed up device v2.2 & FULL GPU RENDER

Code:
/* * Your warranty is now void. *
* I am not responsible for bricked devices, dead SD cards,
* thermonuclear war, or you getting fired because the alarm app failed. Please *
* do some research if you have any concerns about features included in this MOD*
* before flashing it! YOU are choosing to make these modifications, and if *
* you point the finger at me for messing up your device, I will laugh at you. *
*/
check this link for new updates HERE
Most of users have problem when device ram goes low. SystemUI restarts and then LockScreen appear. At system default systemUI is not forced to stay in ram.
This can do in services.jar with backsmali manager,but that must to edit in every single rom, I just edited script, and temporary fix this problem.
This zip works on all ram from 2.3+ to 5.0+
As I said this is temporary fix, and systemUI can restarts sometimes.
Please reply
Also this script speed up device.
Ram management
How to install:
Download zip from attachment (Download the latest version from MEGA)
Go to recovery
Wipe cache (don't need, but just in case)
Wipe dalvik-cache (don't need, but just in case)
Flash ZIP
Changelog:
Version 1.0 (Initial release) (16.11.2014
I use @slaid480's Fly-on mod Alpha3, clean up zip and change some parameters.
Zip contains:
Fly-on engine
Zipalign
Ram_manager
(etc.)
Version 1.1 (18.11.2014)
Added loopy_smoothness_tweak
Added script to fix permissions
Added kill media server
Changed parameters of virtual memory
Changed renice values
Version 1.2 (19.11.2014)
Changed swappiness to 45 from 40 in release before
Bulletproofes systemUI to avoid OOM kill.
Deleted fly-on engine
Deleted setrenice the best is kernel defaults.
Changed name in /data for log files (from fly-on to Tweaks)
Version 1.3
Fixed updater-script
Change some little parameters
Version 1.3.1
Fixed logs
Version 1.4 (20.11.2014)
PLAMBY VERSION
Used some scripts from SPB project
Version 1.5 (21.11.2014)
For this version I used @Plamb1r SPB and do a little changes.
This is "the biggest" update for now. Added a lot of stuff.
systemUI renice value changed from -17 to -20
-Please test this new values
echo "50" >> /proc/sys/vm/swappiness;
echo "22" >> /proc/sys/vm/dirty_ratio;
echo "70" >> /proc/sys/vm/vfs_cache_pressure;
echo "4" >> /proc/sys/vm/dirty_background_ratio;
Version 1.6 (24.11.2014)
Changed values of minfree (better ram management)
Version 2.0
Fixed permissions in init.d
Fixed script
Added tweaks for adreno
Version 2.1
Delete some rubish.
Ui is added in ram as in CM11.
Updated tweaks.
Version 2.2 (15.01.2015)
Name changed to SystemUI_restart_FIX+Device_speed_up.
Updated tweaks.
Changed some build.prop lines.
If you download from mobile or tablet you must download MEGA(beta) from playstore
DOWNLOADS:
MEGA
I do some research and found that the device work better if you disable CPU rendering.
I edited egl.cfg,and make flashable zip.
Disable CPU rendering & Enable full GPU rendering
This work only with Adreno200​
Introduction:
The UI of android keeps improving as updates from the android team keep flowing in. There has been a massive improvement in the aesthetics and looks of the system UI from the ancient Eclair till Jelly Bean. With improving UI and better graphics the system keeps becoming an resource hog. All android smartphones these days come with a separate GPU to satisfy the graphics rendering needs of the apps these days. However the GPU doesn’t exactly help in rendering of the system UI that means the load falls of the CPU to render the system UI and other system framework.
so here is a Mod that will disable CPU rendering and enable full GPU rendering,which will let you enjoy the true power of your adreno200!
Improvements:
-Improved performance.
-Blazing speed.
-Better sound quality.
-Improved responsiveness.
-Smoother UI experience.
-Some apps(bloatware) that earlier ran slow like Facebook will turn snappy.
-Free up CPU for other tasks.
requirements:
-Rooted device
-CWM installed
How to install:
1-Download the file.
2-boot to recovery mod.
3-Make a nandroid backup just in case.
4-install zip from sdcard.
5-choose Zip from sdcard and choose the file.
6-Reboot your device!
DOWNLOADS:
MEGA
Credits:
@slaid480
@Plamb1r
@Paget96
Good Job!
Good staff , thinking that you may to add all int.d tweaks from SBP project , and delete fly on staff..I will fix your uifix , because it has many int.d rubbish.
Just flash this fix and you can see the diff.
Thanks op.
So I fix some parameters in int.d and some numbers in update script , add some items to int.d , add tweaks for ui, and wrote some tweaks in build property's , add some smooth secret items ,so test this fix , it must work perfect.
Download:
UI_RESTART_FIX_v1.4
Plamb1r said:
So I fix some parameters in int.d and some numbers in update script , add some items to int.d , add tweaks for ui, and wrote some tweaks in build property's , add some smooth secret items ,so test this fix , it must work perfect.
Download:
UI_RESTART_FIX_v1.4
Click to expand...
Click to collapse
awsome work buddy
Sent from my LG-P705 using XDA Free mobile app
Plamb1r said:
So I fix some parameters in int.d and some numbers in update script , add some items to int.d , add tweaks for ui, and wrote some tweaks in build property's , add some smooth secret items ,so test this fix , it must work perfect.
Download:
UI_RESTART_FIX_v1.4
Click to expand...
Click to collapse
Thanks dude i will update OP
Only problem is, I cant download it from google drive. I don't know why.
Paget96 said:
Thanks dude i will update OP
Only problem is, I cant download it from google drive. I don't know why.
Click to expand...
Click to collapse
Sent from my LG-P705 using XDA Premium 4 mobile app
UPDATED check new version 1.4 by @Plamb1r
I must to ask you, what are you thinking about to change renice level from -17 to -20 for systemUI @Plamb1r
And, what are you think about this values?
echo "45" >> /proc/sys/vm/swappiness; (move back to 60 or low it down to 40?)
echo "22" >> /proc/sys/vm/dirty_ratio; (what about this?)
echo "70" >> /proc/sys/vm/vfs_cache_pressure; (move back to 100 or downscale it?)
echo "5" >> /proc/sys/vm/dirty_background_ratio; (what about this?)
What is that two values?
Paget96 said:
I must to ask you, what are you thinking about to change renice level from -17 to -20 for systemUI @Plamb1r
And, what are you think about this values?
echo "45" >> /proc/sys/vm/swappiness; (move back to 60 or low it down to 40?)
echo "22" >> /proc/sys/vm/dirty_ratio; (what about this?)
echo "70" >> /proc/sys/vm/vfs_cache_pressure; (move back to 100 or downscale it?)
echo "5" >> /proc/sys/vm/dirty_background_ratio; (what about this?)
What is that two values?
Click to expand...
Click to collapse
I think that it is good idea to put them in our fix
move back to 60
downscale it
Plamb1r said:
I think that it is good idea to put them in our fix
move back to 60
downscale it
Click to expand...
Click to collapse
That all exist
I moved it to 60
Renice set to -20
I downscale it to 70, because 100 is default
What about dirty backgrpund ratio? 4 or 5???
I want to ask you. Zipalign and sqlite tweaks in your SBP works??? Because script is too short xd I don't know.
Paget96 said:
That all exist
I moved it to 60
Renice set to -20
I downscale it to 70, because 100 is default
What about dirty backgrpund ratio? 4 or 5???
I want to ask you. Zipalign and sqlite tweaks in your SBP works??? Because script is too short xd I don't know.
Click to expand...
Click to collapse
Yes they work I am optimised them)
Ok
nice work,its helpfull.thx
-CALIBAN666- said:
nice work,its helpfull.thx
Click to expand...
Click to collapse
Check the latest version
Battery drain worse
Paget96 said:
Check the latest version
Click to expand...
Click to collapse
Battery Drain going up
Works !
Good Job, i don't suffer from the systemUI restarts anymore but the battery drains freaking fast ( using LS milestone v3.2 ), with @Plamb1r fix ,my phone goes into deep sleep that's good so no problem when the phone is locked but the problem is when using the phone, even w/o wifi or anything i get smthing like -1% in less than a minute
Shiranuiii said:
Good Job, i don't suffer from the systemUI restarts anymore but the battery drains freaking fast ( using LS milestone v3.2 ), with @Plamb1r fix ,my phone goes into deep sleep that's good so no problem when the phone is locked but the problem is when using the phone, even w/o wifi or anything i get smthing like -1% in less than a minute
Click to expand...
Click to collapse
a good karnel can fix that.
Sent from my LG-P705 using XDA Free mobile app
Hugo Castelani said:
Battery Drain going up
Click to expand...
Click to collapse
Shiranuiii said:
Good Job, i don't suffer from the systemUI restarts anymore but the battery drains freaking fast ( using LS milestone v3.2 ), with @Plamb1r fix ,my phone goes into deep sleep that's good so no problem when the phone is locked but the problem is when using the phone, even w/o wifi or anything i get smthing like -1% in less than a minute
Click to expand...
Click to collapse
I dont have battery drain
Ok, I will try to fix it.

Categories

Resources