linux内核中的.config

经过make menuconfig 生成 .config 决定哪些驱动编译到内核,哪些驱动编译为模块

那为什么呢?举个例子分析一下


eg: 在.config 中有 CONFIG_DM9000 = y

grep "CONFIG_DM9000 " * -R

发现相关的三类:
1. c文件中
arch/arm/mach-s5pv210/mach-tq210.c:#ifdef CONFIG_DM9000  
2. defconfig文件
arch/arm/configs/tq210_defconfig:CONFIG_DM9000=y
3. 子目录中
drivers/net/Makefile:obj-$(CONFIG_DM9000) += dm9000.o //联系到obj-m,obj-y的含义
4. include文件夹
include/config/auto.conf:CONFIG_DM9000=y
include/generated/autoconf.h:#define CONFIG_DM9000 1


联系:

联系1,4 c文件使用的宏 被定义在 include下面的 autoconf.h,c文件编译时会包含此头文件,使.c中的宏有效。
联系2.3 顶层Makefile会include auto.conf 在编译子目录下的Makefile 时决定驱动该编译为ko文件还是编译进入内核。

联系4和.config 可以认为 .config生成了auto.conf与autoconf.h 这两个文件


make menuconfig 配置Kconfig之后产生.config  ,.config编译时产生 auto.conf 和autoconf.h

auto.conf 被顶层Makefile include

autoconf.h被C源代码的头文件包含

你可能感兴趣的:(linux,makefile,.config)