MCProxy

Changes between Version 2 and Version 3 of walkthrough


Ignore:
Timestamp:
01/30/12 15:33:35 (12 years ago)
Author:
woelke
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • walkthrough

    v2 v3  
    22
    33This script is an example how to kompile the Linux kernel 3.0.0-13.
    4 
     4 0. You need the following  tools
     5{{{
     6 ???
     7}}}
    58 1. Add first we have to download a linux-image
    69{{{
    7 versn="3.0.0"
    8 vers="13"
    9 ktype="variante"
    10 apt-get source linux-image-$versn-$vers-$ktype
     10  versn="3.0.0"
     11  vers="13"
     12  ktype="variante"
     13  apt-get source linux-image-$versn-$vers-$ktype
    1114}}}
     15
     16 2. Go into the new Directory and copy your current kernel config file and configurate it.
     17{{{
     18  cd "linux-$versn"
     19  cp /boot/config-$(uname -r)  .config
     20  make menuconfig
     21}}}
     22
     23 3. Generate your own kernel variante and edit some files
     24{{{
     25  cp debian.master/abi/$versn-$vers/amd64/generic debian.master/abi/$versn-$vers/amd64/variante
     26  cp debian.master/abi/$versn-$vers/amd64/generic.modules debian.master/abi/$versn-$vers/amd64/variante.modules
     27  cp debian.master/control.d/vars.generic debian.master/control.d/vars.variante
     28  gedit debian.master/etc/getabis
     29  gedit debian.master/rules.d/amd64.mk
     30
     31}}