码迷,mamicode.com
首页 > 其他好文 > 详细

内核配置编译

时间:2016-04-23 22:58:33      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:

内核配置

通过在 make menuconfig 生成的菜单上做完选择,生成 .config 文件

在编译时先通过 .config 文件生成 include/config/auto.conf 和 include/linux/autoconf.h 再编译

include/config/auto.conf 在顶层 Makefile 中使用

include/linux/autoconf.h 在内核源码中使用

*******注意:

在 .config 文件生成相应文件的过程中需要内核中的 Kconfig 配置系统的参与,只有在 Kconfig 中出现的配置选择变量才能被转换成生成文件 include/config/auto.conf 中的相应的变量定义与 include/linux/autoconf.h 中的常量定义。

 

内核移植时,需要注意修改的文件及变量

顶层 Makefile 

ARCH

CORSS_COMPILE

 

 

/arch/arm/Makefile

增加板文件夹

增加平台文件夹

配置文件 Kconfig 中的 ARCH_SMDK64XX

 

 

/arch/arm/mach-xxxx/mach-xxxx.c

修改或新增板文件 

配置文件 Kconfig 中的 MACH_SMDK6410

在板文件中有 MACHINE_START  说明,注意与 /arch/arm/tools/mach-types 对应,以及与 Kconfig 中的 MACH_SMDK6410 对应。uboot 中的 /include/asm-arm/mach-types.h

 

内核配置编译

标签:

原文地址:http://www.cnblogs.com/youngvoice/p/5425875.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!