linux内核中的linux_banner信息
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
[ Linux 内核版本:linux-2.6.30 ]
Linux内核启动后在start_kernel [ init/main.c ] 首先会调用printk(KERN_NOTICE "%s", linux_banner)来打印linux_banner的信息。
linux_banner中包含如下信息:
const char linux_banner[] =
"Linux version " UTS_RELEASE " (" LINUX_COMPILE_BY "@"
LINUX_COMPILE_HOST ") (" LINUX_COMPILER ") " UTS_VERSION "\n";
--> UTS_RELEASE
--> LINUX_COMPILE_BY
--> LINUX_COMPILE_HOST
--> LINUX_COMPILER
--> UTS_VERSION
上面信息,都是在编译Linux kernel的时候生成的。其文件是:include/linux/compile.h。
下面具体讲解include/linux/compile.h文件生成过程。
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献6条内容
所有评论(0)