What is the kernel version of the linux kernel source code cloned from git? A memo of the procedure to check when it happens.
Check VERSION, PATCHLEVEL, SEBLEVEL at the beginning of Makefile (from the second line because there is a description of SPDX License) directly under the directory of kernel code that was git cloned.
$ cd linux
$ cat Makefile
#SPDX-License-Identifier: GPL-2.0
VERSION = 5
PATCHLEVEL = 8
SEBLEVEL = 0
EXTRAVERSION =
:
Recommended Posts