/**

******************************************************************************
* @author    Maoxiao Hu
* @version   V1.0.0
* @date       Dec-2014
******************************************************************************
* < COPYRIGHT 2014 ISE of SHANDONG UNIVERSITY >
*******************************************************************************
**/
 
Based on u-boot-2014-10.
 
当我们执行make xxx_defconfig时,顶层Makefile中唯一的匹配目标是:
 

%config: scripts_basic outputmakefile FORCE

    +$(Q)$(CONFIG_SHELL) $(srctree)/scripts/multiconfig.sh $@

 
依赖条件1:scripts_basic

scripts_basic:

    $(Q)$(MAKE) $(build)=scripts/basic

 

    $(Q)rm -f .tmp_quiet_recordmcount

 
依赖条件2:outputmakefile

outputmakefile:

ifneq ($(KBUILD_SRC),)

    $(Q)ln -fsn $(srctree) source

    $(Q)$(CONFIG_SHELL) $(srctree)/scripts/mkmakefile  

    $(srctree) $(objtree) $(VERSION) $(PATCHLEVEL)

endif

 

此时由于KBUILD_SRC为空,所以此条依赖条件并不执行。

依赖条件3:FORCE

FORCE:

执行命令:

+$(Q)$(CONFIG_SHELL) $(srctree)/scripts/multiconfig.sh $@

几个变量:

$(Q) = @  

$(CONFIG_SHELL) = /bin/sh

$(MAKE) = make

$@ = %config

$(srctree) = .

所以依赖条件1变成:

scripts_basic:

    @make $(build)=scripts/basic

    @rm -f .tmp_quiet_recordmcount

$(build)的定义在:scripts/Kbuild.include

build := -f $(if $(KBUILD_SRC),$(srctree)/)scripts/Makefile.build obj

KBUILD_SRC为空,所以$(if $(KBUILD_SRC),$(srctree)/)也为空。

所以变为:build := -f scripts/Makefile.build obj

所以依赖条件1变为:

scripts_basic:

    @make -f scripts/Makefile.build obj=scripts/basic

    @rm -f .tmp_quiet_recordmcount

此时主目标变成:

%config: scripts_basic

    +@/bin/sh ./scripts/multiconfig.sh %config

 

一、script_basic分析

scripts_basic:

    @make -f scripts/Makefile.build obj=scripts/basic

    @rm -f .tmp_quiet_recordmcount

在这里主要还是对@make -f scripts/Makefile.build obj=scripts/basic

这句命令的分析。

将obj = scripts/basic 这个变量名传入Makefile.build。

二、主目标分析

%config: scripts_basic

    +@/bin/sh ./scripts/multiconfig.sh %config

加入我们输入的命令是:make trats_defconfig

那么得到:

trats_defconfig: scripts_basic

    +@/bin/sh ./scripts/multiconfig.sh trats_defconfig

也就是将trats_defconfig这个文件传入multiconfig.sh脚本中,然后执行。

三、调用 multiconfig.sh 脚本过程分析

下面再来解析multiconfig.sh:

target=$1

 

case $target in

 

*_defconfig)

 

    do_board_defconfig $target;;

esac

 

此时target = trats_defconfig 符合*_defconfig,执行:

do_board_defconfig trats_defconfig;

do_board_defconfig是一个内部函数,另外经过替换一些已知变量后得到:

 do_board_defconfig () {
     defconfig_path=$srctree/configs/trats_defconfig
     tmp_defconfig_path=configs/.tmp_defconfig
 
     sed -n -e '/^[+A-Z]*:/!p' -e 's/^+[A-Z]*://p'$srctree/configs/trats_defconfig > configs/.tmp_defconfig
 
     run_make_config .tmp_defconfig || {
         cleanup_after_defconfig
         exit 1
     }
 
     for img in $(get_enabled_subimages)
     do
         symbol=$(echo$img| cut -c 1 | tr '[a-z]' '[A-Z]')
 
         # defconfig for SPL, TPL:
         #   pick lines with 'S', 'T' prefix and rip the prefixes off
         sed -n -e 's/^[+A-Z]*'$symbol'[A-Z]*://p'$defconfig_path > configs/.tmp_defconfig
        run_make_config .tmp_defconfig $img || {
            cleanup_after_defconfig
            exit 1
        }
    done
    cleanup_after_defconfig
}

