【转】Kconfig,Makefile 和 .config

原文网址:http://blog.csdn.net/nxh_love/article/details/11846861

最新在做Sensor驱动移植的时候,发现了Android driver 中有Kconfig,Makefile文件。在查看编译后的文件时,又发现还存在.config文件。自己对这几个文件不明白,用度娘来整理下网友对这几个文件的理解。

分布在各目录下的Kconfig构成了一个分布式的内核配置数据库,每个Kconfig分别描述了所属目录源文件相关的内核配置菜单。在内核配置make menuconfig(或xconfig等)时,从Kconfig中读出配置菜单,用户配置完后保存到.config(在顶层目录下生成)中。在内核编译时,主Makefile调用这个.config,就知道了用户对内核的配置情况。Kconfig就是对应着内核的配置菜单。假如要想添加新的驱动到内核的源码中,可以通过修改Kconfig来增加对我们驱动的配置菜单,这样就有途径选择我们的驱动,假如想使这个驱动被编译,还要修改该驱动所在目录下的Makefile。

Kconfig

先来看下一个相对完整的Kconfig文件:

[html] view plaincopy

  1. menuconfig MISC_DEVICES
  2. bool "Misc devices"
  3. ---help---
  4. Say Y here to get to see options for device drivers from various
  5. different categories. This option alone does not add any kernel code.
  6. If you say N, all options in this submenu will be skipped and disabled.
  7. if MISC_DEVICES
  8. config ST_L3GD20_GYR
  9. tristate "L3GD20_GYR gyroscope sensor support"
  10. depends on I2C=y
  11. help
  12. If you say yes here you get support for ST‘s
  13. gyroscope sensors L3GD20_GYR.
  14. choice
  15. prompt "Preemption Model"
  16. depends on SENSORS_AFA750
  17. default CALI_NONE
  18. config CALI_NONE
  19. bool "None"
  20. help
  21. Say yes here to disable calibration function for AFA750
  22. config CALI_POSITIVE
  23. bool "positive calibration"
  24. help
  25. Say yes here when the afa750 and LCD are laid towared the same direction on your board
  26. endchoice
  27. config SENSORS_LSM303D
  28. tristate "LSM303 sensor driver"
  29. depends on I2C=y
  30. help
  31. Say yes here to support the sensor
  32. endif

1.语法:
           config   symbol
                         options
           symbol是一个新的标记的菜单项,options是在这个新的菜单项下的属性和选项。

2.菜单结构:

配置文件描述了菜单选项,每行都是以一关键字开头(除了帮助信息)。下面的关键字结束一菜单选项:
         - config
        - menuconfig
        - choice/endchoice
        - comment
        - menu/endmenu
        - if/endif
        - source
2.options类型定义:
        每个config菜单项都要有类型定义:bool布尔类型、 tristate三态(内建、模块、移除)、 string字符串、 hex十六进制、 integer整型。

例如:

[html] view plaincopy

  1. config CALI_NONE
  2. bool "None"

bool类型的只能选中或不选中,tristate类型的菜单项多了编译成内核模块的选项,如果选择编译成内核模块,则会在.config中生成一个CONFIG_CALI_NONEE=m的配置,如果选择内建,就是直接编译成内核影响,就会在.config中生成一个CONFIG_CALI_NONE=y的配置.

3.依赖型定义depends on或requires
           指此菜单的出现与否依赖于另一个定义

[html] view plaincopy

  1. config SENSORS_LSM303D
  2. tristate "LSM303 sensor driver"
  3. depends on I2C=y

这个例子表明SENSORS_LSM303D这个菜单项只I2C有效。

4.select与depends on是相反的逻辑关系。
           A depends on B
           那么只有在B选中才能选A
           A select B
          那么只要选中A就会选中B
5.帮助性定义
           只是增加帮助用关键字help或者---help---,"---help---" 和 "help" 在实现的作用上没有区别,"---help---" 有助于将文件中的配置逻辑与给开发人员的提示分开。

6.prompt --输入提示

Makefile

1.顶层的Makefile文档读取 .config文档的内容,并总体上负责build内核和模块。
2.Arch Makefile则提供补充体系结构相关的信息。 
3.scripts目录下的Makefile文档包含了任何用来根据kbuild Makefile 构建内核所需的定义和规则。
            其中.config的内容是在make menuconfig的时候,通过Kconfig文档配置的结果,在/Documentation/kbuild目录下有详细的介绍有关kernel makefile的知识。

举个例子:

假设想把G-sensor LSM303D驱动code加载到工程中,配置内核时该怎么办呢?
1:将您写的lsm303d.c 文档添加到/driver/misc/ 目录下。
2:修改/driver/misc/ 目录下的kconfig文档:

[html] view plaincopy

  1. config SENSORS_LSM303D
  2. tristate "LSM303 sensor driver"
  3. depends on I2C=y
  4. help
  5. Say yes here to support the sensor

