我已经下载并解压缩了Linux内核。内核源文件中的哪个文件(S)负责在uname中显示版本字符串?我想把版本设置为10,没有点10.0.5
# uname -r
Linux 10发布于 2016-03-02 18:43:52
它是在顶级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.https://unix.stackexchange.com/questions/267147
复制相似问题