uboot中 make xxx_config 的作用(以make smdk2410_config为例)

Posted yooooooo

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了uboot中 make xxx_config 的作用(以make smdk2410_config为例)相关的知识,希望对你有一定的参考价值。

1、创建到目标板相关文件的链接

ln -s asm-arm asm

ln -s arch-s3c24x0 asm-arm/arch

ln -s proc-armv asm-arm/proc

 

 

2、创建include/config.mk文件,内容如下:

ARM = arm

CPU = arm920t

BOARD = smdk2410

VENDOR = samsung

SOC = s3c24x0

 

3、创建与目标板相关的头文件include/config.h

内容如下:

#include <configs/smdk2410.h>

#include <asm/config.h>

 

以上是关于uboot中 make xxx_config 的作用(以make smdk2410_config为例)的主要内容,如果未能解决你的问题,请参考以下文章

u-boot-2015.07 make xxx_config 分析

Uboot 中make menuconfig 做了什么?

uboot之make all执行过程分析

Linux下uboot学习备记

如何配置uboot

Makefile中的$(MAKE)