3:修改该目录下makefile文档。
添加code:

[html] view plaincopy

  1. obj-$(CONFIG_SENSORS_LSM303D)   += lsm303d.o

从上述分析知道CONFIG_SENSORS_LSM303D 是从.config 中读出的。
4.配置kernel下configs/XXXX_defconfig文件
添加code:

[html] view plaincopy

  1. CONFIG_SENSORS_LSM303D=y

当您编译内核时,将会读取.config文档,当发现CONFIG_SENSORS_LSM303D=y,系统在调用/driver/misc下的makefile 时,将会把 lsm303d.o 加入到内核中。即可达到您的目的。

主要参考文章:http://blog.sina.com.cn/s/blog_4a377e150100c896.html

时间: 2024-10-08 11:18:05

【转】Kconfig,Makefile 和 .config的相关文章

关于s5pv210的配置、编译过程中相关文件的分析(Makefile、config.mk、mkconfig)

uboot为用户提供两种编译方式,一种是在uboot当前目录下进行编译,第二种方式就是将编译生成的文件输出到指定的目录下. 1) Add O= to the make command line # 'make O=/tmp/build all' # # 2) Set environement variable BUILD_DIR to point to the desired location # 'export BUILD_DIR=/tmp/build' # 'make' # # The se

OpenWRT添加模块 Makefile和Config.in

添加模块编译 在网上找了一下,很多关于编译Openwrt系统的资料,不过这些事情芯片厂商提供的开发包都已经办得妥妥了,但是没有找到系统介绍的资料,添加一个包的介绍有不多,其中有两个很有参考价值: http://blog.csdn.net/lj627889343/article/details/7997463 http://kamikaze.openwrt.org/docs/openwrt.html#x1-460002.1.2 详细步骤如下: 在package目录下创建模块目录my_module,

【转】Android(4.2) Sensors 学习——G-sensor,Gyroscope驱动移植

原文网址:http://blog.csdn.net/nxh_love/article/details/11804841 本人对驱动可谓是一点不懂,鉴于公司目前高驱动的人手不够,所以我也只能两眼一抹黑硬上咯,最原来Android 4.1上的正常使用的驱动完整的移植到Android 4.2上.这篇文件讲记录自己一步一步移植过程,已备不时之需.在移植前,先来高明白android 支持那些Sensors,即Sensors种类和功能. Sensors 种类和功能 从Android 官方的API可以找到An

Kbuild、Kconfig、make menuconfig、.config、Makefile之间的关系

今天突发奇想,想在这里分享下比喻分析Kbuild ---->去饭店吃饭的过程. 1.Kconfig --->饭店的菜单 2.条件编译选项--->菜单中的每一盘菜,可以选择这个菜的做法 Y ---> 在饭店吃 M ---> 打包 N ---> 不点 3.make menuconfig ---> 顾客点菜的过程 4..config --->顾客下的单 5.Makefile ---> 厨师根据顾客下的单(.config)和原材料(led_drv.c)确定如何

kernel Makefile Kconfig说明

实际文档位置:Documentation/kbuild/makefiles.txt,此为翻译稿. ******************************************************************************* Linux内核的Makefile === 目录 === 1 概述=== 2 用户与作用=== 3 Kbuild文件   --- 3.1 目标定义       --- 3.2 编译进内核 - obj-y    --- 3.3 编译可装载模块 -

Linux Kernel的Makefile与Kconfig文件的语法

https://www.kernel.org/doc/Documentation/kbuild/kconfig-language.txt Introduction ------------ The configuration database is a collection of configuration options organized in a tree structure: +- Code maturity level options | +- Prompt for developme

《Linux内核Makefile分析》之 auto.conf, auto.conf.cmd, autoconf.h【转】

转自:http://blog.sina.com.cn/s/blog_87c063060101l25y.html 转载:http://blog.csdn.net/lcw_202/article/details/6661364 在编译构建性目标时(如 make vmlinux),顶层 Makefile 的 $(dot-config) 变量值为 1 . 在顶层 Makefile 的 497-504 行看到: ? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18

Linux内核Makefile文件(翻译自内核手册)

转载自:http://www.cnblogs.com/jason-lu/p/3728198.html --译自Linux3.9.5 Kernel Makefiles(内核目录documention/kbuild/makefiles.txt) kbuild(kernel build) 内核编译器 This document describes the Linux kernel Makefiles 本文当介绍了Linux内核的Makefile === Table of Contents=== 目录

Makefile:xxx:***混合的隐含和普通规则。停止

Makefile: *** 混合的隐含和普通规则. 停止. Makefile: *** mixed implicit and normal rules. Stop. 这个原因可能是Make工具对低版本内核的Makefile一些旧的规则兼容不好,我们只需要修改对应的Makefile. 如 一: 原始的:        / %/: prepare scripts FORCE                $(Q)$(MAKE) KBUILD_MODULES=$(if $(CONFIG_MODULES