大概意思是先把trats_defconfig复制一份到configs/.tmp_defconfig然后,

基本可以分为红色和粉红色两部分:

红色部分:

run_make_config .tmp_defconfig || {
         cleanup_after_defconfig
         exit 1
}

再次把.tmp_defconfig当作参数给run_make_config函数,run_make_config经过已知变量代换后变成:

run_make_config () {
      target=.tmp_defconfig
      objdir=
 
      options="SRCARCH=.. KCONFIG_OBJDIR="
      build scripts/kconfig SRCARCH=.. KCONFIG_OBJDIR= .tmp_defconfig
}

最后一句再次调用build函数:

 build () {
     make -f $srctree/scripts/Makefile.build obj=“$@"
}
变量代换后变成:
make -f $srctree/scripts/Makefile.build obj=scripts/kconfig SRCARCH=.. KCONFIG_OBJDIR= .tmp_defconfig
 
粉红色部分:
     for img in $(get_enabled_subimages)
     do
         symbol=$(echo$img| cut -c 1 | tr '[a-z]' '[A-Z]')
 
         # defconfig for SPL, TPL:
         #   pick lines with 'S', 'T' prefix and rip the prefixes off
         sed -n -e 's/^[+A-Z]*'$symbol'[A-Z]*://p'$defconfig_path > configs/.tmp_defconfig
        run_make_config .tmp_defconfig $img || {
            cleanup_after_defconfig
            exit 1
        }

在这我们没有定义过SPL和TPL,所以跳过这一步。

最后,其实只有一句话:

make -f $srctree/scripts/Makefile.build obj=scripts/kconfig SRCARCH=.. KCONFIG_OBJDIR= .tmp_defconfig

四、Makefile.build分析

从二三节得到了两条待执行的指令:

make -f scripts/Makefile.build obj=scripts/basic

make -f scripts/Makefile.build obj=scripts/kconfig SRCARCH=.. KCONFIG_OBJDIR= .tmp_defconfig

先分析第1条:

make -f scripts/Makefile.build obj=scripts/basic

编译scripts/basic.c文件

再分析第2条:

把scripts/kconfig 先传入Makefile.build中,然后再将根据其初始化的值暴露到顶层Makefile中。

匹配kconfig/Makefile里的:

%_defconfig:$(obj)/conf

    $(Q)$< --defconfig=arch/$(SRCARCH)/configs/$@ $(Kconfig)

展开后:

.tmp_defconfig:scripts/kconfig/conf

    @scripts/kconfig/conf —defconfig=arch/../configs/.tmp_defconfig Kconfig

这句话的意图很明显,先编译scripts/kconfig/conf.c生成scripts/kconfig/conf,然后输入两个参数:

—defconfig=arch/../configs/.tmp_defconfig

Kconfig

五、scripts/kconfig/conf.c 解析

详见以后博客。

