Compilação do kernel Linux - não altere o vmlinuz

Compilação do kernel Linux - não altere o vmlinuz

Ao construir um kernel upstream, /boot/vmlinuze /boot/System.Mapsão atualizados para apontar para a imagem do kernel recém-instalada. É possível desabilitar esse comportamento, talvez alterando um parâmetro de configuração ou Makefile?

Estou construindo o kernel assim:

make oldconfig
make bzImage
make modules
make modules_install
make install

Responder1

make installchamadas /sbin/installkernelque atualizarão o vmlinuzlink simbólico. Não há opção para desativar esse comportamento. No entanto, se você copiar /sbin/installkernelpara ~/bin/installkernelvocê poderá remover o link dessa cópia e make installusar esse local de installkernelpreferência para /sbin/.

Na minha versão, installkernelesta parte da updateverfunção:

 44   # This section is for backwards compatibility only
 45   if test -f "$dir/$1" ; then
 46     # The presence of "$dir/$1" is unusual in modern intallations, and
 47     # the results are mostly unused.  So only recreate them if they
 48     # already existed.
 49     if test -L "$dir/$1" ; then
 50         # If we were using links, continue to use links, updating if
 51         # we need to.
 52         if [ "$(readlink -f ${dir}/${1})" = "${dir}/${1}-${ver}" ]; then
 53             # Yup, we need to change
 54             ln -sf "$1-$ver.old" "$dir/$1.old"
 55         else
 56             mv "$dir/$1" "$dir/$1.old"
 57         fi
 58         ln -sf "$1-$ver" "$dir/$1"
 59     else                        # No links
 60         mv "$dir/$1" "$dir/$1.old"
 61         cat "$2" > "$dir/$1"
 62     fi
 63   fi

Pessoalmente, eu não uso o vmlinuze System.Mapde forma alguma.

informação relacionada