Ao construir um kernel upstream, /boot/vmlinuz
e /boot/System.Map
sã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 install
chamadas /sbin/installkernel
que atualizarão o vmlinuz
link simbólico. Não há opção para desativar esse comportamento. No entanto, se você copiar /sbin/installkernel
para ~/bin/installkernel
você poderá remover o link dessa cópia e make install
usar esse local de installkernel
preferência para /sbin/
.
Na minha versão, installkernel
esta parte da updatever
funçã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 vmlinuz
e System.Map
de forma alguma.