uboot执行make x210_sd_config做了什么

一。执行顶层目录下的mkconfig脚本:

    1.  include/asm->asm_arm

    2.  include/asm-arm/arch->s5pc11x

    3.  include/regs.h->s5pc110.h

    4.  include/asm-arm/proc->proc-armv

    5.  创建include/config.mk并且写入:

        ARCH   = arm  CPU    = s5pc11x  BOARD  = x210  VENDOR = samsung  SOC    = s5pc110

    6.  创建include/config.h写入:

        /* Automatically generated - do not edit */

        #include <configs/x210_sd.h>

二。创建board/samsung/x210/config.mk写入:

    1.  TEXT_BASE = 0xc3e00000

原文地址:https://www.cnblogs.com/genshu123/p/11121190.html