Como alterar a versão do kernel do Linux

0

Eu fiz o download e descompactei o Kernel do Linux. Que arquivo (s) no (s) arquivo (s) de origem do kernel são responsáveis pela exibição da string de versão no uname? Eu quero definir a versão para 10, sem pontos 10.0.5

# uname -r
Linux 10
    
por Oleg Repetko 02.03.2016 / 19:38

1 resposta

2

Está descrito no nível superior Makefile .

Por exemplo, daqui ,

VERSION = 4
PATCHLEVEL = 5
SUBLEVEL = 0
EXTRAVERSION = -rc6
NAME = Blurry Fish Butt

# *DOCUMENTATION*
# To see a list of typical targets execute "make help"
# More info can be located in ./README
# Comments in this file are targeted only to the developer, do not
# expect to learn how to build the kernel reading this file.
    
por 02.03.2016 / 19:43