리눅스 커널 Makefile name="People's Front"

리눅스 커널 Makefile name="People's Front"

리눅스 커널 소스 Makefile 이름에서 "People's Front"라는 문자열의 의미를 아는 사람이 있습니까?

> uname -a

Linux debian 4.19.0-6-amd64 #1 SMP Debian 4.19.67-2+deb10u2 (2019-11-11) x86_64 GNU/Linux

데비안 공식 저장소에서 커널 소스를 설치했습니다.

 > sudo apt-get install linux-source

참조 라인:

> cat /usr/src/linux-source-4.19/Makefile | grep "NAME"
NAME = "People's Front"

답변1

NAME=1.2 이후 대부분의 Linux 커널 버전에는 Makefile에 필드가 포함되어 있습니다 .

Wikipedia에는 ​​다음과 같은 목록이 있습니다.https://en.wikipedia.org/wiki/List_of_Linux_kernel_names

문자열 "People's Front"은 큰따옴표로 묶여 있으며 시리즈의 이전 이름과 다음 이름은 Merciless Moray각각 Shy Crocodile그렇지 않습니다. 이것이 실제 커널 소스에 있는 것과 정확히 같습니다. 다음에서 직접 확인할 수 있습니다.https://git.kernel.org.

다음은 4.20-rc4 릴리스 후보에 라벨을 붙이고 동시에 다음 NAME=으로 변경한 업데이트입니다 Shy Crocodile. https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/Makefile?id=2e6e902d185027f8e3cb8b7305238f7e35d6a436

내 생각엔 리누스가 오랫동안 해오던 사적인 ​​농담이나 그런 종류의 농담에 지나지 않는 것 같아요.

관련 정보