Kernel (deprimed_test) - Break It If You Can
This is a discussion on Kernel (deprimed_test) - Break It If You Can within the Deprimed forums, part of the Droid Kernels category; With the Die Hard callibrator, do you have to drain your phone down after it wipes the battery stats?
Sent from my CushZero using Tapatalk...
25Likes
-
With the Die Hard callibrator, do you have to drain your phone down after it wipes the battery stats?
Sent from my CushZero using Tapatalk
Galaxy Nexus - Android 4.0.4 IMM76I
Running AOKP Build 36 - Best Rom Over...
Franco.kernel r160 OC'd @ 1344 Max 729 Min
◄————————————————————————————
-

Originally Posted by
BrUhNiGGs
With the Die Hard callibrator, do you have to drain your phone down after it wipes the battery stats?
Sent from my CushZero using Tapatalk
nope, just plug your phone in, go to the script, let it charge and then just follow the instructions in the script
tweaks, hacks, and other goodies here
current phone The GALAXY NEXUS LTE
all
the 
stock-for now...

previous phone the trusty ol' droid 1
-

Originally Posted by
metalspring
yes and no, it doesnt technically improve battery life, it improves the accuracy with which the battery level is reported, for example your phone might say it has 5% battery left and turn off when really it has 10-20% left...this is easily shown when you dont calibrate the battery and get huge drops in battery % (like from 20% down to 5%) but afterwards it becomes much more stable
it all depends on how you calibrate the battery, i'd highly suggest zeppelinrox die hard battery script over on xda (check the supercharger thread)
I understand, just thought it was interesting and thought I'd share. Ya I used to use zeppelin's work on my og.
Sent from my Galaxy Nexus using Tapatalk
Samsung Galaxy Nexus: CDMA
ROM: AOKP 23 Un-Blacked Out and Craig Gomez 4.0.4
Last.fm
-

Originally Posted by
metalspring
hey prime, do you think you could just whip up a version of your newest kernel with compcache fixed? i love using your kernel now that i have my vsels and slots down but im missing compcache, swap is ok by itself but i like pairing it with compcache or just using compcache by itself (swap+compcache allows for lots of swap if you need it but compcache is faster and helps with overall speed)
Do you use swap without Swapper2? And what is the value of your swappiness. Im thinking about repartitioning my sd card for swap but how much mb should it be. Thanks.
Sent from my CushZero using Tapatalk
Galaxy Nexus - Android 4.0.4 IMM76I
Running AOKP Build 36 - Best Rom Over...
Franco.kernel r160 OC'd @ 1344 Max 729 Min
◄————————————————————————————
-

Originally Posted by
BrUhNiGGs
Do you use swap without Swapper2? And what is the value of your swappiness. Im thinking about repartitioning my sd card for swap but how much mb should it be. Thanks.
Sent from my CushZero using Tapatalk
yeah its actually fairly easy to run a swap partition without swapper2, its a simple 1 line script. I usually use 30-40 for my swappiness and a good swap size is about 256 MB (it pretty much never gets full) I'd suggest throwing in an ext partition too just in case you want link2sd, ext 3 or ext 4 and probably 512 MB is good for that, either do it via rom manager or minitool partition wizard on a pc if you want more control over everything
heres the script to use a swap partition, just throw it at the end of a file in /etc/init.d after testing it in terminal emulator first
Code:
swapon /dev/block/mmcblk0p2
or
Code:
swapon /dev/block/mmcblk0p3
depending on what order you partition your sdcard (for example the first one would be used if you had it set up FAT32/swap/ext3, and the second one would be if you had it FAT32/ext3/swap)
Last edited by metalspring; 02-22-2012 at 06:10 AM.
tweaks, hacks, and other goodies here
current phone The GALAXY NEXUS LTE
all
the 
stock-for now...

previous phone the trusty ol' droid 1
-

