[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: moving to the 2.6 kernel?



Once upon a time Jules Dubois said...
> On Wed, 23 Jun 2004 15:32:47 +1000, Aaron Robertson-Hodder wrote:
> 
> > make-kpkg --revision=786:MyKernel2.4.20 kernel_image
> 
> I think that's correct.  I don't use the 'revision' switch.  Instead I've
> been modifying the top-level Makefile and setting the EXTRAVERSION
> variable.

Another way of doing that is to use the --append-to-version option to
make-kpkg.

I build my kernels with this shell function:

bk () 
{ 
    if [ $# -ne 2 ]; then
        echo "Usage: bk <tag> <revision>" 1>&2;
        return;
    fi;
    make-kpkg --rootcmd fakeroot --revision $2 --append-to-version -$1-$2 kernel_image
}



Reply to: