Howto: Compile and package Linux kernel 3.4.7

来源:互联网 发布:php三级分销代码 编辑:程序博客网 时间:2024/05/21 10:40

Compiling kernel - and packaging it the Debian way -

The latest stable Linux kernel is 3.4.7

Prerequisites:

The user should belong to group src and the following packages should be installed:
wget tar bzip2 build-essential libncurses-dev kernel-package fakeroot

Compiling and packaging:
cd /usr/src/wget http://www.kernel.org/pub/linux/kernel/v3.0/linux-3.4.7.tar.bz2tar jxvf linux-3.4.7.tar.bz2cp /boot/config-$(uname -r) /usr/src/linux-3.4.7/.configcd linux-3.4.7; make menuconfigmake-kpkg cleanfakeroot make-kpkg --initrd --revision=custom.1.0 kernel_image kernel-headerssudo dpkg -i ../linux-image-3.4.7_custom.1.0_i386.deb
Tips:

To optimize your kernel further you might like to try make localmodconfig instead ofmake menuconfig, it should strip unused modules from your kernel config.
Caution: unplugged devices won't have support in kernel anymore.

If your machine has multiple cores you might also want to add the following line to/etc/kernel-pkg.conf before compiling:

CONCURRENCY_LEVEL=3   ##LEVEL can be set to number of cores x2