Originally Posted by
metalspring
yeah its actually fairly easy to run a swap partition without swapper2, its a simple 1 line script. I usually use 30-40 for my swappiness and a good swap size is about 256 MB (it pretty much never gets full) I'd suggest throwing in an ext partition too just in case you want link2sd, ext 3 or ext 4 and probably 512 MB is good for that, either do it via rom manager or minitool partition wizard on a pc if you want more control over everything
heres the script to use a swap partition, just throw it at the end of a file in /etc/init.d after testing it in terminal emulator first
Code:
swapon /dev/block/mmcblk0p2
or
Code:
swapon /dev/block/mmcblk0p3
depending on what order you partition your sdcard (for example the first one would be used if you had it set up FAT32/swap/ext3, and the second one would be if you had it FAT32/ext3/swap)
Thanks. But what order is it if I partition it using Rom Manager?
Galaxy Nexus - Android 4.0.4 IMM76I
Running AOKP Build 36 - Best Rom Over...
Franco.kernel r160 OC'd @ 1344 Max 729 Min
◄————————————————————————————
-

Originally Posted by
BrUhNiGGs
Thanks. But what order is it if I partition it using Rom Manager?
run each one in terminal emulator and see which one doesnt give you an error. After all swap can only be mounted on a swap partition (or a swap file but using a partition is much better)
tweaks, hacks, and other goodies here
current phone The GALAXY NEXUS LTE
all
the 
stock-for now...

previous phone the trusty ol' droid 1
-

Originally Posted by
metalspring
run each one in terminal emulator and see which one doesnt give you an error. After all swap can only be mounted on a swap partition (or a swap file but using a partition is much better)

Okay, will try once SD10 is released :P
And since swap slows down phone a little overtime, how can you free up the swap partition and renew like you can with compcache?
And also, how can you actually manage the swappiness value?
Sent from my CushZero using Tapatalk
Last edited by BrUhNiGGs; 02-23-2012 at 09:11 PM.
Galaxy Nexus - Android 4.0.4 IMM76I
Running AOKP Build 36 - Best Rom Over...
Franco.kernel r160 OC'd @ 1344 Max 729 Min
◄————————————————————————————
-

Originally Posted by
BrUhNiGGs
Okay, will try once SD10 is released :P
And since swap slows down phone a little overtime, how can you free up the swap partition and renew like you can with compcache?
And also, how can you actually manage the swappiness value?
Sent from my CushZero using Tapatalk
you can free up swap with
Code:
swapoff /dev/block/mmcblk0p2
swapon /dev/block/mmcblk0p2
or
Code:
swapoff /dev/block/mmcblk0p3
swapon /dev/block/mmcblk0p3
and swappiness is really really easy to set its just
Code:
sysctl -w vm.swappiness=30
obviously you can use any number and it can be run in terminal or put at the bottom of the last script run in /etc/init.d (if you use zeppelinrox v6 supercharger or kickasskernel tweaks just look for the swappiness line in those files in /etc/init.d
tweaks, hacks, and other goodies here
current phone The GALAXY NEXUS LTE
all
the 
stock-for now...

previous phone the trusty ol' droid 1
-
How do you know that swap is using the special partition?
Is there a setting that points to it?
- onDroid
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
Forum Rules
Similar Threads
-
By BioInclined in forum Droid 2 Hacks
Replies: 0
Last Post: 10-03-2011, 10:57 PM
-
By B-boy™ in forum B-boy™ - D1
Replies: 25
Last Post: 08-25-2011, 11:15 PM
-
By Maverick0984 in forum Tech Issues, Bug Reports & Suggestions
Replies: 4
Last Post: 07-06-2011, 09:45 AM
-
By keithjx in forum Tech Issues, Bug Reports & Suggestions
Replies: 1
Last Post: 03-22-2011, 11:00 AM
Search tags for this page
can i get the native a2ext to use ext4
,
deprime kernel
,
deprimed kernal
,
deprimed kernel
,
deprimed kernel droid
,
deprimed kernels
,
deprimed test kernel
,
prime deprimed kernel
,
prime kernel
,
prime kernel break
,
prime kernel droid
,
prime kernels
,
prime's deprimed kernel
,
primed kernel
,
primes deprimed kernel
Click on a term to search our site for related topics.
Tags for this Thread