Beta Kernel 15 Jan 11
NOTE1: If you’re having problems, please uninstall/disable SetCPU and any init scripts first. A lot of the issues are OC related. If everything works fine after doing that, slowly start over-clocking, if not, please post. Once the problem speed is found, report it, but most likely, it’s a voltage issue, not all phones/processors are equal. Since these kernels have snq-‘s VDD sysfs interface, you can modify the VDD levels yourself. If there are any Java developers that would like to tackle the task of writing a program to assist, please do, I’ll help as much as I can.
NOTE2: If you post a problem, please include a valid email address, only myself and Mr. X can see them. For those that have had issues in the past, you can attest to the fact that I’m pretty good about emailing people to help work the issues out. Also when posting, please include the following: platform (Bravo/Evo/Inc), hardware revision if known, ROM and whether it’s Sense/Desire Z port/AOSP Froyo/AOSP Gingerbread, and OC settings. This just makes my job easier when attempting to help.
Change Log:
Updated to 2.6.32.28
Tweaked smartass some more
Broadcom bluetooth low power driver
Lowered minimum vdd to 825 for further testing
Fixed Bravo camera, now 5MP
Audio Boost for all
Updated BFS to version 363
Fixed out of memory problem when copying large files to a mounted SD card
Hopefully fixed CFS issues
More code clean-up
Full Feature List:(Or as close to it as this old guy can get)
Frankenstein of Inc-MR3/Bravo/Evo-MR3/Glacier/Legend/Vision/Ace source trees
Moved source tree as close to Mainline as possible
Updated to 2.6.32.28
Evo/Inc Atmel 3/5 Multi-point Touch
Evo WiMax support – see sturmen, I added it to the list
LZMA Kernel compression
Automatic Process Group scheduling
GPU+
BFQ IO Scheduler
Interactive Governor
Smartass Governor (Default)
fixed sysfs interface
added Kconfig options for all settings
Defaults to 128-245Mhz screen off
Defaults to profile max when screen turns on, reduces lag
Overclockable to 1.22Ghz, default 128-998Mhz
ck2 patchset
snq-‘s VDD sysfs interface
modified for all platforms, vice just the Bravo
Moved the min/max settings to Kconfig options
825-1400mV VDD range, 925mV(128Mhz)-1400mV(1.22Ghz) in acpu table
50K Sampling for conservative governor
AOSP support, yeah I know doesn’t work on all yet
Enabled and fixed rndis for wired tether
disabled HTC’s perflock
SLUB Unqueued allocator
CIFS
TUN
EXT4
NILFS2
All debugging turned off
All tracing turned off
Swap turned on
Static voltage scaling, no HAVS, not until I modify the VDD sysfs interface to work nicely with it
Absolutely no modifications to htc_battery, other than HTC updates
Quadrant scores (since some think that’s important, lol)
My phone (Inc/Uber-Z 2.0/998Mhz/BFS kernel)
Custom (CPU/Memory) 1475
Full 1675
My phone (Inc/Uber-Z 2.0/1.152Ghz/BFS kernel)
Custom (CPU/Memory) 1575
Full 1875
Downloads:
BETA Kernel Bravo BFS 15 Jan 11 (551 downloads)
BETA Kernel Bravo CFS 15 Jan 11 (521 downloads)
BETA Kernel Evo BFS 15 Jan 11 (825 downloads)
BETA Kernel EVO CFS 15 Jan 11 (945 downloads)
BETA Kernel Inc BFS 15 Jan 11 (775 downloads)
BETA Kernel Inc CFS 15 Jan 11 (550 downloads)
md5sums:
99adb0393ece330025b32bca2d728368 ztest-BRAVO-BFS-011511.zip 7c4e60e3397a563b2a003c772bb85cd6 ztest-BRAVO-CFS-011511.zip 896e25b7af3a7c9fddf60cc3ca653820 ztest-EVO-BFS-011511.zip de5ff05e7c0aed43dc20175ab1b62ec8 ztest-EVO-CFS-011511.zip b57a17b0e51f13cef7f65b30c915c8c5 ztest-INC-BFS-011511.zip 40ff9493c38bfdb1c00d9ebaf075902e ztest-INC-CFS-011511.zip
Modifications I’ve done to my phone
Setup and Enable Swap partition
I used gparted to re-partition my SD card to @ 15G FAT/1G ext3/100MB swap.
/system/etc/fstab
/dev/block/mmcblk1p3 none swap sw 0 0
/system/etc/init.d/10swapon
#!/system/bin/sh swapon -a
Drop caches on screen off
I know, not always a good idea, but I discovered this while working on the out of memory when copying files to a mounted SD card. vfs_cache_pressure wasn’t cleaning the caches as quickly as it should, hence drop_caches method.
I still recommend using QtADB or Droid Explorer instead of mounting the SD card to the computer.
/system/etc/init.d/90dropcache
#!/system/bin/sh (while [ 1 ] do AWAKE=`cat /sys/power/wait_for_fb_wake` if [ $AWAKE = "awake" ]; then AWAKE= fi SLEEPING=`cat /sys/power/wait_for_fb_sleep` if [ $SLEEPING = "sleeping" ]; then sync echo 3 > /proc/sys/vm/drop_caches SLEEPING= fi done &)
Example of an init script to set VDD levels on boot
Note: Make sure you test the voltages extensively prior to setting up an init script. If you are using the kernel as default, and not changing the governor, then 128 and 245 are the important ones to play with, since your screen is off more than on. Finding the sweet spot for those will save alot of power in the long run. My phone does great at 875 for both.
/system/etc/init.d/90vddlevels
#!/system/bin/sh if [ -e /sys/devices/system/cpu/cpu0/cpufreq/vdd_levels ]; then echo ’128000 875′ > /sys/devices/system/cpu/cpu0/cpufreq/vdd_levels echo ’245000 875′ > /sys/devices/system/cpu/cpu0/cpufreq/vdd_levels fi
Programs I’ve installed to help
Tasker
Set to turn on airplane mode and silent mode between 2100-0425 weekdays and 2200-0655 weekends, alarm goes off at 0430 weekdays and 0700 weekends. All mail and messages are there when I wake up. If anyone needs to call me during those times, they can use my home phone. Also it’s setup to reboot the phone every morning at 3am, helps with that phantom hangup on the Desire Z ports.
Auto-wifi enable
Setup to turn on wifi as I approach home and work, since 3G coverage in both places SUCK!!!!!
ES Task Manager
Setup to kill most processes on screen off, set it to ignore the important ones.
System Panel
Setup to monitor. Great tool to help figure out what’s killing batteries or using all the resources.
Titanium Backup
Setup to backup all new and newer M/W/F, and everything T/Th/Sa. Figured the phone needs Sundays off.
QtADB
Awesome program to copy files to/from phone without having to mount the phone to the computer.
80 Comments
Leave a Reply
You must be logged in to post a comment.
Saturday, January 15th 2011 at 19:42 |
[…] This post was mentioned on Twitter by Jerry lange. Jerry lange said: RT @Ziggy471: Beta Kernel 15 Jan 11 – http://tinyurl.com/46y8bnb […]
Saturday, January 15th 2011 at 21:46 |
Thanks for the update.
How similar is this to the included kernel in Calkulin’s evio2 1.7.7? Interactive gov by default?
Thanks!
Saturday, January 15th 2011 at 22:19 |
Calkulin has a custom kernel based solely off the EVO-MR3 base. I did a few tweaks, but it’s 95+% stock EVO-MR3. This is 90+% HTC code, but from multiple source trees. I’d like to think I got the best of them all, but I’m not sure.
As for the governor, default is smartass, thought that was in the post, it wasn’t, but is now. Smartass is similar to interactive, but has screen off awareness.
Saturday, January 15th 2011 at 23:58 |
Thank you for this kernel. Its awesome. Working well on miui. I have noticed while running setcpu or like app, they are reporting that the governor is ondemand. I love smartass. How can I get it to just work. All devs have been trying to get this working correctly. Are u sure yours is? All due respect Ziggy, I am just curious. Thank you for your work.
Sunday, January 16th 2011 at 08:21 |
The default governor is smartass, if you want to check, the config is compiled in, /proc/config.gz.
3 things can change the governor:
1. SetCPU or like program
2. An init script that echos ‘ondemand’ to /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
3. You the user echoing ‘ondemand’ to the same file.
Monday, January 17th 2011 at 18:18 |
Smartass is working amazing, it’s something local thats echoing on-demand. I blame setcpu 😉 or a rom init script.
My smartass is working great.
Monday, January 17th 2011 at 18:20 |
It’s probably your co-worker that’s doing it
Monday, January 17th 2011 at 23:24 |
yeah always blame Johnny
Sunday, January 16th 2011 at 00:21 |
So far running cfs version on my evo and so far so good
Sunday, January 16th 2011 at 02:26 |
Ziggy, is there a special way of installing the bfs kernel on the evo? I’m running evio 1.77. Doing the usual steps (wiping cache & dalvik cache), flashing the kernel and rebooting resulted in everything being very slow. Does something in evio need to be turned off to use the bfs kernel? Peeking around in the /sys/devices/system/cpu/cpu0/cpufreq/ folder revealed that the system was using the conservative governor as well.
Flashing cfs similarly brought the speed/responsiveness back.
Thanks for your feedback.
Sunday, January 16th 2011 at 08:39 |
Calkulin uses an init script to set the governor on boot, 01cpufreq_governor. You can modify that by changing CONSERVATIVE=”1″ to CONSERVATIVE=”0″ and SMARTASS=”0″ to SMARTASS=”1″, or just delete/change permissions on the file.
Again, only 3 things can change the governor, see above comment.
Sunday, January 16th 2011 at 16:41 |
Thanks for the reply. Even after the change to smartass, bfs still seems quite a bit more jittery than cfs. The smoothness is just not there. Probably need to play with threshold parameters perhaps.
Sunday, January 16th 2011 at 17:37 |
If you’re using the newer sense, BFS seems to be slightly better /feeling/, and on the older sense, CFS /feels/ better. I really don’t know why, haven’t had a chance to look at that yet.
Sunday, January 16th 2011 at 19:57 |
Evio 1.77. I assume that’s a newer sense, since it’s based on the 3.70 ota. Just reverted back to a backup I made prior to messing with the different kernels. Reflashed your cfs kernel afterwards. Seems this combination without any other changes provides a really good experience, very responsive (no setcpu, or modification of any of the settings in the cpu folder). I left the governor at conservative as well. Charging up the battery now to see how battery life has been affected. With my typical usage, I got a good 48 hrs out of the seidio 3500 mah battery before with the customized kernel in 1.77.
Sunday, January 16th 2011 at 09:47 |
I understand what you are saying but the kernel is not defaulting to smartass after boot, it stays on ondemand. Also if I use setcpu or like app to change to smartass the CPU revs up from 700 – 998 and bounces between that and never falls below that but for a second or two. I’m sure its not helping battery life. Is the kernel actually using smartass after boot and apps are changing it when they load?
Sunday, January 16th 2011 at 10:00 |
Then something is changing it, simple as that. Look in /system/etc/init.d, and check for any init scripts that are setting the governor.
If you look in the config on all kernels, I have smartass set as the default:
.config Bravo BFS:
CONFIG_CPU_FREQ_DEFAULT_GOV_SMARTASS=y
.config Bravo CFS:
CONFIG_CPU_FREQ_DEFAULT_GOV_SMARTASS=y
.config Evo BFS:
CONFIG_CPU_FREQ_DEFAULT_GOV_SMARTASS=y
.config Evo CFS:
CONFIG_CPU_FREQ_DEFAULT_GOV_SMARTASS=y
.config Inc BFS:
CONFIG_CPU_FREQ_DEFAULT_GOV_SMARTASS=y
.config Inc CFS:
CONFIG_CPU_FREQ_DEFAULT_GOV_SMARTASS=y
So, unless something changes it, then it stays at that. It’s like Newton’s first law of motion, an object will remain at rest unless it is acted upon by an external unbalanced force.
Sunday, January 16th 2011 at 10:35 |
Sorry to keep bothering u but how do I open the script on the phone?
Sunday, January 16th 2011 at 10:53 |
I use ES File Explorer, and in there, just click on it, it’ll open a dialog ‘Open As’, select Text, then select ES Note Editor.
Sunday, January 16th 2011 at 11:51 |
Question about the governors… Smartass seems to not be scaling down much while the screen is on. I see it fluctuate between 998, 883, 921, and 691. It never goes below 691. When I choose Interactive, it drops to 245 right away. Is this normal? I thought Smartass was the same as Interactive, just with the added screen off awareness.
I did have a reboot while OC to 1152 again just like on the Jan 2 beta while loading a page in Miren browser. Normally I can run 1152, and used it all the time in your previous kernels. My EVO is hardware 002 and rom is mikfroyo 4.4 (Sense based). I was using Smartass with scaling from 245-1152 set using OS Monitor.
Thanks…Brian
brian_evers@hotmail.com
Sunday, January 16th 2011 at 11:54 |
I should also mention after my reboot at 1152, I dropped down to 998 and it has not rebooted since. Not sure why my EVO is more sensitive to OCing with the Jan. test kernels.
Sunday, January 16th 2011 at 11:54 |
Yeah, it doesn’t scale down as well now, I was tweaking it to get better performance. To take it back to how it was, echo 0 > /sys/devices/system/cpu/cpu0/cpufreq/smartass/max_ramp_down
I set it at 38400, but it’s not performing like it should, so I’ll be changing it back on the next release.
Sunday, January 16th 2011 at 18:53 |
I assume you’d want to do this in a script at boot?
Sunday, January 16th 2011 at 18:54 |
That’d be the easiest way
Sunday, January 16th 2011 at 20:07 |
Hi there,
Been using your kernels for a long time and love them a bunch! I just had a question though. I grabbed the BFS version for the EVO 4G, and I don’t seem to have 3-5 finger multi-touch support as the change log states. Any ideas as to why? Thanks!
Monday, January 17th 2011 at 07:31 |
No ideas as to why.
Cat /sys/android_touch/vendor.
Monday, January 17th 2011 at 16:07 |
I get ATMEL_x0080_x0016 after typing that command in.
Monday, January 17th 2011 at 17:36 |
Then you should have 5 point multi-touch, it’s the same sensor as my INC.
Unless you guys on Evo have the same issue we do on INC, which if I upgrade past 2.5.0.5 CWM, then I loose multi-touch.
Sunday, January 16th 2011 at 20:55 |
I still have wakelock on this kernel, Evo r3.
Tuesday, January 18th 2011 at 11:57 |
No comment?
Tuesday, January 18th 2011 at 12:15 |
Sorry missed this one.
I’m not sure what you’re refering to. The system uses wakelocks for power management. “Wakelocks are one of the new features that Google has developed to manage the android power management framework.”
Z
Wednesday, January 19th 2011 at 11:27 |
I’ll try again, but what I mean is my phone never idles with this kernel…wakelock never goes away.
That was the same problem I had with the last release.
Wednesday, January 19th 2011 at 15:38 |
Well, I stand corrected…after hours of use wakelock went away.
This is odd, even when I had wakelock flush was not running and I had 1% CPU usage on average.
Sunday, January 16th 2011 at 21:31 |
Ziggy, I installed your latest beta (1/15 cfs) on my Evo (H/W 0002, Myn’s RLS5, old radios/PRI (09.09/1.77), CWM recovery v2.6.0.1). No problems on install (wiped cache and dalvik twice each), but my phone would completely freeze necessitating a battery pull about five minutes after boot. I did have Set CPU installed, but was running no profiles and only let it auto-detect the default settings. After it froze the first time, I pulled the batt, word cache and dalvik again, rebooted and same thing. Please let me know if you need any other information. Thanks
Monday, January 17th 2011 at 07:32 |
If it does that again, get me /proc/last_kmsg.
I really have no clue unless I can look at the kernel logs.
Sunday, January 16th 2011 at 22:47 |
Hi Ziggy. Yet another great kernel. Smoot as silk.
I’ve flashed your latest CFS on Calk’s EViO, v 1.7.7, and I want to change the default governor from conservative to smartass. When i try to save changes ti the init script using ES note editor it won’t save the changes. Is there something I am dojng wrong? What setting do I need to change to allow me read and write access? Thanks in advance, sir.
Monday, January 17th 2011 at 01:38 |
In ES file explorer go to settings, at the bottom is root, check root and choose accept and hiapk, then check mount /system/ as writable. good luck
Monday, January 17th 2011 at 07:35 |
Yeah, what he said….lol
Thanks, I was too tired last night to answer anyone.
Monday, January 17th 2011 at 08:34 |
Thanks guys. Worked like a charm. I had seen that option in ES, but the whole “experimental feature” thing kind of scared me off. I guess that’s what nand backups are for, anyways.
Monday, January 17th 2011 at 06:44 |
Hey Ziggy,
I have used your kernels on my last Sense-ROM. now I’m using CyanogenMod 6.1.1 on my Desire. can I use your new kernel with this ROM? Regards
Monday, January 17th 2011 at 07:33 |
You should be able to. I enabled AOSP support in all kernels, one .config option, so it /should/ work.
Please let me know if/how it works.
Monday, January 17th 2011 at 15:30 |
I’ve just flashed the zip-file and after reboot my phone can’t be used.
Only the screen is active, but i can’t touch anything.
Have i to configure something before flashing?
Some details about my phone:
HTC Bravo (GSM), PVT4, Radio 5.11.05.14, CM 6.1.1
Monday, January 17th 2011 at 17:46 |
As I said, it /should/ work, I guess it doesn’t. The main difference between sense and AOSP is just enabling CONFIG_TOUCHSCREEN_COMPATIBLE_REPORT, which I did, hence me saying it /should/ work. I know people on both INC and EVO have had it working, but you’re the first Bravo.
BTW, thank you very much for including the info about your phone, hw ver, radio, and ROM, makes my life easier.
I’ll see what I can figure out for you though.
Wednesday, January 19th 2011 at 16:28 |
No Prob.
I reverted back to Sense-ROM and testing BFS-Kernel 🙂
Really nice work, keep it up 🙂
Monday, January 17th 2011 at 10:09 |
I tried the previous Ziggy beta on CM6.1 (DInc), and everything worked fine except for Bluetooth. I switched back to a Sense ROM, so I can’t say about this one.
Monday, January 17th 2011 at 10:57 |
I tried cfs it worked fine for a day bit last night after not changing anything my touch screen became unresponsive and then went into bootloop. I went into recovery and loaded bfs and haven’t had any problems. I have a Dinc running skyraider 3.5 without set cpu. I had best battery life with 1.2.11 cfs (16 hrs on standard battery) so I’m going back to that for now. Thanks
Monday, January 17th 2011 at 12:48 |
I am running SR 3.5 too, and last night I noticed a much larger than normal drop in battery. Normally it’s around a 3% drop (I leave WiFi on, auto-sync off). Last night, it was a 10% drop.
But… I was out of town and bored yesterday, and loaded the 11.19 radio. I noticed the new kernel and loaded it a few hours later. I also did the did the max_ramp_down init script (last night) and verified in System Panel it was scaling down.
So… I reverted to the 9.01 radio, and I’ll see how it goes.
Monday, January 17th 2011 at 11:22 |
Hey Ziggy… You are on the DInc, yes? Just wondering what radio you are on.
Also, have you ever played around with the voltages for the higher cpu freq’s? Is this just a “experiment and see what happens” type thing, or is it best to just leave them alone?
Monday, January 17th 2011 at 12:52 |
9.01
I haven’t even OC’d in over a month, except to verify prior to a release. So haven’t really played with those voltages, or any of the voltages for that matter. But the kernel does have sqn’s vdd sysfs interface, so have fun playing with them. So yeah, experiment to see what happens, if the phone becomes un-responsive, reboot it, it’ll go back to the built in freqs. If it works good, make a script to set them on boot.
Also, I’m testing a HAVS version that DOES work with sqn’s vdd sysfs interface. Depending on how it goes, I may release one here in a day or two.
Monday, January 17th 2011 at 14:58 |
really liking the new bfs kernel for the incredible. Very smooth and I scored 1631 on quad on 384/1152 smart ass profile on miui 1.14… Very snappy and better life seems great so far… And I have 5 point multi touch. Not sure what multi touch is good for but I have it, lol.
Z, how come your kernels are just 2mb while other aosp kernels are 8mb +? Curious…
Monday, January 17th 2011 at 15:08 |
I’ve turned all debugging and tracing off, and the kernel is LZMA compressed.
Wednesday, January 19th 2011 at 14:36 |
Is there a way for you to over-volt the 1.22 ghz or 1.19 ghz to allow for greater stability. I would only use this when charging, so battery life wouldn’t matter.
Thanks
Wednesday, January 19th 2011 at 14:39 |
They are over-volted:
1190400, 1350
1228800, 1400
You can always take 1.19 up to 1400 if needed, but I’m not comfortable setting a max past that, actually, I’m not that comfortable setting it at 1400.
Z
Wednesday, January 19th 2011 at 15:06 |
how can i change this. But what are the draw backs
Wednesday, January 19th 2011 at 15:14 |
Refer up top, I have an example of an init script, but you only need the echo line. I have sqn’s vdd sysfs interface built in, so it allows you to change the voltage table.
It may not be an under-voltage issue, it very well could be an over-voltage issue too.
Only real draw back, you give it too little voltage, it’ll reboot, too much voltage, it’ll lag big time. Just revert your change, or reboot. As long as you don’t set them via an init script, a reboot goes back to the defaults I put in there.
Wednesday, January 19th 2011 at 17:26 |
I have EVO 004, I know BFS doesn’t play nice with 004 in the previous Beta, how about this beta, anything changed? I really want to try BFS.
Currently using CFS with mikfroyo 4.4, like someone said above, cpu doesn’t scale down much, it is between 800 and 1000 vs stock 600 to 1000. I am still testing battery, will report back.
Thank you very much for your wonderful kernel.
Wednesday, January 19th 2011 at 19:56 |
having problems with kernel makes my phone unresponsive and keeps rebooting im using evervolv 2.3 aosp rom i tried both cfs and bfs jan 15 same problem
Wednesday, January 19th 2011 at 21:18 |
Again, I’ve attempted to add AOSP support, but since I don’t run AOSP, it’s hard to test. Unfortunately, they don’t work on all, however, I’ve had good reports of them working on CM 6.1 WiMax beta’s.
Wednesday, January 19th 2011 at 20:40 |
You think its possible for someone or Mr.Ziggy to post these scripts he uses on his phone on here . 🙂
Wednesday, January 19th 2011 at 21:16 |
I did, they’re in the main post, they’re nothing more than text files, just need to make sure they have execute permissions. Also, if you plan on changing voltages, TEST THEM FIRST, I recommend at least a day, before you put them into a script.
Wednesday, January 19th 2011 at 20:50 |
Any clue on why smartass gov idles so high, above 600 at all times?
Wednesday, January 19th 2011 at 21:14 |
Look a little higher up, comment #20…..I was attempting to improve performance, and didn’t see that it was doing that. You can change it, or just wait until the next release.
Wednesday, January 19th 2011 at 20:52 |
Evo hw003
Thursday, January 20th 2011 at 00:02 |
Hi Ziggy. Great kernels. I can’t get them to work with the new CM7 GB nightlies, tho–they bootloop. I have a hw rev2 AMOLED Inc, with radio 11.19, using nightly 01/20 and your 1/15 BFS kernel. I tried wiping cache and dalvik-cache ahead of time. I get the bootloop right before loading the desktop/homescreen (when the soft key lights/battery charging led come on).
Here’s my logcat: http://www.mediafire.com/?f76rnn7nnc8n7ow
thank you!
Thursday, January 20th 2011 at 05:21 |
Yeah, I know they don’t work on CM7, I’ll add that warning to the next release. The AOSP support is barely in there, since I Sense. Gingerbread does things differently than Froyo, and I’m not sure if I can support both in one tree yet.
Could you get me the kmsg?? “adb shell cat /proc/kmsg”
Thursday, January 20th 2011 at 10:25 |
Which I/O scheduler you’re using?
Thursday, January 20th 2011 at 10:27 |
According to the list up top, BFQ IO Scheduler.
Thursday, January 20th 2011 at 11:12 |
Missed it, sorry. Anyway, you should switch to either VR or Deadline I/O scheduler, which performs better on flash memories.
Thursday, January 20th 2011 at 18:08 |
basic question. Have an evo and currently bfs kernel. Seem to be running really good for me. Smartass seems to be playing nicer w this 0004 evo better than any other I have tried. The cfs @ 128 mhz made my phone random reboot on interactive and smartass settings thru setcpu. Had to move min to 245 to be stable. Both handled 1228 though. Bfs seems to play nicer with less speed. 1152 bfs smartass is doing very wdll except video doesnt seem as stable even at default settings w out setcpu. Do you recommend any settings I should try thru setcpu to take out some of the initial choppiness. Other than that battery life seems good. Not terrible. The speed feels smooth and worth tradeoff of a little solid voltage.
Friday, January 21st 2011 at 05:00 |
I’m not sure. What I always recommend though, is a capture of /proc/kmsg, kernel log, and from that, I /may/ be able to figure out what’s happening, at least for the reboots.
Some phones have an issue with 128, I’m not sure if it’s voltage related or not. Because of that, I’ve included a very conservative voltage table in the kernel, which should and does work for the majority of the users out there. So if you’re not using anything to change that voltage table, like Calkulin’s scripts, then it should work.
Thursday, January 20th 2011 at 23:47 |
<>
Not to sound like a total noob, but in the last 3 months since I rooted my EVO, I have been unable to get the req’d Android NDK, SDK, & JDK’s installed on my laptop to enable running of ADB. For me at least, QtADB is the find of the century!!! Holy crap, that is the easiest to use, simplest to implicate, must have collection of tools for the rooted user I’ve seen since I rooted, easier than a 1 click root. Thank you Mr.Ziggy!!!
Love the kernels, BTW!!! My EVO screams on BFS w/o OCing!!! 😀 Donation coming!!!
Friday, January 21st 2011 at 05:03 |
Glad you like the kernels and QtADB. I found QtADB when looking for a replacement for Droid Explorer, a Windows app, after moving completely to Linux. Normally I just use the command line, but as Mr. X will agree, we’re lazy, so a nice program like QtADB is a must.
BTW, thanks for the donation.
Friday, January 21st 2011 at 11:11 |
Hey guys, is there a QtADB-like program from mac? I want to check it out, but only use PC at work and don’t really want to partition my mac hard drive to run Windows XP solely for one program.
Friday, January 21st 2011 at 12:03 |
Yeah, its called QtAdb….lol
They have Windows, Linux, and Mac.
http://qtadb.wordpress.com/download/
Friday, January 21st 2011 at 13:54 |
Hmm…Why was I under the impression it was PC only? Mea culpa I suppose. Let’s just forget I asked and mark this one up to a Friday brain fart.
Friday, January 21st 2011 at 13:57 |
We’re all allowed Friday Brain Farts, they happen. Some of us have them on any day ending in the letter ‘y’. lol
Z
Friday, January 21st 2011 at 16:00 |
All the ‘y’ days is all too often the case for me. Thanks, Ziggy.
Friday, January 21st 2011 at 17:12 |
Incredible, MIUI 1.1.14, the BFS kernel doesn’t work with wifi tether.
Other than that, great stuff!
Friday, January 21st 2011 at 17:57 |
Hey Ziggy i’m running an evo with myn’s newest rom on it and I am having a problem flashing your newest update. It seems to install fine but when I reboot I am stuck at the white evo screen. Any ideas? I currently have the HTC#17 kernel installed. (Maybe I am not waiting long enough at the white screen before I battery pull? Have waited about 10 minutes)
Friday, January 21st 2011 at 18:13 |
Did you check the md5sums, that’s why we post them? It could have been a bad download. It shouldn’t take about 20-30 seconds at that screen.
Is it at least to the point where you can adb shell into it?
Z
Friday, January 21st 2011 at 21:10 |
I was able to flash your newest release so it’s all good now 🙂 thank you for the quick response though