[DEV][Kernel]White-Kernel 12/18 ! V:1.3.3[Final release][ZRAM][100+ patches]and more - Galaxy Y GT-S5360 Android Development

Broadcom finally help me in development . thankyou broadcom !
You like my hard work ?
consider making a donation !
http://forum.xda-developers.com/donatetome.php?u=4418296
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
​
No need mirrors
kernel for Galaxy Y (GT-5360)
Version: Olders Versionsmediafire
Version: 0.8.0 RC3mediafire
Version: 1.3.3 MOD EDIT: Link Removed
Version: 1.3.3mediafire without AD
LOG:
version 0.1
added adb suport
added init.d
added dnsproxyd
Version 0.2
added droidwall support
Version 0.3
added cpu governors ( conservative, userspace, powersave )
Version 0.3.1
added cpu governor (interactive ) thanks infarburgs for governor !
Version 0.3.5
added cpu governor smartassV2
Version 0.4.0
added swap suport
zramswap
zramswap compression !
Version 0.6.0
applied patch
CPUSpy support app (http://goo.gl/qEQxw)
3 cpu frequencies (312,624 and 832 mhz)
fixed error in reading CPU clock
Version 0.6.5
add i/o schedulers
cfq-iosched
deadline-iosched
sio-iosched
vr-iosched
Version 0.7.0
support EXT2/3/4 and JBD2
fixed compatibility with alls governors
tweaked ondemand governor and smartassV2
Version 0.7.2 RC
fixed init.d (no work )
Version 0.7.3
fixed init.d (finally) :highfive:
Version 0.8.0RC
using merruk ramdisk!
added clockwork!
added root (super user)
added busybox
added other things !
Version 0.8.0 RC 2
removed superuser (90 % user using custom roms )
fixed compatibility with roms !
Version 0.8.0 RC 3
fixed busybox
fixed compatibility with alllllls roms ! (creeds,repencis,bla bla ,blu blu !! )
Version 1.0
- Added support alls bootanimations like my kernel cm9 (its in ramdisk )
- 5 frequencies (832-624-468-312-156) merged from kurotsugi
- + profiles of brightness merged from koneu
- fixes for clocks speeds ...
- tweak block size of files (more speed in read and write )
Version 1.0.1
- fixed bug where some of governors not worked
Version 1.2.0
- Added Zram (read post 2 for more informations )
- More netfilters
- EXT4 support for system,data and cache
- Fixed minor bugs
Version 1.2.5
- minor fixes
- update busybox (some apps can not detect it (same system installer app) but a lot of titanium and other vain decta it .. anyway he is working
- added 2 metods init.d now ...
Version 1.3.3
- + 100 patches on kernel linux
- tweaks and patches for system rfs ,ext 2,ext3, ext4
- modified memory allocation on kernel linux
- battery drain reduced with +20 tweaks ...
- more thinks ( i no remeber )
-PS : need install new wifi driver ! go for wifi theard
Instructions for .tar file:
Download odin 1.8.5 mediafire
Connect phone in download mode
Select PDA
Select kernel
Press start
Ready
Instructions for .zip file:
Download cwm mediafire
Turn on recovery mode
Install from sdcard*
Select cwm madteam
In cwm select install zip from sdcard
Select kernel.zip*
YES and enjoy
thanks for :
Maroc
irfanbagus
mikstev
savie
hellock(merged thinks on ramdisk )
If it helps you, please press thanks

zRAM
What is zRAM?
This is a mainline kernel feature for Compressed RAM block device support (CONFIG_ZRAM)
http://en.wikipedia.org/wiki/ZRam
Like many of the other tweaks done in the Android world, ZRAM is another one of them that is controversial, probably because people only think in terms of immediate performance they can measure easily with benchmarks etc. *Here is my take...think I will add this to the Q&A section as well.
But, will it make my device faster? Will I score higher on benchmarks?
It depends, but for normal usage, the answer is no. zRAM is most useful for those that are configuring Android to be a true multitasking workhorse. For example, if I enable zRAM, open an bunch of apps at one time, and actually start to work towards depleting the memory of the system. *For example, say I open system tuner, a browser with several tabs, a word processing app, a game, and perhaps a picture viewing app or a movie. If I don't formally close out of each one by hitting back and just begin switching between apps and the home screen, you will see zRAM start showing benefits.*
If you tweak the Android memory and swappiness settings, this can also be useful in this type of environment.
So, unless you have a heavy workload as stated above, then it won't be of a lot of use for the casual user.
How do I enable zram?
It must be enabled by a script. Some ROMs may support activating it. If you need to do it yourself you have two choices.
1) Save this to a file and run the script from terminal, Script Manager or System Tuner.
2) Or better yet, save this to a file called 90zram (or whatever you prefer) in /system/etc/init.d and automate it (The ROM's ramdisk needs to supports init.d)
Code:
#!/system/bin/sh
# auto zram activation init script with busybox search
# by show-p1984
echo "[90ZRAM]: Firing up /system/etc/init.d/90zram";
if [ ! -e /sys/block/zram0/disksize ] ; then
echo "[90ZRAM]: ERROR unable to find /sys/block/zram0/disksize";
echo "[90ZRAM]: Is this a ZRAM kernel?";
echo "[90ZRAM]: ZRAM NOT ACTIVATED. (404)";
else
#find busybox in /system
bblocation=$(find /system/ -name 'busybox')
if [ -n "$bblocation" ] && [ -e "$bblocation" ] ; then
echo "[90ZRAM]: busybox found in:" $bblocation;
echo "[90ZRAM]: Setting ZRAM disksize.";
echo $((100*1024*1024)) > /sys/block/zram0/disksize
echo "[90ZRAM]: Starting ZRAM...";
bblocation=${bblocation%/*}
cd $bblocation
./busybox mkswap /dev/block/zram0
./busybox swapon /dev/block/zram0
echo "[90ZRAM]: ZRAM activated.";
else
echo "[90ZRAM]: ERROR! busybox not found!";
echo "[90ZRAM]: Is busybox installed? Symlinks set?";
echo "[90ZRAM]: ZRAM NOT ACTIVATED. (404)";
fi
fi
Performance Tweaks
These are a couple of tweaks that many are using for faster benchmarks and better battery performance. Google it and decide for yourself if you like the risk or not. I recommend that you do a full backup in recovery and regularly backup your /data partion or cloud sync if you enable these options. Will many run them daily as I now do, there is some additional risk. These can be added to scripts and automated via init.d or other apps/tools that support them.
To disable fsync for better battery and better disk i/o performance:
Code:
echo 0 > /sys/class/misc/fsynccontrol/fsync_enabled
To enable fsync for better data integrity (default)
Code:
echo 1 > /sys/class/misc/fsynccontrol/fsync_enabled
Faster disk i/o - remount /data partition with noauto_da_alloc option (google it, better battery, less data integrity)
Code:
mount -o remount,noauto_da_alloc /data /data

kernel build from GT-S5360_GB_Opensource_Update2 (opensource samsung )
version 2.6.35.7
Sources
https://github.com/Whitexp/GT-S5360-opensource-Update-2

Wooooohh. so its an opensource... so it really fits to any kind of build roms or cusrom sir? Tnx a lot for enlighthenment.. dl it later coz im in mobile mode.. tnx a lot. Great job sir.. btw, how to test the droidwall if it is really working?
Sent from my GT-S5360 using xda premium

Wow....great kernel...please add overclocking feature to this kernel....i am soo desperate for overclocking...

kentoi me said:
Wooooohh. so its an opensource... so it really fits to any kind of build roms or cusrom sir? Tnx a lot for enlighthenment.. dl it later coz im in mobile mode.. tnx a lot. Great job sir.. btw, how to test the droidwall if it is really working?
Sent from my GT-S5360 using xda premium
Click to expand...
Click to collapse
yes
i tested now ..
droidwall work

Infarnburg???
Do u mean irfanbagus

Only 3.43 mb, great.loving it.Are governors working.

premolikeshtc said:
Only 3.43 mb, great.loving it.Are governors working.
Click to expand...
Click to collapse
not all!
working on it!
btw i sleep now lol

Cannot read setcpu custom .....

testing
testing this kernel now.. It works great
-------------
iplaygalaxyy for android

Great kernel, hope it will support swap soon.

what are the working scheduler and kernel profiles?

midouban26 said:
what are the working scheduler and kernel profiles?
Click to expand...
Click to collapse
i/o scheduler?
until the moment, i has not yet put them!

premolikeshtc said:
Cannot read setcpu custom .....
Click to expand...
Click to collapse
thanks for feedback !

updated kernel
version 0.4.0

rep
guys i am unable to download 4.0 kernel . plz provide me a link thanks in advance

shailu1990 said:
guys i am unable to download 4.0 kernel . plz provide me a link thanks in advance
Click to expand...
Click to collapse
link fixed ..
google drive link
see first post !!

This kernal install perfect to mai007 method?

Sharmaskss said:
This kernal install perfect to mai007 method?
Click to expand...
Click to collapse
yes ..
in windows
use 7zip to extract file .tar

Related

[MOD] PH85 ICS Packs <> OVERCLOCKED 4-KEYS FIX <> TEST KERNEL BETA [13/12/2012]

[MOD] PH85 ICS Packs <> OVERCLOCKED 4-KEYS FIX <> TEST KERNEL BETA [13/12/2012]
KERNEL PAGE TRANSFERRED HERE:
http://forum.xda-developers.com/showthread.php?t=2047427
Introduction:​
- THE PATCHES HAS TO BE INSTALLED THROUGH CMW OR TWRP AND WORKS ONLY WITH ICS!!
IMPORTANT HINTS​
1 - Before to install do a backup and remove the heavier app in /system/app and /system/apps folders not essential like :
- weather widget
- flash player
- various games
- various widgets
You will re-install it after the installation after checking the free space remaining.
2 - NOTICE: Make sure you have min. 60 mb free on System, or 90 mb for the TMProduct1onz bootanimation (it's bigger )
NOTE I'M NOT TALKING OF "GENERIC" SYSTEM SPACE, I'M TALKING OF /system partition,
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
3 - For who has problems on installation, try to re-install busybox
- Install https://play.google.com/store/apps/...t=W251bGwsMSwxLDEsInN0ZXJpY3Nvbi5idXN5Ym94Il0.
- then reinstall the TMP TRWP recovery: http://milaq.exnet.me/downloads/android/p940/P940RecoveryInstaller.apk
Link to original thread: http://forum.xda-developers.com/showthread.php?t=1859662
4 - USE THIS METHOD IF RECOVERY GET NOT MORE STARTING AFTER BUSYBOX INSTALLATION BUT COULD BE A BIT DIFFICULT FOR LESS EXPERIENCED USERS http://forum.xda-developers.com/showthread.php?t=1978543
5 - IF YOU WILL BE NO MORE ABLE TO START RECOVERY YOU MAY NEED TO INSTALL THE ICS ROM AGAIN FROM THE FIRST STEP SO DON'T FLASH THIS FILE IF YOU NEED TO PRESERVE YOUR ACTUAL SYSTEM
KERNELS WITH NATIVE FEATURES​PH85 KERNEL LIST​
WARNING: Delete overclockscript and initmodules script before to test!
1) 1.2 ghz https://www.dropbox.com/s/45ocpxi90xxdp8b/PH85KERNEL1.2ghz.zip
2) 1.26 ghz https://www.dropbox.com/s/z001mbh3rurm01i/PH85KERNEL1.26.zip
3) 1.3 ghz - Caution! Maybe unstable https://www.dropbox.com/s/74ucoeoc3xdidxz/PH85KERNEL1.3ghz.zip
BEFORE TO INSTALL THE OVERCLOCK PACKS AND THE KERNEL signed x-loader.bin, signed u-boot.bin and signed recovery are required, FOLLOW THIS GUIDE http://forum.xda-developers.com/showthread.php?t=1978543
KERNELS WITH NON-NATIVE FEATURES​
New pack 29/11/2012 with 4-keys kernel​
The boot.img files are signed to work with wkpark recovery and Acura2201
OVERCLOCK lightly undervolted (settings similar to stock), PACK WITH MODULES, CPU GOVERNOR & I/O SCHEDULERS
Features:
1) Native boot.img init.d support
2) Native adbd insecure support
3) Overclock loaded by boot.img
4 KEYS FIXED , UNDERVOLTED @ 1208 MHZ https://www.dropbox.com/s/wf1l5jml5a2fx8u/4keysfixed1208mhz.zip
@ 1208 MHZ http://www.mediafire.com/?l0qcujdw0hdqc73
@ 1108 MHZ http://www.mediafire.com/?98m4lpnp434tpcg
Stock clock and volts http://www.mediafire.com/?jxspk7yjfgt0zdf
Not suggested for all, try at your own risk:
Extreme tuning undervolt 333-666-1008-1218 http://www.mediafire.com/?1zwvqhqz95jhks6
JUST APPS & MEDIA PACK feat. TMProduct1onZ
1) Holo Locker
2) Nova Launcher
3) ArcCamera, Gallery (with photosphere feature but still upside/down issue) modded by DefComg Video Editor, Photo Editor by Bether and Camera 360 (updated)
4) ClockSync
5) Dolphin Browser v9
6) DSPManager
7) LgContacts3 fixed by iodak
8) 160 chars Message by DefComg (updated)
9) NoFrills Cpu Control: my favourite settings are hotplug as governor and sio as I/O scheduler
10) Total Commander
- Removes korean titled ringtones
- Changes bootanimation
http://www.mediafire.com/?df789do63fc7w9t
CM10 OVERCLOCK​
https://www.dropbox.com/s/36i8ohj68d5a7h8/PH85 OVERCLOCK CM10.zip
--------------------------
OLD PACKS​
List of features​:
APPS:​
1) Holo Locker
2) Nova Launcher
3) ArcCamera, Gallery (with photosphere feature but still upside/down issue) modded by DefComg Video Editor, Photo Editor by Bether and Camera 360
4) ClockSync
6) Dolphin Browser v9
7) DSPManager
8) LgContacts3 fixed by iodak
9) 160 chars Message by DefComg
11) NoFrills Cpu Control: my favourite settings are hotplug as governor and sio as I/O scheduler
12) Total Commander
INIT.D SUPPORT: (credits to thebrainkafka )
1) Overclock and iodak's modules insmod: low battery consumption at high frequencies IT MAY NOT WORK FINE WITH YOUR PHONE
Code:
Stock similar settings:
Code:
echo 0 300 925 > /proc/cpu_control/tweak_cpu
echo 1 600 1175 > /proc/cpu_control/tweak_cpu
echo 2 900 1265 > /proc/cpu_control/tweak_cpu
echo 3 1200 1345 > /proc/cpu_control/tweak_cpu
Suggested settings:
Code:
echo 0 300 900 > /proc/cpu_control/tweak_cpu
echo 1 600 1025 > /proc/cpu_control/tweak_cpu
echo 2 900 1125 > /proc/cpu_control/tweak_cpu
echo 3 1200 1245 > /proc/cpu_control/tweak_cpu
MODULES (credits to iodak)
1) Overclock: symsearch.ko cpu_control.ko
2) tun.ko ntfs.ko sio-iosched.ko (sio I/O scheduler)
MEDIA: pack 1 with Bootanimation and sounds from LG PRADA
pack 2 with TMProduct1onZ bootanimation
VARIOUS SYSTEM TWEAKS: BUILD.PROP with tweaked 3G CONNECTION AND DEEP SLEEP MODE
DOWNLOAD LINKS:
JUST OVERCLOCK PATCH!!!
- SAFE CLOCKS AND LOW VOLTAGE SETTINGS INSTALLED BY DEFAULT, YOU CAN EDIT IT EVERYTIME DIRECTLY INTO THE ZIP OR THROUGH ROOT EXPLORER IN /SYSTEM/ECT/INIT.D FOLDER
- SIMPLE V1: http://www.mediafire.com/?l9ks3yrrw4pu8p5
- SIMPLE V1.1 safer settings: http://www.mediafire.com/?5xr4lu3buwl2m8a
I removed the supercharged series because i tested and doesn't work fine!
RELAXED CLOCK PATCH.. FOR MORE LAZY OMAP4430 CPUS
- JUST RELAXED OVERLOCK: http://www.mediafire.com/?fmj9ws76a2saxsm
MEGAPACK V1 FINAL RELAXED CLOCKS
- ONE VERSION WITH LATEST SMALL TMProuduct1onZ bootanimation: http://www.mediafire.com/?pfp2ig7sun9n6wf
MEGAPACK V1 FINAL
- PACK 1 WITH PRADA 3.0 BOOTANIMATION AND SOUNDS http://www.mediafire.com/download.php?zx31ba5uzavx1fg
- PACK 2 WITH TMProduct1onZ Bootanimation! http://www.mediafire.com/?ryaagoa651e26ag
MEGAPACK BETA 3
- PACK 1 WITH PRADA 3.0 BOOTANIMATION AND SOUNDS http://www.mediafire.com/download.php?t288458vyhbd9sp
- PACK 2 WITH TMProduct1onZ Bootanimation! http://www.mediafire.com/?vm9jb5putchh0yo
SMALL MODS PACKAGES OF PH85 MODS SERIES
- JUST ArcCamera, Video Editor & PHOTOSPHERE: http://forum.xda-developers.com/showpost.php?p=33969780&postcount=165
- JUST CONTACTS, PHONE & MSGS: http://forum.xda-developers.com/showpost.php?p=33970232&postcount=41
- ARM OPTIMIZED I/O SCHEDULERS AND ONDEMANDX GOVERNOR: http://www.mediafire.com/?papxoeprk681cce
ALL THE HUGE THANKS AND CREDITS MUST GO TO:
XBSALL
samno
defcomg
iodak
thebrainkafka
bether
wkpark
Chainfire
milaq
TMProduct1onZ
zeppelinrox
Acura2201 & Franlov
.. and all "Androidians" who share freely the fruit of hard work!
DISCLAIMER: I'm not responsible of eventual damages caused by this file, if something goes wrong blame just yourself :| I CAN JUST SAY I TESTED IT ON MY O3D AND WORKS FINE
Sorry for the poor graphics of the thread!
SCREENSHOTS
Nova Launcher:
-
My Best Quadrant Score at 1268 mhz (now i keep at 1200 for low consumption and best stability)
USEFUL LINKS:
IODAK OVERCLOCK MODULES:
http://forum.xda-developers.com/showthread.php?t=1961989
DEFCOMG CAMERA MODS AND OTHER MODS THREAD
http://forum.xda-developers.com/showthread.php?t=1957839
http://forum.xda-developers.com/showthread.php?p=33922652#post33922652
XBSALL ORIGINAL ICS CUSTOM ROM POST:
http://forum.xda-developers.com/showthread.php?t=1963847
TWRP AND CMW TEMP POST BY REZZSHA:
http://forum.xda-developers.com/showthread.php?t=1960120
TMPRODUCT1ONZ THREAD:
http://forum.xda-developers.com/showthread.php?t=1976475
V6 SUPERCHARGER THREAD!! zeppelinrox ROCKS!! and... SERVICE.JAR AUTOPATCHER
http://forum.xda-developers.com/showthread.php?t=991276
http://forum.xda-developers.com/showthread.php?t=1914159
Acura2201 recovery!! http://forum.xda-developers.com/showthread.php?t=2000288
SUGGESTED APPS
- Adbd Insecure (for use with windows root browsers like Android Commander) go to download here http://forum.xda-developers.com/showthread.php?t=1687590 Credits to Chainfire
- Nova Launcher Thread! http://forum.xda-developers.com/showthread.php?t=1389071
CHANGELOG
V1 ALPHA: 9/11/2012 FIRST VERSION
V1 BETA 2: 10/11/2012
- Removed not useful init.d scripts
- Changed permissions to 755 (rwx -rx -rx)
- Added No Frills Cpu Control
- Added Total Commander
- Fixed Updater Script: unmount /system before mount with busybox and set 777 -rw -rw -rw permission before to extract system folder
- Removed Adbd Insecure due to not accorded re-distribution permission
V1 BETA 3 (almost arriving at final version ): 11/11/2012
- DIVIDED PROJECT IN TWO SUB-PARTS: PH85 MEGAPACK AND PH85 JOCLOCK
For MEGAPACK:
- Moved heavier apps from /system/app to /data folder in order to have more system free space
- Edited overclock with safer setting
- updated ArcCamera.apk to 10 Nov from defcomg
For JOVERCLOCK patch:
- Added V6 SUPERCHARGER SCRIPTS, NITRO LAG NULLIFIER, PATCHED SERVICE.JAR and relative tweaked build.prop (with backup copy of non supercharged build.prop)
- REMOVED UNUSEFUL FILES FROM THE ARCHIVE, sorry i forgot to do it before ;P
V1 FINAL 12/11/2012
- ADDED SAFEST OVERCLOCK SETTINGS
- ADDED SELF-REMOVE /SYSTEM/MEDIA/AUDIO SCRIPT BEFORE INSTALLATION
- Lowered min free space system required
UPDATE 13/11/2012
Updated ArcCamera.apk from defcomg in JPHOTOSPHERE PATCH, just install it!!!
UPDATE 14/11/2012
New updated ArcCamera.apk from defcomg!!!
UPDATE 16/11/2012
Uploaded 3 MODULES PACK!
- Arm optimized sio scheduler (some very little performance improving)
- Arm optimized vr scheduler
- OndemandX cpu governor
Compiled from: Dorimanx-SG2-I9100-Kernel-master-jelly-bean git source, thanks and credits to HIM!
UPDATE 20/11/2012
- Introduced edited boot.img contaning features! Thanks to Acura2201 for the idea!!
- Re-organized PACK projects: divided pack in MODULES, MODULES + OVERLOCK, APPS
UPDATE 8/12/2012
- New kernels, features:
1) GPU at 384 mhz (activated at best CPU frequence)
2) Overlock ram started 466 mhz activated in emif.h, but still not in other parts
3) Added Cpu frequency undervolted
4) Disabled smartreflex thanking to samno, it may drain more battery but it's more stable
5) Tweaked VM thanks samno
6) Added native Pegasusq and ondemandx governors
7) Added native Sio and VR ioschedulers
8) lzma compression for low memory consumption
9) ICS stock memory optimization
10) Tweaked touchscreen thanks samno
UPDATE 10/12/2012
CM10 overlock pack in last posts!
UPDATE 13/12/2012
Fixed poweroff recharge bug in PH85 kernels!
TO DO:
- wait your feedbacks
- wait for defcomg news and update the packages
- searching for interesting kernel features to implement
POSITIVE: alphatia post, tavares_one post, speedyranger post,
NEGATIVE: As expected 3 for the beta 2 version, just test the v1 final and follow the suggestions on TOP of first post
Root explorer is paid app you have to remove all paid apps!!!!
Sent from my LG-P920 using xda app-developers app
Link temporary removed
---
REUPLOADING
https://play.google.com/store/apps/details?id=com.ghisler.android.TotalCommander&hl=en use this instead
I've been toying with aroma, maybe i'll try my luck and see if I can cook up a nice little gui to go along with this. Don't hold your breath though. I stopped by to say nice work, those patches are definitely needed. Have you also checked out some of the scripts from v6 supercharger, really helped with my phone and xbsall's rom.
great job! thx
Enviado desde mi LG-P920 usando Tapatalk 2
Weird :/ ive flashed the zip and nothing changed
Im on the XBSA 4.0.4 ROM (first port not the custom one)
Sent from my P920 using ICS 4.0.4 by XBSA
i flashed but nothing changed i just got the nadb insecure why is that? i tried them both through twrp ..
I tested better the init.d scripts and most are totally not useful, i'll remove it in the next version.
Sometimes the flash with TWRP may fail, just repeat the flash after rebooting the recovery or test with CMW (in CMW use the pwr button as OK)
Sent from my LG-SU760 using xda premium
Hey i tried flashing twice from twrp ,,i tried wiping caches. I tried without wiping and flashed from internal and external sd card and still doesnt work hope u can find a solution i will be waiting
Sent from my LG-SU760 using xda app-developers app
OK there must be some issue in updater script, i'll fix it in the day
Just so I understand, this single zip, when working, will fix some ICS stuff and overclock my phone?
I'm all for that, cheers
Sent from my LG-SU760 using xda app-developers app
LeighR said:
Just so I understand, this single zip, when working, will fix some ICS stuff and overclock my phone?
I'm all for that, cheers
Sent from my LG-SU760 using xda app-developers app
Click to expand...
Click to collapse
It contains all the main actual updates and fixes for the XBSA ICS rom... and some other useful app
Thanks your work is appreciated
I will be waiting.
Sent from my LG-SU760 using xda app-developers app
alphatia said:
Thanks your work is appreciated
I will be waiting.
Sent from my LG-SU760 using xda app-developers app
Click to expand...
Click to collapse
Anyway it's weird it doesn't work, i used the updater script of every other update pack.. Try reinstalling busybox
While i upload the corrected version, anyway the pack can be used to extract the system folder and pushed in the system with: "adb push" if you want to use adb or can be pushed with terminal emulator or alternatively with root explorer or equivalent
That's great, thanks
Did anyone figure out how to send a message greater than 160 chars, other than using a different app such as handcent? I changed the message.apk file and it did jump from 80 to 160 chars but still crashed if I went over.
Also, anyone know how to change the battery icon to show a %age? I think UOT Kitchen only works on GB ROMs. Might be nice to add to the patch if anyone knows
Sent from my LG-SU760 using xda app-developers app
Ok something weird happened i hope u could help me i didnt have busybox so i installed busybox pro and after installation i cand boot into twrp recovery any more i also uninstalled busybox still cant boot to recovery and also installed recovery again ,,,still no luck i hope that u can help me plz
Sent from my LG-SU760 using xda app-developers app
alphatia said:
Ok something weird happened i hope u could help me i didnt have busybox so i installed busybox pro and after installation i cand boot into twrp recovery any more i also uninstalled busybox still cant boot to recovery and also installed recovery again ,,,still no luck i hope that u can help me plz
Sent from my LG-SU760 using xda app-developers app
Click to expand...
Click to collapse
After busybox re-install this: http://milaq.exnet.me/downloads/android/p940/P940RecoveryInstaller.apk
Thanks for the quick reply i re installed the recovery but still cant boot to recovery please help me it would be much appreciated
Sent from my LG-SU760 using xda app-developers app

[KERNEL][ICS][OC/UV-1.42Ghz+][V3.0.0][P920/SU760][10/03/2013] Jeckyll & Hyde Kernel

[KERNEL][ICS][OC/UV-1.42Ghz+][V3.0.0][P920/SU760][10/03/2013] Jeckyll & Hyde Kernel
Hi, so I finally decided to make an ICS kernel. Here it is, I will adding more gradually as & when I get time or be bothered to . This thread is for mainly development and fun, please use this thread > http://forum.xda-developers.com/showthread.php?t=2077103 in General regarding questions further info and stuff to keep as much crap out of here as possible and to keep the thread clean. Please don't post useless/unrelated/not fun posts or ak for ETA's please because I won't respond or may not bother doing the kernel anymore.
Main Feature List
-Based On ICS V30B For SU760
-Linux Kernel Version 3.0.21/Sneaky Weasel
-Over Clocked CPU Upto 1.42Ghz+
-Live OC For CPU (Change Frequencies To The Max For You Device)
-Max OC @ Boot Set To 1.22Ghz
-Modified Frequency Table
-Pre-Under All Volted CPU Steps Plus User Space UV Interface
-GPU Clocked At 384Mhz
-Modified Ram Disk
-Lots Of IO Schedulers (9 In Total, SIO As Default)
-Init.d Script Support & Automated Folder Creation
-4-Key Fix For P920 Version
-Other Small Tweaks
-For More Info See Changelog's & Github Commits
Prequisites & Installation Instructions
Prior to this installation you MUST:
-Be On Ported ICS Or A Derivative Of It From Here > http://forum.xda-developers.com/showthread.php?t=1956347
-Flashed wkparks Modified Bootloaders From Here > http://forum.xda-developers.com/showthread.php?t=1971014
-Flashed Dexter_nlb's Recovery, Either TWRP Or CWM (I Use CWM) From Here > http://forum.xda-developers.com/showthread.php?t=1978543
-Make A Backup Or Have A Backup Kernel That You Know Works On Your SD Prior To Flashing Just In Case.
-Read The Whole Post Carefully, I Will Not Answer Questions Related To The Kernel If The Answer Is Already Here.
Ok next...
-Download & Copy The .ZIP File Into Your SD.
-Restart The Device Into Recovery
-At This Stage You Can Wipe The Cache's If You Want Or Continue To Next Step.
-Then Choose Install Zip from SD Card, Either Internal Or External. Wherever You Saved It.
-Select The .ZIP File & Install It.
-Reboot Your Phone & You Should Be Good To Go.
-Just Give A Few Minutes As First Boot May Take Longer Than Usual.
Bugs?
I don't know yet havn't tested to much but everyone knows that not all silicon is capable of higher clock frequencies you have been warned I take no responsibility if something goes wrong or if something's don't work as expected. I cannot test this on each ROM but im using it with the completely stock port.
To-Do/Dream List
If you would like to see a tweak/mod implemented in my kernel PM me with information about the tweak and also a link to any source code relating to it.
I Hope Or Plan To Be Able To:
-OC More Than Before
-CPU/GPU OC/UV Interface
-Native Dual Boot
-More Feature & More Fixes Than Before
Customisation Screenies
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Credits
Thank you to: xbsall, wkpark, Dexter_nlb, defcomg, Pesach85, iodak, TMProduct1onz, Ezekeel, SonicXML, jdoreclipse, faux123, franciscofranco, imoseyon, my users & followers, the rest of the O3D community and XDA as without you guys I would never of got into or done anything like this. This kernel is made up of lots of patches and stuff some of which does not have a specific source detail and some that other dev's have if you feel i've left someone out PM me and I will sort it out as quickly as possible. If your name does not appear here check out my commits as I may have credited you there.
Code:
[SIZE=4][B][U]Changelogs[/U][/B][/SIZE]
[B][U]V3.0.0 Changelog Changes Up To 10/03/2013[/U][/B]
-Smart Reflex Tweaks
-Entropy Tweaks
-Interactive Governor Updated
-Added Some Optimized And Updated System Operations
-Touchscreen Sensitivity Tweaks
-Decreased WI-Fi Voltage
-Some Other Minor Shizz
-Included SU760 Display Modules For Compatibilty With P920 Roms
[B][U]V2.1.0 Changelog 03/03/2013[/U][/B]
-Added Force Fast Charge By Chad Froebel Ported By iBluemind
-Added FIFO IO Scheduler (NOOP Style IO)
-Removed Some Frequency Slots (Need Your Opinion,Better?)
-Added Optimised CRC32 Algorithm
-Added Dynamic FSYNC by faux123 (Use TricksterMod To Activate)
-Added CPU Topology & Enabled ARCH_POWER
-Enable ARCH_POWER
-Added Module Pack (See 4th Post http://forum.xda-developers.com/showpost.php?p=36148744&postcount=4)
-Added SU760 Version
[B][U]V2.0.0 Changelog 21/01/2013[/U][/B]
-Added Screen Off Max Frequency Functionality
-Ram Disk Tweaks
-Added GPU Step Of 384Mhz Using Same Voltages 307Mhz For Now
-Reverted Back To Gz Compression
-Removed Pointless Governors
-Increased User Hz For Smoothness
-Temporarily Removed KSM & ZRAM From Build
-Ability To Read GPU Frequency
-Removed 1.5Ghz & 1.6Ghz Since Nobody Reported Them Working
-Source Now Linaro Compiler Friendly & Built With Compiler Tweaks
[B][U]V1.2.0 Changelog 08/01/2013[/U][/B]
-BFQv5 IO Scheduler
-Ram Disk Tweaks
-Partial Port Live OC By Ezekeel (Now Change CPU/MPU Frequencies On The Fly)
-Native Init.d & Init.d Folder Support
-Added Fsync Control By Ezekeel
-Partial Port Of Sound Control By Ezekeel (Enabled High Performance Audio/Set As Default)
-Built With KSM (Not Enabled)
-Built With ZRAM (Not Enabled)
-Reverted VM Readaheads (User Changeable In Apps Anyway)
[B][U]V1.1.1 Changelog 02/01/2013[/U][/B]
-Switched Kernel Compression To LZMA
-Ram Disk Tweaks
-Changes to OC System
-Hotplug Should Now Definately Be Default
[B][U]V1.1.0 Changelog 02/01/2013[/U][/B]
-Increased Max OC Of CPU To 1.6 But Only 1.42 Is Working For Me
-Min Clock 307Mhz & Max Clock 1228Mhz Set @ Boot
-Added More CPU Frequency Steps (16 In Total)
-Increased VM Readaheads
-Set Kernel Hz to 512
-IO Tweaks
-Other Small Tweaks
[B][U]V1.0.0 Changelog 02/01/2013[/U][/B]
-Added 1.2Ghz Slot
-Lowered & Increased Some Voltages
-Increased CPU Thermal Throttle From 61 Deg C > 71 Deg C
-Some Other Minor Changes
[B][U]V0.9.0 Changelog 01/01/2013[/U][/B]
-Initial Stock Based Release
Downloads​
Kernel Source/Useful Links/Info/Apps/Other
To access some kernel features more easily I recommend you use this free app > http://forum.xda-developers.com/showthread.php?t=1768315
-Kernel Discussion Thread > http://forum.xda-developers.com/showthread.php?t=2077103
-Kernel Source > https://github.com/samno1607/Jekyll-Hyde
-Kernel Modules > See Attachment(Non-Flashable) - blutooth.ko, btwilink.ko, cfg80211.ko, cifs.ko, crc7.ko, hsi_char.ko, lib80211.ko, mac80211.ko, nls_utf8.ko, rfcomm.ko, rpmsg_clien_sample.ko, rpmsg_server_sample.ko, scsi_wait_scan.ko, tun.ko, wl2xx.ko & wl2xx_sdio.ko.
samno said:
Kernel Source/Useful Links/Info/Apps
-Kernel Source > https://github.com/samno1607/Jekyll-Hyde
Click to expand...
Click to collapse
Great work Samno! Well done! :good:
Finally a kernel from samno !!!!
Sent from my LG-P920 (ICS Ported)
Try Use THANKS Button If I Helped
OS_Hacking said:
Finally a kernel from samno !!!!
Sent from my LG-P920 (ICS Ported)
Try Use THANKS Button If I Helped
Click to expand...
Click to collapse
Yup been M.I.A for far too LonG:good:
Any ETA for cm10 compatibily? good job
Sent from my LG-P920 using XDA Premium HD app
No etas
Sent from my LG-P925 using xda premium
---------- Post added at 02:31 AM ---------- Previous post was at 02:28 AM ----------
Please don't post useless/unrelated/not fun posts or ak for ETA's please because I won't respond or may not bother doing the kernel anymore.
Sent from my LG-P925 using xda
wayno140 said:
No etas
Sent from my LG-P925 using xda premium
---------- Post added at 02:31 AM ---------- Previous post was at 02:28 AM ----------
Please don't post useless/unrelated/not fun posts or ak for ETA's please because I won't respond or may not bother doing the kernel anymore.
Sent from my LG-P925 using xda
Click to expand...
Click to collapse
OK understood sorry
Sent from my LG-P920 using XDA Premium HD app
I have followed the steps to install ROM but keep running into the same issue.
When selecting to install from ZIP in CWM I get the following message after the update has started running....
assert failed: getprop("ro.product.device") == "p920"
getprop ("ro.build.product") == "p920")
(Status 7)
Installation aborted.
Any ideas please?
Thanks, Tom
good to see you BACK!!!!! v1.0 boots up fine but no boot with v1.1?? what proc speed is set at boot? maybe too high?
i need kernal 1.4 for rom offsical v20f
samno said:
Kernel Source/Useful Links/Info/Apps
To access some kernel features more easily I recommend you use this free app > http://forum.xda-developers.com/showthread.php?t=1768315
-Kernel Discussion Thread > http://forum.xda-developers.com/showthread.php?t=2077103
-Kernel Source > https://github.com/samno1607/Jekyll-Hyde
Click to expand...
Click to collapse
That app is awesome. All in one! Thanks!
Sent from my LG-P920 using xda app-developers app
tominski said:
I have followed the steps to install ROM but keep running into the same issue.
When selecting to install from ZIP in CWM I get the following message after the update has started running....
assert failed: getprop("ro.product.device") == "p920"
getprop ("ro.build.product") == "p920")
(Status 7)
Installation aborted.
Any ideas please?
Thanks, Tom
Click to expand...
Click to collapse
in the zip file path META-INF\com\google\android\ look for updater-script and delete the assert line and get prop save it put it back in zip and flash again
think build.prop might still be su760
He didn't wanted to ask here.
Sent from my LG-P920 using xda app-developers app
9079 score with cpu 1.4.
But the battery ends in 12 hours without using it.
Howdy...
So how's it going guys, I need some feedback. What changes would you like to see? Please reply in discussion thread > http://forum.xda-developers.com/showthread.php?t=2077103 , I'm hoping to get a release done tommorow if I get time or early next week so the more comments the better
V1.2.0
New update up guys, see OP's for the epic changelog.
samno said:
New update up guys, see OP's for the epic changelog.
Click to expand...
Click to collapse
I confess i "stolen" from your github the LiveOC source code...
Should i risk the jail?
I implemented it in my the CM10 kernel.. which is giving epic headache!
OK jokes apart, could you give me some little hint on how to increase the signal reception?
In CM10 looks so low...
In ICS i have not the problem because i used Acura ramdisk.
Thanks again in advance

[KERNEL] Deviant-Kernel with frandom ! [discontinued]

Greetings. \\//
Hey peeps, I made a kernel as a part of ROM project.
Unfortunately, that ROM was not released.
So I'm sharing my kernel here. :laugh:
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Download​
Making a new one now, will update its features later.
Old stuff:-
Features:-
Basic:-
Droidwall aka Android Firewall
Swap
BCM Tweak
Init.d
Ext 2, 3 and 4 Support
Brightness tweak
frandom module
Frequencies:-
832
624
468
312
156
Governors:-
SMARTASSV2
PERFORMANCE
BCM21533
scary
brazilianwax
conservative
hotplug
intellidemand
interactive
interactivex
lagfree
lazy
lionheart
lulzactive
minmax
ondemand
ondemandx
powersave
savagedzen
smartass
smoothass
userspace
virtuos
wheatley
I/O Schedulers:-
SIO
NO-OP
Deadline
V-R
CFQ
ZEN
BFQ
irfanbagus for BCM tweak
kurotsugi for his source files and initial ramdisk
mikstev for information Droidwall support,brightness tweak
Harish2704 for kernel compiling tools
Savie for permission to use his aroma package and modules
ryuinferno for frandom init script
Thanks:-
prototype-U, Master_Key [for being super helpful]
MarcoToo [studied his patch]
ronnieryan [for testing]
Amogh420 [for Thread Banner]
If I missed anyone,please PM me,
I'll include your name in the list.
:highfive:
​
​Click on above image
Boot to recovery mode
Use CWM
Select - Install from sdcard
Select DeviantKernel#2.zip
Select Yes
That's it ! :highfive:​
Code:
Note:-
In init.d folder
delete 99complete to avoid bootloops
Reserved for change log / FAQ
Please don't complain about the number 69 :|
It is purely unintentional. :fingers-crossed:
[Actual builds were over 108.
I reset the number to 50.
This is the 19th iteration.]
Change log:-
v69
Deviant Kernel #69
Initial Release with basic features.
v1
Deviant Kernel#1
Charging animation on ext4 systems work
BCM tweak is now loaded as module,undervolting is added.
(default value=-80mV,edit 27LoadModules script to change it)
Changed compression mode to lzo
Kernel now has 20+govs,6 i/o schedulers
Built in govs:- bcm21533,performance,smartassv2
built in i/o schedulers:- noop,bfq
other govs and i/o schedulers are loaded as modules via 27LoadModules Script
v2
DeviantKernel#2
noatime,nodirtime is added in mount options.
Scary governor is fixed and is now built in.
zen i/o is added.
frandom module added.
FAQ :-
Ques) Can this kernel make my phone fly?
Ans) Nope. Putting the phone on airplane mode won't help either.
Ques) Can this kernel make my phone's battery last 3 days?
Ans) Yes, if you don't use your phone.
Ques) Does this kernel supports dt-a2sd?
Ans) Nope.
Ques) I have a request for a feature x, will you include it in next update?
Ans) Maybe.
Ques) What is frandom? Where can I download it?
Ans) Download from this post:
LINK
wow...reserved!!!!! :good::good::good:
Reserved good work
wow , new kernel developer....
looks very good!!!!! :good:
@CharsiBabu: Good Work! Keep it up :good: I want one for our rom soon
REPORT:
Deep Sleep 21%
Battery drains fast till 60% then gets stable
Battery Backup: 1 day 12 hours with 2G Network and Music
Nice, another kernel
4 freq please with basic feature and stable without bugs
it wont boot on ext4 thats my first try.
now im back to hellfusion#50
Sir,
You have to delete all the init.d scripts first :v Follow the instructions
RESERVED brooo :d
Nice kernel looks like stable
:thumbup::thumbup:
Sent from my GT-S5360 using Tapatalk 2
ArnavGosain said:
Sir,
You have to delete all the init.d scripts first :v Follow the instructions
Click to expand...
Click to collapse
delete all script on init.d. reboot to recovery mount everything then flash kernel but still no luck always stuck on logo
im always flash to stock kernel first before flash this kernel
Ext4, but where ?
sflnwr said:
delete all script on init.d. reboot to recovery mount everything then flash kernel but still no luck always stuck on logo
im always flash to stock kernel first before flash this kernel
Click to expand...
Click to collapse
This kernel supports ext4 partition on sdcard.
Are you talking about
/system
/data
/cache
partitions?
If the answer is yes,
I will add support in upcoming versions
@ Ronnie
Even I wanted to have only 4 frequencies
but some people like 156mhz frequency.
so included that too
CharsiBabu said:
This kernel supports ext4 partition on sdcard.
Are you talking about
/system
/data
/cache
partitions?
Click to expand...
Click to collapse
Yes ext4 on that partition.
Update coming soon !
sflnwr said:
Yes ext4 on that partition.
Click to expand...
Click to collapse
My exams are going on.
Just wait for 2-3 days.
I'll upload the updated kernel on 24.
Expected change log :-
Ext 4 support on partitions.
Aroma Package.
Brightness tweak.
More Governors.
Touch based CWM Recovery. (if possible)
great i'll wait for this
take your your time and good luck for exam. wish you all the best :good:
Test on Evo and its good
Sent from my GT-S5360 using xda app-developers app
So the day of update has arrived.
I'll upload the revised version in few hours.
Configuring Aroma installer now.
Adding ext4,cwm is still pending.
few more governors added.
brightness,wifi tweak from hells fusion kernel added.
system app replacer script added. ( will explain about it later)
CharsiBabu said:
So the day of update has arrived.
I'll upload the revised version in few hours.http://forum.xda-developers.com/images/smilies/wink.gif
Configuring Aroma installer now.
Adding ext4,cwm is still pending.
few more governors added.
brightness,wifi tweak from hells fusion kernel added.
system app replacer script added. ( will explain about it later)
Click to expand...
Click to collapse
Any luck on touch based recovery integration?

[Script][All ROMS][AROMA]Suvi Booster Script V4.0 [6 Nov 2013][Profile Support]

:good:Suvi Booster Script :good:
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
V4.0 added on 7Nov2013
V3.4 added on 6Nov2013
uninstaller for all versions added on 5Nov2013
V3 added on 5Nov2013
V2.1 added on 2Nov2013
V2 added on 28Oct2013
What is this script?
This is a init.d script which will manage CPU frequencies, governors, IO scheduler, etc. based on the phone state.
Users are free to use this but ROM developers please DO NOT include this in your ROM. Please direct a link to this thread. This will make things at one place
Why I should use this script?
I have observed annoying LAG in many (almost all) 4.2.2 ROMs. I did some investigation and figured out that if we set the proper CPU governor and frequency then the lags are reduced greatly. I am happy with MIUI rom with this script...I feel like 4.1 ROM smoothness.
Well, this is not a big thing. I can do it easily. What different specialty this script has?
Its not a big thing to set the frequency and governor but if you do it, it will eat your battery a lot. Running your CPU at full speed and both cores active is gonna take battery down very fast. So I thought that what if the settings are applied ONLY WHEN phone is active. When phone is sleeping, go back to default power saving settings. So we will have performance when needed with good battery backup. So I decided to write a init.d script which will manage this.
But, let me declare this - This script is aimed to improve performance. Expect little more battery drain than normal. If you want performance, you have to bear this. Also properly setting governors and frequencies you can minimize the battery impact.
Features:
init.d script, no need any app
Sets CPU governor and freques depending on phone state - awake or sleeping
High performance when you need the phone
Battery saver when phone is not in use
Configurable settings - choose your favourite configuration with few simple steps
Sets ADJ and MINFREE parameters to get good RAM
Supports multiple profiles - like setcpu (coming soon)
Aroma installer to choose your suitable configuration.(coming soon)
Will this work only on 4.2.2 or other ROMS as well
It will work on any ROM with proper kernel. In fact this can work on any device :highfive:
Hmm. Ok how to change to my favorite configurations?
This script is configurable to suit your needs without writing single line of 'code'. There is a configuration file ->
/data/SuviBoosterScript/SuviBoosterConfig.sh (for V2.1 nad above)
/system/etc/SuviBoosterConfig (for V2 and below)
Here you can define your favorite governors for each core, scheduler, frequencies when phone is active and sleeping (yes different frequencies can be set), ADJ and MINFREE parameters, read_ahead_kb value, and some other script specific configurations. Open the file you will get it.
Where to downloads?
Your are not allowed to download unless you click on thanks. Attached here
Any pre-requirements?
Yes. You should be running on a kernel which supports the configurations.
init.d support
Recommended to remove any other script from init.d that manages CPU
How do I know whether the script is applied and working?
run the command on adb shell or terminal emulator to read and monitor log file ->
tail -f /data/SuviBoosterScript/SuviBooster.log (for V2.1 and above)
/data/SuviA110Booster.log (for V2 and below)
The command output should change as you awake or sleep the phone.
How bsuhas is going to enhance this?
Yes. I am planning to enhance the script further - adding condition that while charging, everything runs at full speed. some other setting which will make this script eventually a single point of performance boost of all times. You would not need anything else. I am also embedding this script in Suvi Tool.
(*This is not related to Suvi ROM)
Credits:
Inspired from CPU Editor by smokin1337
also to MarkusMcNugen for the idea
XDA
All A110 users and ROM developers
Special thanks to pratik more for MIUI V5 4.2.2 ROM which made me develop this script
Logs will be collected in a file -
/data/SuviBoosterScript/SuviBooster.log (for V2.1 and above)
/data/SuviA110Booster.log (for V2 and below)
run the command on adb shell or terminal emulator to read and monitor log file
tail -f /data/SuviBoosterScript/SuviBooster.log (for V2.1 and above)
tail -f /data/SuviA110Booster.log (for V2 and below)
Code:
[26-10-2013 01:50:28 PM] setting /sys/devices/virtual/bdi/7:7/read_ahead_kb = 1024
[26-10-2013 01:50:28 PM] setting /sys/devices/virtual/bdi/default/read_ahead_kb = 1024
[26-10-2013 01:50:28 PM] setting /proc/sys/fs/lease-break-time = 10
[26-10-2013 01:50:28 PM] SuviBooster Script End, background script will continue
[B][COLOR="red"][26-10-2013 01:50:28 PM] Waiting for wake[/COLOR][/B]
[26-10-2013 01:50:28 PM] Current file size is 4 K
[26-10-2013 01:50:28 PM] setting /sys/devices/system/cpu/cpu1/online = 1
[COLOR="red"][26-10-2013 01:50:28 PM] Second core is now 1[/COLOR]
[26-10-2013 01:50:28 PM] setting /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor = performance
[26-10-2013 01:50:28 PM] setting /sys/devices/system/cpu/cpu1/cpufreq/scaling_governor = hybrid
[COLOR="red"][B][26-10-2013 01:50:38 PM] Waiting for sleep[/B][/COLOR]
[26-10-2013 01:51:24 PM] setting /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor = ondemand
[26-10-2013 01:51:24 PM] setting /sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq = 667333
[26-10-2013 01:51:24 PM] setting /sys/devices/system/cpu/cpu1/online = 0
[26-10-2013 01:51:24 PM] Second core is now 0
[B][COLOR="red"][26-10-2013 01:51:24 PM] Waiting for wake[/COLOR][/B]
[26-10-2013 01:51:28 PM] setting /sys/devices/system/cpu/cpu1/online = 1
[26-10-2013 01:51:28 PM] Second core is now 1
[26-10-2013 01:51:28 PM] setting /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor = performance
[26-10-2013 01:51:28 PM] setting /sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq = 1001000
[26-10-2013 01:51:28 PM] setting /sys/devices/system/cpu/cpu1/cpufreq/scaling_governor = hybrid
[B][COLOR="Red"][26-10-2013 01:51:38 PM] Waiting for sleep[/COLOR][/B]
Look into this file for troubleshooting. Send me this file if you feel some problem.
Configuration guide
The config file has some parameters which you can edit. File is present at
/data/SuviBoosterScript/SuviBoosterConfig.sh (for V2.1 and above)
/system/etc/SuviBoosterConfig (for V2 and below)
or you can edit the file in the zip before flashing.
New folder structure (from V2.1 onward).
/data/SuviBoosterScript/
- SuviBooster.log (log file)
- SuviBoosterConfig.sh (configuration file)
- current_version.txt (current version, do not edit)
- SuviBoosterScriptV2.1.sh (main script engine, do not edit)
#!/system/bin/sh
#Suvi Booster Script config file
#Users are free to use this but ROM developers please DO NOT include this in your ROM
#Dont forget to say thanks to bsuhas here
#The default settings here are suitable for Micromax A110 (which I have) - dual core 1GHz, 512MB RAM
#Please change values if you have any other device
#CPU Core 1 when screen is ON/Awake
GOVERNOR_CPU1="performance"
MAX_FREQ_CPU1="1001000"
MIN_FREQ_CPU1="250250"
#CPU Core 1 when screen is OFF/Sleep
SLEEP_GOVERNOR_CPU1="ondemand"
SLEEP_MAX_FREQ_CPU1="667333"
SLEEP_MIN_FREQ_CPU1="250250"
#Recomended to be "1" for dual core devices however, set to "0" if you don't want the script to turn the second core on/off
#Set to "0" for single core devices
SECOND_CORE_ON_OFF="1"
#CPU Core 2 when screen is ON/Awake
GOVERNOR_CPU2="hybrid"
MAX_FREQ_CPU2="1001000"
MIN_FREQ_CPU2="250250"
#CPU Core 2 when screen is OFF/Sleep
SLEEP_GOVERNOR_CPU2="ondemand"
SLEEP_MAX_FREQ_CPU2="667333"
SLEEP_MIN_FREQ_CPU2="250250"
IO_SCHED="cfq"
#######Advanced properties below. Do not touch if you dont know them######
#Memory mgmt
ADJ_PARAMS="0,1,2,4,7,15"
MINFREE_PARAMS="2048,4096,8192,16384,24576,32768"
READAHEAD_KB="1024"
#Read this file only one time (at boot) (="1") or every time device wakes up (="0")
#Recommended to be "1". If you are trying out different configuration and want it to be applied without reboot then set to "0"
CONFIG_READ_ONE_TIME="1"
#Interval in seconds for script to pause when checking device is awake or sleep.
#This interval will not matter much. Recommended not to change
WAKE_SLEEP_CHECK_INTERVAL="10"
Changelog
Suvi Booster Script V4.0 (7Nov2013)
AROMA
Built in profiles as per your needs, select from Aroma installer
New SBS logo
Aroma installer is all-in-one place for different profiles and uninstaller -
Profiles build-in -
Performance & Powersave
Hybrid & Powersave
Ondemand & Hybrid
Ondemand & Powersave
Performance & Hybrid
Sakuractive & Hybrid
Sakuractive & Powersave
Fixed sqlite3 binary on MIUI roms (maybe for all?)
Support to delete existing init.d tweaks
Other tweaks -
perfect mount options
Kernel VM management
Kernel scheduler, less aggressive settings
Misc tweaks for battery life
EXT4 tweaks - remove journalism
Defrags database files
Disable normalize sleeper
maybe some other ....
Suvi Booster Script V3.4 (6Nov2013)
Performance improvements (of script)
CPU1 and CPU2 settings are overlapped due to a bug (not in script but its MTK). Hence removed CPU2 governor and frequency settings.
'performace' when awake, 'powersave' when sleep. Improve speed when active and saves battery when sleep.
guaranty to boost performance.....
Suvi Booster Script V3 (5Nov2013)
Performance improvements (of script)
No more background loop. Loop runs in main process.
Lags now reduced....(I hope so)
CONSIDER_BATTERY_STATUS="0" by default. to improve charging time
Sleep governors changed to conservative and powersave for CPU core 1 and 2 respectively - To improve battery life
Suvi Booster Script V2.1 (2Nov2013)
New folder structure.
/data/SuviBoosterScript/
- SuviBooster.log (log file)
- SuviBoosterConfig.sh (configuration file)
- current_version.txt (current version, do not edit)
- SuviBoosterScriptV2.1.sh (main script engine, do not edit)
Re-factored code. More developer friendly
Prevents parallel execution. (due to bug in ROM). Script engine will ensure that its only one instance is running.
Permission issue fix. Run the script SuviBoosterConfig.sh once as root and then reboot.
Suvi Booster Script V2 (28Oct2013)
Added battery intelegence.
#Consider the battery status in the script. like -
#When charging, don't apply sleep setting freq and governors.
#When battery is below 15 (see the BATTERY_MIN_LIMIT below) do not apply awake freq and governors
#Set it to 0 if you want the script to ignore the battery status
CONSIDER_BATTERY_STATUS="1"
#The minimum battery percentage below which the battery saving profile is applied
BATTERY_MIN_LIMIT="15"
Improved read_ahed_kb settings
Removed file monior loop. Now log file is cleared every 1000th execution of main loop.
bsuhas said:
Last one....thanks for patience.
Click to expand...
Click to collapse
@bsuhas.... Here is My review after Using it 10 mins
I must say it works perfect no lag at all
scrolling is smooth transition is smooth
Great Work Bro
As I know its just beginnings but some suggestions from my side
add some dalvik tweak in script ( as it good for gamers and give more smoothness)
and also try to update the update script so that it will delete all the init.d script which is already there (as i have to delete the init.d tweaks myself before installing)
Other Than All Good.....
This is what all 4.2 Roms desperately need... This is what I have suggested to someone who felt 4.2 roms are laggy, i suggested him CPU Tuner app which does the same thing what this script does... It will sure help many roms to show their real power... Thanks Brother! :good:
I will come up with the review soon...
Flashed juz now,
Noticable changes in smoothness and performance
Will test battery and report soon
Wonderful work @bsuhas
Feeling the power of the script.
Sent from my A110 using xda app-developers app
Downloading and testing.
Will update the results and output.
Hope this one will change my mind to switch back to 4.1.
---------- Post added at 02:13 PM ---------- Previous post was at 02:12 PM ----------
Downloading and testing.
Will update the results and output.
Hope this one will change my mind to switch back to 4.1.
@bsuhas sir will this conflict with sir andiroxu 3.4.69 kernel .
can i use it on that as PX is already included in that kernel
Sir..
- is this script works on 4.1.x ROMs..
- I am already in andirox 3.4.69. I set hybrid governer and cfg with no frill app.. may I remove setting..
- I am using 300 mob swap ram file with init.D folder.. may I remove this..
shekhar1986 said:
@bsuhas sir will this conflict with sir andiroxu 3.4.69 kernel .
can i use it on that as PX is already included in that kernel
Click to expand...
Click to collapse
snhykoba said:
Sir..
- is this script works on 4.1.x ROMs..
- I am already in andirox 3.4.69. I set hybrid governer and cfg with no frill app.. may I remove setting..
- I am using 300 mob swap ram file with init.D folder.. may I remove this..
Click to expand...
Click to collapse
The script works very well on andiroxu 3.4.69 kernel. Infact i have tested that only
For 4.1 do u feel need of any script? Its already smooth right? You can fladh this on 4.1 Roms it will work
Please remove no frills cpu ond any other cpu managing apps
You should keep the swap script. No problem.
you did it bro....
roshandes said:
you did it bro....
Click to expand...
Click to collapse
Yes Definitely. Awesome Script Feel Using 4.1 Quick, Smooth And Fast.
Really Felling Like Using ThunderZap On 4.2.x.
Thanks @bsuhas Bro For The Superb Script.
just flashble zip file
it means just flash n enjoy ??
or do something??
A110 ([email protected]ñvàs 2) My first super phone
Anas6538 said:
just flashble zip file
it means just flash n enjoy ??
or do something??
A110 ([email protected]ñvàs 2) My first super phone
Click to expand...
Click to collapse
Yes Just Flash And Enjoy It Its Brilliant Trust Me Bro Try And Give Review Soon
Sent from my GT-I9500 using XDA Premium 4 mobile app
working great on dark magic ROM.
script is very efficiently managing both cores .
can't imagine the hard work of sir @bsuhas for this little but huge mod.
I can see the cores graph dancing live on screen.
superb
@bsuhas thanks a lot for giving us such a good script.
Since today morning i am using this script with LegoIce 4.2.2 ROM and could not found any lags.
and its really great that you are heading towards 4.2.2 ROM.
Thanks once again...
Bsuhas bro..can we use this script in 4.1.2 ROMs/miui ROMs...
Sent from my Micromax A110 using Tapatalk 2
rakshikashyap said:
Bsuhas bro..can we use this script in 4.1.2 ROMs/miui ROMs...
Sent from my Micromax A110 using Tapatalk 2
Click to expand...
Click to collapse
Yes.
Hi,
@bsuhas, could you let me know which files need to be deleted from the init.d folder? I need cache swap.. is it fine to have with this?
Sent from my A110 using xda app-developers app

[Kernel][2.7][S2W][DT2W] Unified BindassBoost™ [O/C][UV] [performance + battery]

{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
NOTE : as usual im not resposible for anything you did with your phone
See Faq in next post before posting something
For DOWNLOAD links see post 3
before posting anything read FAQ in 2nd post
change log v2.5
nothing more in this release just lz4 support all over read FAQ
kernel compressed with lz4 for faster boot up
cypto lz4 support
zram with lz4 too
modules (M4U/Zram) stripped to reduce size means low ram usage
Click to expand...
Click to collapse
change log v2.4[/B]
Added Zram WIth snappy compression thankx to @cyclon1978 for config
zram enable by default with 64mb size
compiled with linaro 4.8.3 latest toolchain
cortex a9 optimizated toolchain
battery drox fix binder (nightmare by default for balanced performance)
4.1 init.d fix
kitkat support beta version for develeoper only to help porting
selinux config , security hooks , binder patched neccesary for kitkat implemented now you can try porting see instruction in post 3 for instruction
Click to expand...
Click to collapse
change log v2.3
Added Sweep2wake ,Sweep2Sleep and DoubleTap2Wake
s2w working on all devices
added bindassboost script to easy modify kernel setting on boot (dont edit on windows use linux or edit on phone)
default s2w/s2s enabled on soft keys only and dt2w enable on full screen
read 2nd post for more information(module borrowed from sky-A830L kernel)
default setting will work like below
if you want like below then edit /sys/android_touch/s2w_height_adjust from 854 to 0
Click to expand...
Click to collapse
change log v2.2
FIx PLL reseting issue
Added SMART OVERCLOCKING Authorized by me !!
Code:
if (overclocking enabled) {
if(screen on){
overclock processor ;
} else {
stock clock processor ;}
} else {
stock clock processor ;}
added smartassH3 GOV
added Sioplus I/O
Click to expand...
Click to collapse
change log v2.00
Overclockable By Boosting ARMPLL,MAINPLL,MEMPLL (read faq) thanx to @benoitm974
NOW Support jb out of box
complete support for 4.2 CAM WORKING
cleancache enabled
Added intelligent fsync control 50% IO BOOST check antutu io score (read faq)
readahead increases to 1024KB
ARM-OPTIMIZED sha1 and aes routines
added RWSEM algorith
notification led BRIGHTNESS increases
tcp algo added WESTWOOD by default
SWAP ENABLE SCRIPT Added by habir (ses post 2 how to change)
ALL CUSTOM GOV'S ARE PATCHED FOR DUAL CORE BOTH CORE ACTIVE ALL THE TIME
Dual Core Optimization on All GOVs
NTFS support added
CIFS support added
init.d Support
compiled using optimized 4.6.2 linaro toolchain
used best in class compression technique (kernel size reduced by 33%)
USB OTG Support
6 IO SCHEDULER added total 9 NOW (ROW default)
vr, sio, fiops, fifo, zen, row
14 GOVERNORS NOW (PEGASUSQ default)
pegasusq, lulzactiveq, interactivex, sakuractive , hotplug, zzmove, nightmare
Sources merged with @varun.chitre15 so all feature implemented by him are supported
Undervolted complete chipset by 66.66mV[Milli-Volts]
Insecured
Persistent ADB
Cortex A9 optimizations
Neon optimizations
Increased the kernel timer from 100==>300
Dynamic Management of Dirty page writeback
Lock initial TCP window size to 64k (Improves network ping and output)
Faster NOATIME and NODIRATIME mounting flags
Disabled Gentle Fair Sleepers
Enabled ARCH_POWER
Asynchronous I/O latency to a solid-state disk greatly increased
Patches to prevent depleting Entropies
Frandom driver - Fast Kernel Number Generator
Reduced Android Logger size
Upgraded sources to Upstream 3.4.5 sources
Lowered Log Buffer shift
Optimized apply_slack() method for size and speed
Various EXT4 Filesystem patches from android_kernel_common
Plugged memory leaks to cpufreq driver from upstream
Ability to change IO-Schedulers without need of root
Optimizations to SLUB memory allocator
Decreased CPU transition latency
Enabled 7 new TCP congestion controls - Westwood, Bic, Vegas, HTCP, HSTCP
Removed all debugging shi**
Proportional Rate Reduction for TCP - Google
Optimized swahb32() byteswap helpers
Compiled vfp with neon
Tuned CFS parameters
Reduced vfs cache pressure size
Optimized VM dirty ratios
Optimizations to Android Low Memory Killer
Click to expand...
Click to collapse
Kernel Sources
credits
@varun.chitre15 for his sources
@tri_zet for solving config error
@brunomars for pack unpack scripts
@stopa46 and @edisile for logo design
@cyclon1978 for zram config
S2W/S2S/DT2W Information
sweep from left to right to wake / double tap on screen to wake
sweep from right to left to sleep
settings inside /sys/android_touch folder
doubletap2wake
0 = disable
1 = enable
sweep2wake
0 = disable
1 = only sweep2wake enabled
2 = sweep2wake and sweep2sleep enable
s2w_height_adjust (pixel from top)
854 = sweep on soft key only
x in (0-854) = sweep on region defined by 854 - x from bottom +soft keys will be detected
use echo command to change values
Code:
echo "value" > /sys/android_touch/"filename"
Click to expand...
Click to collapse
FAQ's
Q why all scripts are empty/blank
Ans download scripts.zip and use the way you want to (folder name is the size of swap created ). just replace the way you want
Q still only 1ghz is maximum freq/ how to overclock?
Ans use following command to overclock ARMPLL and MAINPLL (CAUTION MAINPLL BOOST CAN STUCK SOMETIME )
Code:
echo 0 0x000051e0 > /proc/clkmgr/pll_fsel
echo 1 0x00002840 > /proc/clkmgr/pll_fsel
and following to restore original value
Code:
echo 0 0x00004ca0 > /proc/clkmgr/pll_fsel
echo 1 0x00002760 > /proc/clkmgr/pll_fsel
Q overclocking resets at boot
Ans It isnt a bug ,i want it that way .Edit bindassboost script in init.d to auto overclock
Q Screen doesnt wake up sometimes
Ans problem caused by some script that tries to wake/sleep core as my kernel does it auto so conflict is created which prevents screen wakeup
delete all init.d script that has echo 0/1 > **cpux/online comand and check whether problem solved or not (my kernel isnt compatible with suvi script)
Q battery draining faster in v2.3
Ans s2w/s2s/dt2w features come at cost of little battery drain as now touchpannel doent went off during sleep to report touch event and interrupt processor is some conditions are met
athough it may be battery stats prob too try charge till 100 and full discharge 1-2 time to calibrate battery
Q DT2W doesnt work sometime
Ans double tap detects time diffrence b/w odd and even touches at even no. of touch try tapping 3 times in row cause there may be a touch reported earlier and time crieteria doesnt met
Q phone take sometime to wake up little long
Ans s2w feature schedule power on button emulation to prevent synchronization thus if something heavy or power saving is on then processor takes time to service interrupt caused by s2w
Q what is Zram
Ans Zram is compressed swap block created in ram itself thus has higher speed and reduce i/o
high usage of zram has impact on battery life although marginally at usage > 75%
Q what is Snappy (in v2.4)
Anssnappy is compression algorithm from google to speed up compression/decompression .snaapy provide 39% compression ratio ant speed of arround 300mbps thus
64mb zram can accomodate 164 mb data so in total you have 512-64+164 = 612 ram
Q what is LZ4 (in v2.5)
Ans lz4 is currently fastest algorith with speed of more than 400 mbps that is 33% higher than snappy with compression ratio of about 44% (worst case) but higher speed produces less lag 0.25s to compress 100mb data
Click to expand...
Click to collapse
HOW TO OVERCLOCK
instruction
1. download BBoostManager App (xposed module isnt working now will fix it later)
2. add BBoost Game Mode widget to homescreen
3. this app behave as toggle button click to switch b/w stock and overclock
TO-DO List
Sweep2Wake with pocket detection
smartUV
Click to expand...
Click to collapse
Making Download Easy
Go To my DevHost A110 directory
And Download Required Version
downloading on ics out of the box. will report soon. btw do i need to clear init.d?
EDIT: just downloaded 2.4 and it works real smooth. hats off to dev.
Recognized Noob said:
downloading on non jb out of the box. will report soon. btw do i need to clear init.d?
Click to expand...
Click to collapse
im using it and mine is also ics out of box one it is working fine
init.d? wt to do?
and if i over clock does battery drainage increase significantly? how much is final speed?
just tried kerel. cam not working. originally ics now jb 4.2.2
Bro you should also show the commit/difference on Github for adding Overclocking ! This will help other Devs for implementing in their kernel
GuneetAtwal said:
Bro you should also show the commit/difference on Github for adding Overclocking ! This will help other Devs for implementing in their kernel
Click to expand...
Click to collapse
i am synching my repo right now youll see the differen by today
i will comply with gpl always just wait
Recognized Noob said:
init.d? wt to do?
and if i over clock does battery drainage increase significantly? how much is final speed?
just tried kerel. cam not working. originally ics now jb 4.2.2
Click to expand...
Click to collapse
no need to delete init.d
if my calculation is right then overclock works till 1.1 ghz only through armpll it doesnt affecting battery as varun has implemented undervolt on it
kernel is working fine for me im a ics out of box user im using http://forum.xda-developers.com/showthread.php?t=2644535 ROM try it else ill have to release seperate kernels
Review :
1) Camera is working bro.No issues...
2) The game which i said was not working earlier is working now but moves like picture frames ( lagging ) and hence unable to play. It is just a 80mb data game. Problem with the kernel or MTK6577 max power is only that ! I dunno ? But the same game works well in A110Q.
3) Free RAM is very fine.
4) Battery backup. Need to check and will give review soon
Overall thanks for your brilliant work again ! :good::good::good:
( Any gaming kernel without eating battery would be nice )
sansans90 said:
Review :
1) Camera is working bro.No issues...
2) The game which i said was not working earlier is working now but moves like picture frames ( lagging ) and hence unable to play. It is just a 80mb data game. Problem with the kernel or MTK6577 max power is only that ! I dunno ? But the same game works well in A110Q.
3) Free RAM is very fine.
4) Battery backup. Need to check and will give review soon
Overall thanks for your brilliant work again ! :good::good::good:
( Any gaming kernel without eating battery would be nice )
Click to expand...
Click to collapse
A110Q is mt6589 quad core phone with gsx544 gpu you cant compare it with mt6577 (gpu is weak)
try gltools if it uses gpu or overclocking if it uses cpu
Mine is ICS out of the box and everything is fine now with Mckay rom ( the only 4.2 rom I have which I downloaded long back ) ... My wifi is stuck at times.. No data transfer happening all of a sudden and when I try to turn off Wifi and turn on again it is stuck in turning on like WIfi is disabled ... Any help would be appreciated
Great work @bindassdost.
The kernel working like a charm.just a request to add smartassh3 and sioplus in next build.
Regards.
Sent from my Canvas A110 using Tapatalk
bindassdost said:
A110Q is mt6589 quad core phone with gsx544 gpu you cant compare it with mt6577 (gpu is weak)
try gltools if it uses gpu or overclocking if it uses cpu
Click to expand...
Click to collapse
Ya bro knew it is MTK6589...Just said...Will try gltools now
Great work
aravindhramachandran said:
Mine is ICS out of the box and everything is fine now with Mckay rom ( the only 4.2 rom I have which I downloaded long back ) ... My wifi is stuck at times.. No data transfer happening all of a sudden and when I try to turn off Wifi and turn on again it is stuck in turning on like WIfi is disabled ... Any help would be appreciated
Click to expand...
Click to collapse
Mine wifi is working fine download any latest rom as your rom may have this bug
akshayk01 said:
Great work @bindassdost.
The kernel working like a charm.just a request to add smartassh3 and sioplus in next build.
Regards.
Sent from my Canvas A110 using Tapatalk
Click to expand...
Click to collapse
Got that buddy will add in future releases
Anyone please tell me why all initd scripts are kept blank?
I am on ib phoenix rom by ibshar. it is on droid-devs. Ur previous kernel was working fine. Cam not working on my ics out of box with latest one.
@bindassdost I am unable to get the overclocking ting to work. It always gets stuck.
Please HELP.
Sent from my Micromax A110 using Tapatalk
CrashOverride1995 said:
@bindassdost I am unable to get the overclocking ting to work. It always gets stuck.
Please HELP.
Sent from my Micromax A110 using Tapatalk
Click to expand...
Click to collapse
Same here
Sent from my A110 using XDA Premium 4 mobile app
dhrtlockeroo9 said:
Same here
Sent from my A110 using XDA Premium 4 mobile app
Click to expand...
Click to collapse
How to do overclocking ? I mean how to do this..
echo 0 0x000051a0 > /proc/clkmgr/pll_fsel
echo 1 0x00002840 > /proc/clkmgr/pll_fsel
Sry i don't know...Could you brief me please...! Using SetCPU?

Categories

Resources