Lipetsk *nix Association Forum Lipetsk *nix Association Forum
Новости:
 
*
Добро пожаловать, Гость. Пожалуйста, войдите или зарегистрируйтесь.
Вам не пришло письмо с кодом активации?
23 Ноября 2024, 23:57:39


Войти


Страниц: [1]   Вниз
  Печать  
Автор Тема: Собираем ядро в дебиане  (Прочитано 9377 раз)
0 Пользователей и 4 Гостей смотрят эту тему.
Vermus
Никсоид
****

Карма: 5
Сообщений: 259

Debian Lenny, eee pc Edition


WWW Награды
« : 02 Декабря 2007, 20:43:58 »

Коста спрашивал по поводу сборки ядра в дебиане на сходке. мы с Нео собирали так (у меня работает отлично 2.6.23, у Нео не в курсе)

Единственное, я пользовался xconfig.

How To Compile A Kernel - Debian Etch

Version 1.0
Author: Falko Timme <ft [at] falkotimme [dot] com>
Last edited 06/01/2007

Each distribution has some specific tools to build a custom kernel from the sources. This article is about compiling a kernel on a Debian Etch system. It describes how to build a custom kernel using the latest unmodified kernel sources from www.kernel.org (vanilla kernel) so that you are independent from the kernels supplied by your distribution. It also shows how to patch the kernel sources if you need features that are not in there.

I do not issue any guarantee that this will work for you!

 
1 Preliminary Note

I will describe two ways of compiling a new kernel. Using the first method, you will end up with a kernel .deb package that can be installed on the system, and that you can share with others and install on other Debian Etch systems.

The second method is to compile a kernel the "traditional" way. This way works on any Linux distribution, but of course you don't end up with a kernel .deb package.

 
2 Building A Kernel .deb Package


This chapter shows how to build a kernel and end up with a .deb package that you can install and share with others.

 
2.1 Install Required Packages For Kernel Compilation

First we update our package database:

apt-get update

Then we install all needed packages like this:

apt-get install kernel-package libncurses5-dev fakeroot wget bzip2 build-essential

 
2.2 Download The Kernel Sources