2014-10 u-boot make xxx_defconfig 过程分析的更多相关文章

  1. Contest - 2014 SWJTU ACM 手速测试赛(2014.10.31)

    题目列表: 2146 Problem A [手速]阔绰的Dim 2147 Problem B [手速]颓废的Dim 2148 Problem C [手速]我的滑板鞋 2149 Problem D [手 ...

  2. Linux - Eclipse CDT + GCC 安装(2014.10.2)

    Eclipse CDT + GCC 安装 (2014.10.2) 本文地址:http://blog.csdn.net/caroline_wendy 1. 安装Eclipse,在官方站点下载Eclips ...

  3. App Store审核指南中文版(2014.10.11更新)

    App Store审核指南中文版(2014.10.11更新) 2014-10-11 16:36 编辑: suiling 分类:AppStore研究 来源:CocoaChina  2 8657 App ...

  4. phpStudy + JspStudy 2014.10.02 下载

    phpStudy + JspStudy 2014.10.02 下载 目标:让天下没有难配的php环境. phpStudy Linux版&Win版同步上线 支持Apache/Nginx/Teng ...

  5. 2014.10.5 再次学习LINUX

    mesg 发送信息给root y n write/talk 写消息给 wall 给所有用户发送消息 ps -aux ps -elF pstree 命令行跳转:CTRL+a行首 CTRL+e行尾 CTR ...

  6. 【spring boot】10.spring boot下的单元测试

    spring boot下的单元测试,思前想后还是需要单独用一章篇幅来看看. 然后在看了介绍和使用时候,我感觉并不想多去看了. 但是还是给后来人留下参考的路径: 官网说明:https://spring. ...

  7. iPhone屏幕适配,历史及现状(http://hjcapple.github.io/2014/10/10/iphone-screen.html)

    iPhone屏幕适配,历史及现状 初代iPhone 2007年,初代iPhone发布,屏幕的宽高是320×480像素.下文也是按照宽度,高度的顺序排列.这个分辨率一直到iPhone 3GS的也保持不变 ...

  8. Cheatsheet: 2014 10.01 ~ 10.30

    .NET ASP.NET Web Api: Unwrapping HTTP Error Results and Model State Dictionaries Client-Side HTTP 20 ...

  9. 2014.10.09 Andrew 学习 WPF(刘铁锰) 笔记分享

    引言 主要是讲了关于WPF只是表现层的工具. 第一章: XAML : 可扩张应用程序标记语言    Extensible Application Markup Language 什么是XAML?  X ...

随机推荐

  1. 框架使用的技术主要是SpringMVC 在此基础上进行扩展

    框架使用的技术主要是SpringMVC 在此基础上进行扩展 1 Web前端使用 2 前段控制器采用SpringMVC零配置 3 IOC容器Spring 4 ORM使用 Mybites或者hiberna ...

  2. ADO.NET中使用事务进行数据库读写的办法

    使用事务一般是进行数据写入,数据读取一般是不需要这货的 第一种办法: 使用存储过程: 顾名思义,在存储过程中定义好变量,定义好事务开始,结束,错误回滚然后在ADO.NET中正常调用存储过程的方法就行 ...

  3. XtraBackup原理5

    http://www.cnblogs.com/gomysql/p/3650645.html xtrabackup是Percona公司CTO Vadim参与开发的一款基于InnoDB的在线热备工具,具有 ...

  4. maven插件开发(二)

    因为很多jar都是在开发环境中,没有到仓库中,因此偷个懒,用命令直接自动安装到仓库去.在开发的过程中遇到一个比较诡异的问题,插件用命令调mvn 安装jar到仓库总是抛如下异常: maven Canno ...

  5. 【ZZ】MySql语句大全:创建、授权、查询、修改等

    http://blog.csdn.net/evankaka/article/details/45580845

  6. debian清除无用的库文件(清理系统,洁癖专用)

    deborphan 可以用来找出在系统中已经没有被依赖的套件.一般的情况是 library 会在其他套件需要的时候被牵引进来,但是当这些套件升级或删除后,被牵引进来的 library package  ...

  7. 关于try...catch...finally中return的疑惑

    原文:http://www.cnblogs.com/and_he/archive/2012/04/17/2453703.html 关于try...catch...finally里面的return一直是 ...

  8. 实例源码--Android小工具源码

      下载源码   技术要点: 1. Android控件布局的使用 2. Http通信 3. XML数据解析 4. 网络状态的监听 5. 源码带有非常详细的中文注释 ...... 详细介绍: 1. An ...

  9. C++_归并排序(纯C版)

    #include <iostream> #include <stdlib.h> using namespace std; int compared(const void *ke ...

  10. 小白日记34:kali渗透测试之Web渗透-扫描工具-Burpsuite(二)

    扫描工具-Burpsuite 公共模块 0.Spider 爬网 手动爬网 先禁用截断功能 手动将页面中点击所有连接,对提交数据的地方,都进行提交[无论内容] 自动爬网[参数设置] 指定爬网路径,否则其 ...