Hello world实例 | 解析内核的Makefile、Kconfig和.config之间的关联!
扫描二维码
随时随地手机看文章
❞Linux内核源码文件繁多,搞不清Makefile、Kconfig、.config间的关系,不了解内核编译体系,编译修改内核有问题无从下手,自己写的驱动不知道怎么编进内核,不知道怎么配置内核,这些问题都和Makefile、Kconfig、.config有关,下面简单谈谈Makefile、Kconfig和.config。希望对你有启发
三者的作用:
简单来说就是去饭店点菜:Kconfig是菜单,Makefile是做法,.config就是你点的菜。
三者的语法
1、Makefile
参考:linux-3.4.2/drivers/Makefile
表示由xxx.c或xxx.s编译得到xxx.o并直接编进内核。
根据.config文件的CONFIG_XXX来决定文件是否编进内核。
表示xxx作为模块编译,即执行make modules时才会被编译。
2、Kconfig
每个config菜单项都有类型定义: bool布尔类型、 tristate三态(内建、模块、移除)、string字符串、 hex十六进制、integer整型。
tristate "LED Support for Samsung S3C24XX GPIO LEDs"
depends on LEDS_CLASS
depends on ARCH_S3C24XX
help
This option enables support for LEDs connected to GPIO lines
on Samsung S3C24XX series CPUs, such as the S3C2410 and S3C2440.
LEDS_S3C24XX:配置选项的名称,省略了前缀"CONFIG_"
Tristate:
表示该项是否编进内核、编成模块。显示为< > , 假如选择编译成内核模块,则会在.config中生成一个 CONFIG_HELLO_MODULE=m的配置,选择Y就是直接编进内核,会在.config中生成一个 CONFIG_HELLO_MODULE=y的配置项。Tristate后的字符串是make menuconfig时显示的配置项名称。
bool:
此类型只能选中或不选中,make menuconfig时显示为[ ],即无法配置成模块。
dependon:
该选项依赖于另一个选项,只有当依赖项被选中时,当前配置项的提示信息才会出现,才能设置当前配置项。
select:
反向依赖关系,该选项选中时,同时选中select后面定义的那一项。
help:
帮助信息。
3、.config
参考:linux-3.4.2/.config
#include
#include
static int first_drv_init(void)
{
printk("------------------hello world !--------------------");
return 0;
}
static void first_drv_exit(void)
{
printk("------------------exit hello world !--------------------");
}
module_init(first_drv_init);
module_exit(first_drv_exit);
MODULE_LICENSE("GPL");
Makefile:
Kconfig:
tristate "Hello World for fengyuwuzu"
help
Hello for fengyuwuzu
config HELLO决定名字:CONFIG_HELLO。
Kconfig:
(3)make menuconfig