Next we download our desired kernel to /usr/src. Go to www.kernel.org and select the kernel you want to install, e.g. linux-2.6.21.3.tar.bz2 (you can find all 2.6 kernels here: http://www.kernel.org/pub/linux/kernel/v2.6/). Then you can download it to /usr/src like this:

cd /usr/src
wget http://www.kernel.org/pub/linux/kernel/v2.6/linux-2.6.21.3.tar.bz2

Then we unpack the kernel sources and create a symlink linux to the kernel sources directory:

tar xjf linux-2.6.21.3.tar.bz2
ln -s linux-2.6.21.3 linux
cd /usr/src/linux

 
2.3 Apply Patches To The Kernel Sources (Optional)

Sometimes you need drivers for hardware that isn't supported by the new kernel by default, or you need support for virtualization techniques or some other bleeding-edge technology that hasn't made it to the kernel yet. In all these cases you have to patch the kernel sources (provided there is a patch available...).

Now let's assume you have downloaded the needed patch (I call it patch.bz2 in this example) to /usr/src. This is how you apply it to your kernel sources (you must still be in the /usr/src/linux directory):

bzip2 -dc /usr/src/patch.bz2 | patch -p1 --dry-run
bzip2 -dc /usr/src/patch.bz2 | patch -p1

The first command is just a test, it does nothing to your sources. If it doesn't show errors, you can run the second command which actually applies the patch. Don't do it if the first command shows errors!

You can also apply kernel prepatches to your kernel sources. For example, if you need a feature that is available only in kernel 2.6.22-rc3, but the full sources haven't been released yet for this kernel. Instead, a patch-2.6.22-rc3.bz2 is available. You can apply that patch to the 2.6.21 kernel sources, but not to kernel 2.6.21.1 or 2.6.21.2, etc. This is explained on http://kernel.org/patchtypes/pre.html:

Prepatches are the equivalent to alpha releases for Linux; they live in the testing directories in the archives. They should be applied using the patch(1) utility to the source code of the previous full release with a 3-part version number (for example, the 2.6.12-rc4 prepatch should be applied to the 2.6.11 kernel sources, not, for example, 2.6.11.10.)

So if you want to compile a 2.6.22-rc3 kernel, you must download the 2.6.21 kernel sources (http://www.kernel.org/pub/linux/kernel/v2.6/linux-2.6.21.tar.bz2) in step 3 instead of kernel 2.6.21.3!

This is how you apply the 2.6.22-rc3 patch to kernel 2.6.21:

cd /usr/src
wget http://www.kernel.org/pub/linux/kernel/v2.6/testing/patch-2.6.22-rc3.bz2
cd /usr/src/linux
bzip2 -dc /usr/src/patch-2.6.22-rc3.bz2 | patch -p1 --dry-run
bzip2 -dc /usr/src/patch-2.6.22-rc3.bz2 | patch -p1

 
2.4 Configure The Kernel

It's a good idea to use the configuration of your current working kernel as a basis for your new kernel. Therefore we copy the existing configuration to /usr/src/linux:

make clean && make mrproper
cp /boot/config-`uname -r` ./.config

Then we run

make menuconfig

which brings up the kernel configuration menu. Go to Load an Alternate Configuration File and choose .config (which contains the configuration of your current working kernel) as the configuration file:

Then browse through the kernel configuration menu and make your choices. When you are finished and select Exit, answer the following question (Do you wish to save your new kernel configuration?) with Yes:

2.5 Build The Kernel

To build the kernel, execute these two commands:

make-kpkg clean
fakeroot make-kpkg --initrd --append-to-version=-custom kernel_image kernel_headers

After --append-to-version= you can write any string that helps you identify the kernel, but it must begin with a minus (-) and must not contain whitespace.

Now be patient, the kernel compilation can take some hours, depending on your kernel configuration and your processor speed.

 
2.6 Install The New Kernel

After the successful kernel build, you can find two .deb packages in the /usr/src directory.

cd /usr/src
ls -l

On my test system they were called linux-image-2.6.21.3-custom_2.6.21.3-custom-10.00.Custom_i386.deb (which contains the actual kernel) and linux-headers-2.6.21.3-custom_2.6.21.3-custom-10.00.Custom_i386.deb (which contains files needed if you want to compile additional kernel modules later on). I install them like this:

dpkg -i linux-image-2.6.21.3-custom_2.6.21.3-custom-10.00.Custom_i386.deb
dpkg -i linux-headers-2.6.21.3-custom_2.6.21.3-custom-10.00.Custom_i386.deb

(You can now even transfer the two .deb files to other Debian Etch systems and install them there exactly the same way, which means you don't have to compile the kernel there again.)

That's it. The GRUB bootloader configuration file /boot/grub/menu.lst has been modified automatically, and a ramdisk for the new kernel has been create in /boot.

Now reboot the system:

shutdown -r now

At the boot prompt, select your new kernel (should be selected by default):

If everything goes well, it should come up with the new kernel. You can check if it's really using your new kernel by running

uname -r

This should display something like

2.6.21.3-custom

If the system doesn't start, restart it, and select your old kernel at the boot prompt. You can now try again to compile a working kernel. Don't forget to remove the stanza(s) of the not-working kernel from /boot/grub/menu.lst.

http://www.howtoforge.com/kernel_compilation_debian_etch

а также вторую страничку можно полистать, там описано, как 3 Building A Kernel The Traditional Way (я не понял в чем суть ибо не копался):
http://www.howtoforge.com/kernel_compilation_debian_etch_p2
Записан

NeO
Злобный админчик
Администратор
*****

Карма: 62
Сообщений: 2376

Debian Stretch


WWW Награды
« Ответ #1 : 02 Декабря 2007, 21:03:30 »

У меня 2.6.23.9.
Единственная заковыка была в том, что в дебиане, в отличие от мандривы, initrd не создается при make install. Можно создать ручками или просто забить на это неблагодарное дело и повключать все нужное для загрузке в ядро (поддержку контроллера жестких дисков, нужных файловых систем, etc ).

ЗЫ Точно такую-же статью где-то видел на русском.
Записан
RemDerBauer
Rebuild world
Глобальный модератор
*****

Карма: 14
Сообщений: 1886


Ubuntu forever


Награды
« Ответ #2 : 02 Декабря 2007, 21:18:25 »

эта статья в моем переводе лежит на FTP))) в папке /pub/Documentation/docs/administration/How-to compile a kernel - Debian Etch.pdf
Записан

Мы говорим Linux, подразумеваем Ubuntu......
RemDerBauer
Rebuild world
Глобальный модератор
*****

Карма: 14
Сообщений: 1886


Ubuntu forever


Награды
« Ответ #3 : 02 Декабря 2007, 21:25:04 »

>> там описано, как 3 Building A Kernel The Traditional Way (я не понял в чем суть ибо не копался)

суть там в традиционном пути установки ядра, т.е. без получения в итоге deb.пакета. Все там банально в общем-то и в переводе эта самая часть отсутствует за ненужностью
« Последнее редактирование: 18 Декабря 2007, 18:53:17 от RemDerBauer » Записан

Мы говорим Linux, подразумеваем Ubuntu......
k05ta
Продвинутый
***

Карма: 3
Сообщений: 221


Cranchbang, Debian, Knoppix, Mint, Ubuntu


Награды
« Ответ #4 : 18 Декабря 2007, 11:45:37 »

спасибо за статью
по железным причинам сижу на knoppix 3.7(установлен на хард, ядро 2.4)

как только проблемку исправлю буду попробовать  Улыбка
Записан

В теории нет различия между теорией и практикой. 
На практике - есть.
Страниц: [1]   Вверх
  Печать  
 
Перейти в:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.21 | SMF © 2011, Simple Machines

Valid XHTML 1.0! Valid CSS! Dilber MC Theme by HarzeM