Linux 커널 버전을 변경하는 방법

Linux 커널 버전을 변경하는 방법

Linux 커널을 다운로드하고 압축을 풀었습니다. uname에서 버전 문자열을 표시하는 역할을 하는 커널 소스 파일의 파일은 무엇입니까? 도트 10.0.5 없이 버전을 10으로 설정하고 싶습니다.

# uname -r
Linux 10

답변1

최상위 수준에 설명되어 있습니다 Makefile.

예를 들어,여기에서,

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.

관련 정보