Hey guyz...
Im using CM7.2, v6 supercharger and setcpu. These help save up my juice alot. Are there any other tips, tricks or scripts for improving my juice???
Sent from my Dell Streak using XDA
Set the CPU governor to conservative
Sent from my GT-S5570 using xda premium
- use lower clock cpu
- tweaking values (BP & init)
- tweak/edit sysctl
I had read abt sysctl but i found it a lil confusing...wondering if sm1 could get a .zip for it
Also wats this bp and init ??
Sent from my Dell Streak using XDA
synicdevil said:
I had read abt sysctl but i found it a lil confusing...wondering if sm1 could get a .zip for it
Also wats this bp and init ??
Sent from my Dell Streak using XDA
Click to expand...
Click to collapse
sysctl, try this value (for VM tweaks):
echo 4096 > /proc/sys/vm/min_free_kbytes
echo 0 > /proc/sys/vm/swappiness
echo 5 > /proc/sys/vm/vfs_cache_pressure
echo 90 > /proc/sys/vm/dirty_ratio
echo 70 > /proc/sys/vm/dirty_background_ratio
echo 1000 > /proc/sys/vm/dirty_expire_centisecs
echo 2000 > /proc/sys/vm/dirty_writeback_centisecs
build.prop :
wifi.supplicant_scan_interval=300
you can use custom kernel that support lowest system clock/cpu (128MHZ) and set the gov to conservative
*dont try to modifying if you have no idea what just you doing, some bootloop may come as fail editing
hope it usefull
Related
If anyone is compiling a kernel, please unset CONFIG_UEVENT_HELPER_PATH.
It is currently set to /sbin/hotplug, which does not exist.
You might also set
echo 5 > /proc/sys/vm/laptop_mode
echo 1500 > /proc/sys/vm/dirty_writeback_centisecs
somewhere in the initramfs.
What does these settings do?
lynx2k50 said:
What does these settings do?
Click to expand...
Click to collapse
if CONFIG_UEVENT_HELPER_PATH is set, then the kernel tries to execute that helper tool every time a hotplug event occurs. Unsetting it would save a lot of forks at boot time.
Code:
echo 5 > /proc/sys/vm/laptop_mode
echo 1500 > /proc/sys/vm/dirty_writeback_centisecs
These settings delay the disk writeback, so the disk device has to wake up less often (given it goes into sleep mode ).
Ah okay so i can expect better battery life (more sleep time) and a faster booting.
Well done, thanks.
I hope some devs are going to integreate it.
OK good point to try.
Added now on my Cognition 1.07
Code:
bash-4.1# cat /etc/init.d/90laptop.sh
#!/system/bin/sh
echo 5 > /proc/sys/vm/laptop_mode
echo 1500 > /proc/sys/vm/dirty_writeback_centisecs
Code:
diff --git a/arch/arm/configs/c1_rev02_defconfig b/arch/arm/configs/c1_rev02_defconfig
index a7992c0..ccd06df 100644
--- a/arch/arm/configs/c1_rev02_defconfig
+++ b/arch/arm/configs/c1_rev02_defconfig
@@ -917,7 +917,7 @@ CONFIG_RFKILL_INPUT=y
#
# Generic Driver Options
#
-CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
+CONFIG_UEVENT_HELPER_PATH=""
# CONFIG_DEVTMPFS is not set
CONFIG_STANDALONE=y
CONFIG_PREVENT_FIRMWARE_BUILD=y
Can someone pls create a update.zip or else for the cognition rom?
Or a shirt instruction.
Sry for my englisch
from my SGS running MIUI 2.3.4
If you have the CF-Root kernel installed, you can just place this in /data/local/customboot.sh
Code:
echo 5 > /proc/sys/vm/laptop_mode
echo 1500 > /proc/sys/vm/dirty_writeback_centisecs
echo -e '\000\000\000' > /proc/sys/kernel/hotplug
saturn_de said:
If you have the CF-Root kernel installed, you can just place this in /data/local/customboot.sh
Code:
echo 5 > /proc/sys/vm/laptop_mode
echo 1500 > /proc/sys/vm/dirty_writeback_centisecs
echo -e '\000\000\000' > /proc/sys/kernel/hotplug
Click to expand...
Click to collapse
the first two might help. (does Solid State internal storage need "sleep" mode?)
but depending on when the custom script is run the last line may be useless here..
Does it only work with a CF-Kernel, i've tagraks kernel, and cant find any file in data/locel .
Greetz
saturn_de said:
These settings delay the disk writeback, so the disk device has to wake up less often (given it goes into sleep mode ).
Click to expand...
Click to collapse
It doesn't go into sleep mode since it's not a spinning disk.
(Or you could look at it as always being in sleep mode when not in use - there's no spindown/spinup phase.)
So you're not gonna see any battery benefits from that.
Added into my installation on my handset. No way to test it whether it will increase stabilty nor speed, but it does tidy thinngs up.
3G TurboCharger & Kick Ass Kernel Tweaks
(two scripts).
As well as
V6 SuperCharger! HTK & BulletProof Launchers! The ONLY Android MEMORY FIXER!
These were made by zeppelinrox .
His script got him an article in the XDA front page found here.
The 3G and Kickass tweaks are new to me, but are good. The memory fixer i have a thread in Evo 4G section talking about it.
A few memory tweaks would be necessary since we have higher memory phones. But nonetheless, this is good stuff now that we have root.
All he asks is that you link to his page and thank him.
Here are his files
On the supercharger, it is recommended to use option 8. The others you will have to read up on. They are new to me.
You can use these by removing the .txt extension, and running them with script manager (free in market) as root, and run at boot.
theres a thread with the V6 info in here but it doesn have the kickass tweaks and 3g turbo... btw every time i ran kernel tweaks i had to wipe and flash... dont use.
The kickass kernel tweak problem was do to the IO schedulaer... zeppelinrox told me to delete a few lines and this is his text:
"Hi... some users are having an issue with the io scheduling tweaks...
delete this block of text from the installer:
for i in /sys/block/*/queue/scheduler;
do
echo "cfq" > \$i;
done;
for i in /sys/block/*;
do
echo "0" > \$i/queue/rotational;
echo "1" > \$i/queue/iosched/low_latency;
echo "1" > \$i/queue/iosched/back_seek_penalty;
echo "1000000000" > \$i/queue/iosched/back_seek_max;
echo "0" > \$i/queue/iosched/slice_idle;
echo "512" > \$i/queue/nr_requests;
echo "1" > \$i/queue/iosched/fifo_batch;
echo "16" > \$i/queue/iosched/quantum;
done;
for i in /sys/block/*/queue/scheduler;
do
echo "noop" > \$i;
done;
Don't worry about unknown key errors though as all kernels don't support all the sysctl tweaks."
Hello,
i use stock rom 2.3.3 and i've tried to install interactive governor. I've extracted cpufreq_interactive.ko to system/lib/modules, edited install-recovery.sh and added in it :
#modules
insmod /system/lib/modules/cpufreq_interactive.ko
#cpufreq governor
echo "interactive" > /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
echo 85 > /sys/devices/system/cpu/cpu0/cpufreq/interactive/go_maxspeed_load
echo 50000 > /sys/devices/system/cpu/cpu0/cpufreq/interactive/min_sample_time
after reboot, nothing happens, no "interactive" in the menu of setcpu.
Thanks for the solution.
gravia said:
Hello,
i use stock rom 2.3.3 and i've tried to install interactive governor. I've extracted cpufreq_interactive.ko to system/lib/modules, edited install-recovery.sh and added in it :
#modules
insmod /system/lib/modules/cpufreq_interactive.ko
#cpufreq governor
echo "interactive" > /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
echo 85 > /sys/devices/system/cpu/cpu0/cpufreq/interactive/go_maxspeed_load
echo 50000 > /sys/devices/system/cpu/cpu0/cpufreq/interactive/min_sample_time
after reboot, nothing happens, no "interactive" in the menu of setcpu.
Thanks for the solution.
Click to expand...
Click to collapse
With some custom kernels interactive does not work ex.Zkernel
But i'm under official kernel (stock rom SE)
Sent from my X10i using XDA App
gravia said:
Hello,
i use stock rom 2.3.3 and i've tried to install interactive governor. I've extracted cpufreq_interactive.ko to system/lib/modules, edited install-recovery.sh and added in it :
#modules
insmod /system/lib/modules/cpufreq_interactive.ko
#cpufreq governor
echo "interactive" > /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
echo 85 > /sys/devices/system/cpu/cpu0/cpufreq/interactive/go_maxspeed_load
echo 50000 > /sys/devices/system/cpu/cpu0/cpufreq/interactive/min_sample_time
after reboot, nothing happens, no "interactive" in the menu of setcpu.
Thanks for the solution.
Click to expand...
Click to collapse
did u follow instrcutions exactly from here? http://forum.xda-developers.com/showthread.php?t=1221425
sofir786 said:
did u follow instrcutions exactly from here? http://forum.xda-developers.com/showthread.php?t=1221425
Click to expand...
Click to collapse
Thanks to help me but i'm newbie in the use of SDK.
For each code of this thread, i must use SDK or another tool ?
sorry, no one for help ?
First thanks to Cobrato for the rom
Thanks to benz0076 for the lite version.
Dual core smart phones EAT MY DUST!!
I added 3g turbo charger to build.prop and v6 supercharger to init.d folder like i did with Oodie miui and wanted to know how this miui runs on 3g turbo charger and v6 supercharger and i whas shocked how fast it whas. So thats wy i want to share this with you all.
I added email apk and used miui launcher. Also i removed the stock miui browser for boat browser because that one is faster. If you do not like the browser than go to system apps and rename the miuibrowser.apk1 in miuibrowser.apk. So just remove the 1.
Added the latest google music app icecream, mega bass booster scripts added. And favoriete people widget.
This is for unlocked and locked bootloader.
Install this rom with xrecovery.
............................................................................................................
24 nov update..
Updated for both roms the 3g and supercharger.
Added the latest market 3.3.12 and added Nemus Tech launcher famous by ewjet rom.
For locked bl i added the latest kernel doomv4bv4. wifi fix.
Now rom is fast as hell and so smooth.
............................................................................................................
locked bl
http://www.4shared.com/file/pQFMxCv3/XHulk_2miui1118c_lite__1_.html?
unlocked bl
http://www.4shared.com/file/ChKfpsDv/Hulk_2miui1118c_lite.html?
have fun
............................................................................................................
26 nov. Update
http://db.tt/E5kge5kZ
mirror.
http://www.mediafire.com/file/zq85v9ie98wy58w/Update1125.zip
This is a update that you can flash with xrecovery over the 1.11.18.
have fun.
DEVELOPMENT STOPPED, I AM NOW AT THE SAMSUNG GALAXY NOTE DEVLOPMENT.
Could you make something like this for the stock gingerbread roms?
Sent from my X10i using xda premium
robertberma said:
First thanks to Cobrato for the rom
Thanks to benz0076 for the lite version.
I added 3g turbo charger to build.prop and v6 supercharger to init.d folder like i did with Oodie miui and wanted to know how this miui runs on 3g turbo charger and v6 supercharger and i whas shocked how fast it whas. So thats wy i want to share this with you all.
I added email apk and used miui launcher. Also i removed the stock miui browser for boat browser because that one is faster. If you do not like the browser than go to system apps and rename the miuibrowser.apk1 in miuibrowser.apk. So just remove the 1.
This is for unlocked bootloader only because i removed the kernel and xrecovery.tar.
Install this rom with xrecovery.
Rom.
http://dl.dropbox.com/u/50568864/Hulk.miui1118c_lite.zip
More info soon
Click to expand...
Click to collapse
can you change from dropbox, you will get lots of infractions for too much activity on your dropbox account....
PS, the rom sounds good...
Would like to have a look but drop-box keeps giving me download error.
Sent from my X10i using XDA App
laneyofdeath said:
Would like to have a look but drop-box keeps giving me download error.
Sent from my X10i using XDA App
Click to expand...
Click to collapse
I will upload to mediafire but a hour it whas offline.
firehot_aman said:
Could you make something like this for the stock gingerbread roms?
Sent from my X10i using xda premium
Click to expand...
Click to collapse
Every rom is possible.
Can someone please mirror my download. Mediafire is off line.
And dropbox is not working ok.
Thank you.
Link will be posted in first post.
Greetings
Dropbox worked fine for me downloaded the file with 2mb/sec
What Kernel we should use?
Cheers
Vatis
New link posted.
vatis24 said:
Greetings
worked fine for me downloaded the file with 2mb/sec
What Kernel we should use?
Cheers
Vatis
Click to expand...
Click to collapse
I use cobrato doom kernel. You can find it in his kernel thread for unlocked bl.
I use 2g only, this script make not working a GPRS network.
NoSignal said:
I use 2g only, this script make not working a GPRS network.
Click to expand...
Click to collapse
Its calld 3g turbo charger but it does not do anything with your 2 ore 3g.
If you browse to a large page like a newsletter with lots of pictures page. Your phone needs the recieved information by 2 ore 3g translate in to your to display on your screen. Well that process is now going much and much faster because of the moddifed build.prop.
robertberma said:
I will upload to mediafire but a hour it whas offline.
Click to expand...
Click to collapse
Cheers pal I'll give it a look later on
Sent from my X10i using XDA App
laneyofdeath said:
Cheers pal I'll give it a look later on
Sent from my X10i using XDA App
Click to expand...
Click to collapse
New link is allready been posted.
Good luck
I mean later as I not near my pc
Sent from my X10i using XDA App
for lockedbootloader
and other rom
remove in your build.prop
ro.ril.hsxpa=2
ro.ril.hsdpa.category=8
ro.ril.hsupa.category=5
then ad this
ro.telephony.default_network=2
ro.ril.disable.fd.plmn.prefix=44010
ro.ril.hsxpa=7
ro.ril.gprsclass=36
ro.ril.hep=1
ro.ril.hsdpa.category=28
ro.ril.enable.3g.prefix=1
ro.ril.htcmaskw1.bitmask=4294967295
ro.ril.htcmaskw1=268449905
ro.ril.hsupa.category=9
ro.ril.def.agps.mode=2
ro.ril.def.agps.feature=1
ro.ril.enable.sdr=1
ro.ril.enable.gea3=1
ro.ril.enable.fd.plmn.prefix=23402,23410,23411
ro.ril.enable.a52=1
ro.ril.enable.a53=1
ro.ril.enable.dtm=1
but you be warned this tweak eat your battery fast and performance in home screen during network charge.
i edit this post due to offensive word.
sry.
kaosdroid said:
don't ****ing losing your time by dowload this...
remove in your build.prop
ro.ril.hsxpa=2
ro.ril.hsdpa.category=8
ro.ril.hsupa.category=5
then ad this
ro.telephony.default_network=2
ro.ril.disable.fd.plmn.prefix=44010
ro.ril.hsxpa=7
ro.ril.gprsclass=36
ro.ril.hep=1
ro.ril.hsdpa.category=28
ro.ril.enable.3g.prefix=1
ro.ril.htcmaskw1.bitmask=4294967295
ro.ril.htcmaskw1=268449905
ro.ril.hsupa.category=9
ro.ril.def.agps.mode=2
ro.ril.def.agps.feature=1
ro.ril.enable.sdr=1
ro.ril.enable.gea3=1
ro.ril.enable.fd.plmn.prefix=23402,23410,23411
ro.ril.enable.a52=1
ro.ril.enable.a53=1
ro.ril.enable.dtm=1
but you be warned this tweak eat your battery fast and performance in home screen during network charge.
Click to expand...
Click to collapse
First of all DO USE THE WORD FU..in my thread.
Sec. What do you think this is. A update for Cobrato rom ore whole rom.
So people listen to koasdroid do not flash this rom but just flash Cobrato lite rom and THEN change build.prop.
hahaha what seems more easy....? yes flash this lite rom and test for yourself if you like it ore if its eats battery.
Maby we can ask koasdroid to test all the roms for us on xda. Because he thinks that we do not want to test for owerselfs.
Note eats no battery when in deepleep and eats a little bit more when loading pages.
O yes koasdroid, what about v6 supercharger. Explain please ower readers how to install that.
the rom is only 63mb?wow, it must be fast
robertberma said:
First of all DO USE THE WORD FU..in my thread.
Sec. What do you think this is. A update for Cobrato rom ore whole rom.
So people listen to koasdroid do not flash this rom but just flash Cobrato lite rom and THEN change build.prop.
hahaha what seems more easy....? yes flash this lite rom and test for yourself if you like it ore if its eats battery.
Maby we can ask koasdroid to test all the roms for us on xda. Because he thinks that we do not want to test for owerselfs.
Note eats no battery when in deepleep and eats a little bit more when loading pages.
O yes koasdroid, what about v6 supercharger. Explain please ower readers how to install that.
Click to expand...
Click to collapse
sorry man i not say what you saying about me,just a solution for have this tweak in their rom cause most people doesn't want to change and reflash at start just for that,
and for memory and dalvik tweak
they include in most rom in script or build.prop
ad this script in ini.d and name it
(1...99)network
#!/system/bin/sh
#Network Tweaks
echo 1 > /proc/sys/net/ipv4/tcp_no_metrics_save
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 524288 > /proc/sys/net/core/wmem_max
echo 524288 > /proc/sys/net/core/rmem_max
echo 524288 > /proc/sys/net/core/rmem_default
echo 524288 > /proc/sys/net/core/wmem_default
echo 6144 87380 524288 > /proc/sys/net/ipv4/tcp_wmem
echo 6144 87380 524288 > /proc/sys/net/ipv4/tcp_rmem
setprop net.tcp.buffersize.default 4096,87380,256960,4096,16384,256960
setprop net.tcp.buffersize.wifi 4095,87380,256960,4096,16384,256960
setprop net.tcp.buffersize.umts 4094,87380,256960,4096,16384,256960
VM,script in ini.d
#!/system/bin/sh
#Virtual Memory Tweaks
echo 40 > /proc/sys/vm/swappiness
chmod 777 /proc/sys/vm/dirty_ratio
echo 85 > /proc/sys/vm/dirty_ratio
echo 20480000 > /proc/sys/vm/dirty_bytes
echo 1024000 > /proc/sys/vm/dirty_background_bytes
echo 1 > /proc/sys/vm/highmem_is_dirtyable
echo 30 > /proc/sys/vm/vfs_cache_pressure
echo 8192 > /proc/sys/vm/min_free_kbytes
echo 1 > /proc/sys/vm/oom_kill_allocating_task
echo 10 > /proc/sys/vm/dirty_background_ratio
sync;
echo 3 > /proc/sys/vm/drop_caches
echo 3 > /proc/sys/vm/page-cluster
echo 4 > /proc/sys/vm/min_free_order_shift
echo 1 > /proc/sys/vm/laptop_mode
echo 40 40 > /proc/sys/vm/lowmem_reserve_ratio
echo 1 > /proc/sys/vm/overcommit_memory
echo 0 > /proc/sys/vm/overcommit_ratio
echo 500 > /proc/sys/vm/dirty_expire_centisecs
echo 500 > /proc/sys/vm/dirty_writeback_centisecs
echo 1 > /proc/sys/vm/zone_reclaim_mode
i just try help.
remember people on locked bootloader
and sorry for say fuk
but you mean,DO NOT or DO
and thanks for this amazing tweak that give me faster download and network surf in my rom
respect
Peace men.
Both of you are very help guys and I appreciate that
I'll link your thread to my OP
Ok,this is weird.Why his topic was closed?
http://forum.xda-developers.com/showthread.php?t=1382033
I noticed that his website was blocked by SOPA.Why?The download links were mediafire links,no MU.Also Android is open source,and in his ROM it wasn't any paid app by default(i mean in system/app).What's going on?Is mediafire gonna be taken down?I noticed that it barely works.But why topic closed?
The reason is, maybe link was associate with megaupload...
Sent from my Galaxy Nexus using Tapatalk
he used mediafire links...
Marius Cristian said:
Ok,this is weird.Why his topic was closed?
http://forum.xda-developers.com/showthread.php?t=1382033
I noticed that his website was blocked by SOPA.Why?The download links were mediafire links,no MU.Also Android is open source,and in his ROM it wasn't any paid app by default(i mean in system/app).What's going on?Is mediafire gonna be taken down?I noticed that it barely works.But why topic closed?
Click to expand...
Click to collapse
i tot SOPA was shelved for the moment?
Sorry if this is OT.
But I would like to share some bugs I found while using 1.1A as I didn't upgrade to 1.4 as the links were down. Can you verify whether these are faced by any of you !
1. It takes time to wake up from the lock screen. ie even after a hard key press the screen wakes up after say 3-4 secs.
2. Data connection works with flaws. 2G/3G data seems to be buggy.
3. The notification power widget and power widget doesnt work properly. ie, even if i disable/enable Data/Orientation Lock the effect is not applied. I cant even change it in settings. Only solution is a reboot.
4. Incoming call button issues. (Solved in later versions)
Other than these, the rom is pretty stable.
umm I didn't had any of those bugs in v1.1a.actually it was one of the best version because of kernel, except few graphical bugs.anyway,look on last page/page before that of the rom,pm rosuvladut and ask him to upload rom v1.4 to 4shared or another.if he doesn't have it anymore send me a pm and I will upload v1.3 for you when I get home.i personally am lazy to upgrade to v1.4 because the changes are too insignificant.you can upgrade rom manager by yourself, instead of root browser use root explorer.about super charger I don't use it so for me v1.3=v1.4
anyone knows more about why his topic was closed? we could add other download links and that's it.
Sent from my LG-P500 using Tapatalk
I checked back in dev thread to see if any of the down links where updated. Was surprised to see no post by trettet about site being down, then noticed thread was locked. Hope all is well.
tread closed? why!
Anyone know why the notifications won't stop making noise until I view them...the sound is very annoying when it doesn't stop? I only want the notification sound once. Awesome ROM btw.
Sent from my LG-P500 using Tapatalk
i was about to flash 1.4 in my phone and then... closed thread, site down... =/
i have the link for pp1.4 posted by soberspine at mediafire:
http://www.mediafire.com/?udbvyy0j1oan0gv
but i don't have the fix (phone.apk) and gapps... can someone upload it?
also, where is trettet? do you think the thread was closed by him? or a forum admin closed it?
betoqm said:
i was about to flash 1.4 in my phone and then... closed thread, site down... =/
i have the link for pp1.4 posted by soberspine at mediafire:
http://www.mediafire.com/?udbvyy0j1oan0gv
but i don't have the fix (phone.apk) and gapps... can someone upload it?
also, where is trettet? do you think the thread was closed by him? or a forum admin closed it?
Click to expand...
Click to collapse
I asked the mod to close it down...because I'm quite discouraged of modders who actually copied my tweaks without even asking permission
EDIt:
anyways I'm tired of bug reports and fixing it and everything anyway
trettet said:
I asked the mod to close it down...because I'm quite discouraged of modders who actually copied my tweaks without even asking permission
Click to expand...
Click to collapse
talking about him!
does it mean you will not work on perfectpeso anymore?
i know have your work copied can be frustrating! but common, if i was you, i wouldn't give a sh*t... if there are modders copying your work, it means you have done a awesome job and we all recognize it!
again, we are all waiting for the next releases of perfectpeso!
betoqm said:
talking about him!
does it mean you will not work on perfectpeso anymore?
i know have your work copied can be frustrating! but common, if i was you, i wouldn't give a sh*t... if there are modders copying your work, it means you have done a awesome job and we all recognize it!
again, we are all waiting for the next releases of perfectpeso!
Click to expand...
Click to collapse
I will work on perfectpeso but won't be release on public, until Official CM7 Stable is out xD
@trettet could u please atleast give the links for the latest gapps :/
PHONEFIX.ZIP (v1.3 [ not sure ] and v1.4 [works perfectly]
Latest Gapps [works with all versions]
Aspee's Fix (works with v1.3 and v1.4)
As for the people who steal his work...you can all go to hell.
Trettet if you want I'll remove the files.I thought is nice for the people to enjoy your work.
trettet said:
I asked the mod to close it down...because I'm quite discouraged of modders who actually copied my tweaks without even asking permission
EDIt:
anyways I'm tired of bug reports and fixing it and everything anyway
Click to expand...
Click to collapse
NightlyfourE?
Sent from my LG-P500 using Tapatalk
manuvarghese said:
Sorry if this is OT.
But I would like to share some bugs I found while using 1.1A as I didn't upgrade to 1.4 as the links were down. Can you verify whether these are faced by any of you !
1. It takes time to wake up from the lock screen. ie even after a hard key press the screen wakes up after say 3-4 secs.
2. Data connection works with flaws. 2G/3G data seems to be buggy.
3. The notification power widget and power widget doesnt work properly. ie, even if i disable/enable Data/Orientation Lock the effect is not applied. I cant even change it in settings. Only solution is a reboot.
4. Incoming call button issues. (Solved in later versions)
Other than these, the rom is pretty stable.
Click to expand...
Click to collapse
Did you flash over without full wipe? Or changed patches now and then? I had these problem long ago bcos of one of above said reasons....a clean wipe has none of the above mentioned bugs .. I'm pretty sure of what I'm saying!
Sent from my LG-P500 using Tapatalk
androidusero1p500 said:
NightlyfourE?
Sent from my LG-P500 using Tapatalk
Click to expand...
Click to collapse
Why NightlyFourE I only use two tweak gov ( maxiumtweak and he removed it )+ remount in init.d
This
#!/system/bin/sh
# Governor Tweaks for Ondemand, Conservative, SmartassV2
# Ondemand
if [ -e /sys/devices/system/cpu/cpu0/cpufreq/ondemand/up_threshold ]; then
echo "85" > /sys/devices/system/cpu/cpu0/cpufreq/ondemand/up_threshold;
#echo "30" > /sys/devices/system/cpu/cpu0/cpufreq/ondemand/down_differential;
#echo "1" > /sys/devices/system/cpu/cpu0/cpufreq/ondemand/io_is_busy;
#echo "1" > /sys/devices/system/cpu/cpu0/cpufreq/ondemand/sampling_down_factor;
#echo "20000" > /sys/devices/system/cpu/cpu0/cpufreq/ondemand/sampling_rate;
fi;
if [ -e /sys/devices/system/cpu/cpu1/cpufreq/ondemand/up_threshold ]; then
echo "85" > /sys/devices/system/cpu/cpu1/cpufreq/ondemand/up_threshold;
#echo "30" > /sys/devices/system/cpu/cpu1/cpufreq/ondemand/down_differential;
#echo "1" > /sys/devices/system/cpu/cpu1/cpufreq/ondemand/io_is_busy;
#echo "1" > /sys/devices/system/cpu/cpu1/cpufreq/ondemand/sampling_down_factor;
#echo "20000" > /sys/devices/system/cpu/cpu1/cpufreq/ondemand/sampling_rate;
fi;
if [ -e /sys/devices/system/cpu/cpufreq/ondemand/up_threshold ]; then
echo "85" > /sys/devices/system/cpu/cpufreq/ondemand/up_threshold;
#echo "30" > /sys/devices/system/cpu/cpufreq/ondemand/down_differential;
#echo "1" > /sys/devices/system/cpu/cpufreq/ondemand/io_is_busy;
#echo "1" > /sys/devices/system/cpu/cpufreq/ondemand/sampling_down_factor;
#echo "20000" > /sys/devices/system/cpu/cpufreq/ondemand/sampling_rate;
fi;
# Conservative
if [ -e /sys/devices/system/cpu/cpu0/cpufreq/conservative/up_threshold ]; then
echo "85" > /sys/devices/system/cpu/cpu0/cpufreq/conservative/up_threshold;
echo "80" > /sys/devices/system/cpu/cpu0/cpufreq/conservative/down_threshold; # 35 # 12 # 30 (higher will lead to noticable lags) # 35 # screen off: # 50 ## 35
echo "100" > /sys/devices/system/cpu/cpu0/cpufreq/conservative/freq_step; # more aggressive ramping up (50) # screen off: # 10
fi;
if [ -e /sys/devices/system/cpu/cpu1/cpufreq/conservative/up_threshold ]; then
echo "85" > /sys/devices/system/cpu/cpu1/cpufreq/conservative/up_threshold;
echo "80" > /sys/devices/system/cpu/cpu1/cpufreq/conservative/down_threshold; # 35 # 12 # 30 (higher will lead to noticable lags) # 35 # screen off: # 50 ## 35
echo "100" > /sys/devices/system/cpu/cpu1/cpufreq/conservative/freq_step; # more aggressive ramping up (50) # screen off: # 10
fi;
if [ -e /sys/devices/system/cpu/cpufreq/conservative/up_threshold ]; then
echo "85" > /sys/devices/system/cpu/cpufreq/conservative/up_threshold;
echo "80" > /sys/devices/system/cpu/cpufreq/conservative/down_threshold; # 35 # 12 # 30 (higher will lead to noticable lags) # 35 # screen off: # 50 ## 35
echo "100" > /sys/devices/system/cpu/cpufreq/conservative/freq_step; # more aggressive ramping up (50) # screen off: # 10
fi;
# SmartassV2
if [ -e /sys/devices/system/cpu/cpufreq/smartass/awake_ideal_freq ]; then
echo "800000" > /sys/devices/system/cpu/cpufreq/smartass/awake_ideal_freq;
if [ "`cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_min_freq`" -eq 200000 ]; then
echo "200000" > /sys/devices/system/cpu/cpufreq/smartass/sleep_ideal_freq;
else
echo "100000" > /sys/devices/system/cpu/cpufreq/smartass/sleep_ideal_freq;
fi;
echo "800000" > /sys/devices/system/cpu/cpufreq/smartass/sleep_wakeup_freq;
echo "85" > /sys/devices/system/cpu/cpufreq/smartass/max_cpu_load;
echo "80" > /sys/devices/system/cpu/cpufreq/smartass/min_cpu_load;
echo "200000" > /sys/devices/system/cpu/cpufreq/smartass/ramp_down_step;
echo "0" > /sys/devices/system/cpu/cpufreq/smartass/ramp_up_step;
fi;
Click to expand...
Click to collapse
And
#!/system/bin/sh
for k in $(busybox mount | grep relatime | cut -d " " -f3)
do
sync
busybox mount -o remount,noatime,nodiratime $k
done
for k in $(busybox mount | grep barrier | cut -d " " -f3)
do
sync
busybox mount -o remount,barrier=0 $k
done
Click to expand...
Click to collapse
And I have credit to trettet
If you think i coppy I will remove two this script
@eee I just asked cos there are no other roms except yours based on official cm.7. 2 with ics looks..
Sent from my LG-P500 using Tapatalk
androidusero1p500 said:
@eee I just asked cos there are no other roms except yours based on official cm.7. 2 with ics looks..
Sent from my LG-P500 using Tapatalk
Click to expand...
Click to collapse
I don't understand what you say