Arthur_Hoch
(usa FreeBSD)
Enviado em 20/12/2015 - 07:21h
EDIT{
É preciso atualizar para a versão atual?
Não.
}
Se for compilar o kernel esteja preparado para o pior.
Recomendação:
Compile com a opção oldconfig.
Como fazer:
BUILD directory for the kernel:
When compiling the kernel, all output files will per default be
stored together with the kernel source code.
Using the option "make O=output/dir" allow you to specify an alternate
place for the output files (including .config).
Example:
kernel source code: /usr/src/linux-4.X
build directory: /home/name/build/kernel
To configure and build the kernel, use:
cd /usr/src/linux-4.X
make O=/home/name/build/kernel menuconfig
make O=/home/name/build/kernel
sudo make O=/home/name/build/kernel modules_install install
Please note: If the 'O=output/dir' option is used, then it must be
used for all invocations of make.
Fonte:
https://github.com/torvalds/linux/blob/master/README (Linha 124 até 144)