• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Root [Boost Mobile] Hroark's Warp Kernel Source

i feel so left out, of course all i did was OC really. And provide someone for you to talk too and bounce ideas off of, and pester you lol
 
congrats! excellent work i hope i can use this kernal in my ROM on its next update :)


yes anyone could use any of the stuff I put out freely


It is nice to be mentioned in the OP, if you use some of my stuff (hint, hint) ;) Shinru should be mentioned too


but you do not have to

I think what will happen from this point on, is Shinru will probably make some OCed kernels, that have other tweaks and such in them

he will probably make his own thread for them or add them to his ROM thread



the only other changes I want to make to this source code will be for getting CM9 to work, and I am not quite too sure what i need to do for that yet
 
i feel so left out, of course all i did was OC really. And provide someone for you to talk too and bounce ideas off of, and pester you lol

I am the Fonze on this project





FONZI.jpg






You are Chachi





baioaschachi2.jpg







You should be mentioned, and I have done so myself









.,
 
I am the Fonze on this project





FONZI.jpg






You are Chachi





baioaschachi2.jpg







You should be mentioned, and I have done so myself









.,

Lmao, that's classic, i haven't seen something that funny since he had that show on VH1

Scott Baio is looking for love in all the wrong places...... lol

Im experiencing issues using wifi with the prebuilt modules. Anyone else having this issue?
 
Sorry for the noob question, but does Hroark's kernal work with Shin's overclock?

No, i havent finished everything i wanted to do with the overclock yet, i have a build of the overclock kernel made using Hroarks source for my rom which will be included in the 1.5.1c OC build
 
Ill check that now
Yeah says error :/ doesnt really matter much to me though never really use it but besides the wifi everything works
 
Can you give me elementary steps as to how I can install this kernel? Will it reset all my settings also? What is the advantage to this kernel aside from OC.
 
Seems the 2.6.35.11 wifi is the one not working, atleast not for a few. I rebuilt a version for my phone and included the wifi drivers with the kernel. no wifi module for me :D
 
the only reason the wifi modules will not work is if the version magic does not match

we have two versions of the wifi modules

the version that are in the stock ROM, and the version magic is

Code:
2.6.35.7-perf+

and then you have the version that I modified with a hex editor, and I put them on github, and included them in the .11 kernels

the version magic on those are

Code:
2.6.35.11-perf
you can change the version magic on the wifi modules with a hex editor, but it has to stay 14 characters long


the kernel zImage that you produce must have a matching version magic

it takes the first part from the top of the Makefile

Code:
VERSION = 2
PATCHLEVEL = 6
SUBLEVEL = 35
EXTRAVERSION = .7
it takes the second part from the config file you are using


Code:
CONFIG_LOCALVERSION="-perf+"
and that would make the kernel version magic

Code:
2.6.35.7-perf+
which you can use the stock wifi modules


if your make files says

Code:
VERSION = 2
PATCHLEVEL = 6
SUBLEVEL = 35
EXTRAVERSION = .11
and you try to use this


Code:
CONFIG_LOCALVERSION="-perf+"
than your string will be too long and you will not be able to find a wifi module that you can hex edit and it will not work


so you have to use



Code:
VERSION = 2
PATCHLEVEL = 6
SUBLEVEL = 35
EXTRAVERSION = .11
and in your config


Code:
CONFIG_LOCALVERSION="-perf"
and then you can use the the modules I modified


if you wanted your own string you can modify the version magic in the 3 modules to say


Code:
2.6.35.7hroark
and then you would modify your config file to say

Code:
CONFIG_LOCALVERSION="hroark"
got it











,
 
Back
Top Bottom