目录

架构:Archittecture select (ARM architecture)--->

ARM子架构:ARM architecture --->

通用设置:General setup --->

boot 镜像:Boot images -->

开机时序:Boot timing --->

命令行接口:Command line interface --->

SPL / TPL  --->

设备树控制:Device Tree Control --->

网络支持:Networking support  --->

Device Drivers --->

文件系统:File systems --->

库:Library routines --->

单元测试:Unit tests --->


1.配置文件夹位置

configs/ **_defconfig   注意:defconfig 是必须的后缀

2.可以拷贝自己的一个配置文件,将板子自带的配置文件拷贝一份改名

3.编译步骤

有的需要指定编译器CROSS_COMPILE 和 架构 ARCH

ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf-

make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- distclean

make 配置文件 ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf-

make menuconfig ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf-

make savedefconfig 将生成的.config精简,方便拷贝替代原有的配置文件保存

make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf-

架构:Archittecture select (ARM architecture)--->

里边有各种架构,大部分嵌入式单片机都是ARM

ARM architecture

ARM子架构:ARM architecture --->

支持半主控,用于调试

support boot from semihosting

L2cache off

选择芯片型号

Target select (Freescale MX6) --->

板级配置选择

MX6 board select (Supportr mx6ull_14x14_evk) --->

资源域控制器驱动程序

i.MX Resource domain controller driver

用汇编优化执行

Use an assembly optimized implementation of memcpy    memcpy

支持启动辅助核心

Support boot auxiliary core

调试

ARM debug --->

通用设置:General setup --->

版本号

local version - append to U-Boot release

自动向版本字符串追加版本信息

Automatically append version information to the version string

选择何时的启动

Select defaults suitable for booting general purpose Linux di│

优化大小

Optimize for size

在引导之前使能negmalloc池

Enable malloc() pool before relocation

Size of malloc(0 pool before relocation

配置标准的uboot特性

Configure standard U-Boot features (expert users) -->

64位物理地址支持

64bit physical address support

boot 镜像:Boot images -->

使能安卓引导

Enable support for Android Boot Images

支持扁平设备树

Support Flattened Image Tree

支持FIT镜像校验和

Support SHA256 checksum of FIT image contents

FIT uimage签名验证

Enable signature verification of FIT uImages

打印信息当FIT镜像失败

Show verbose messages when FIT images fail

选择最好的匹配到设备树

Select the best match for the kernel device tree

开机时序:Boot timing --->

开机报告

Boot timing and reporting

引导ID给 user

Number of boot ID numbers available for user use

引导记录数

Number of boot stage records to store

开机时序记录存储地址

Address to stash boot timing information

存储区大小

Size of boot timing stash region

命令行接口:Command line interface --->

Support U-Boot commands

Autoboot options  ---> 自动引导选项

Fastboot support  ---> fastboot支持,fastboot是一种比recovery更底层的刷机模式

Info commands  --->

Boot commands  ---> 启动命令

Environment commands  --->    环境命令

Memory commands  --->    内存命令

Compression commands  ---> 压缩命令

Device access commands  ---> 设备控制命令

Shell scripting commands  ---> 脚本命令

Network commands  --->    网络命令

Misc commands  --->    函数命令

Power commands  ----    电源控制命令

Security commands  --->    安全命令

Firmware commands  ----      固件命令

Filesystem commands  --->     文件系统命令

Debug commands  --->       调试命令

Enable UBI - Unsorted block images commands    是一种用于Raw Flash的

SPL / TPL  --->

SPL是uboot第一阶段执行的代码. 主要负责搬移uboot第二阶段

的代码到内存中运行. SPL是由固化在芯片内部的ROM引导的. 我们知道很多芯片厂商固化的

ROM支持从nandflash, SDCARD等外部介质启动

设备树控制:Device Tree Control --->

通过设备树进行运行时配置

Run-time configuration via Device Tree

默认设备树控制

Default Device Tree for DT control

网络支持:Networking support  --->

如果没有设置mac,随机生成mac

Random ethaddr if unset

网络控制台

NetConsole support

通过环境控制tftp超时和计数

Control TFTP timeout and count through environment

Device Drivers --->

设备驱动:所有可配置的驱动都在里边

文件系统:File systems --->

库:Library routines --->

单元测试:Unit tests --->

uboot menuconfig详解相关推荐

  1. U-Boot 之一 零基础编译 U-Boot 过程详解 及 编译后的使用说明

      在之前的博文 Linux 之八 完整嵌入式 Linux 环境介绍及搭建过程详解 中我们说了要一步步搭建整个嵌入式 Linux 运行环境,今天就开始编译 U-Boot.我所使用的硬件平台及整个要搭建 ...

  2. U-Boot 之三 详解使用 eclipse + J-Link 进行编译及在线调试

      在上一篇博文 U-Boot 之二 移植过程详解. STM32F769I-EVAL 开发板适配 中,最后使用阶段遇到了一些错误,然后发现不能调试(靠打印信息)实在是难受,就开始摸索如何调试 U-Bo ...

  3. U-Boot 之一 零基础编译 U-Boot 过程详解、Image 镜像介绍及使用说明、DTB 文件使用说明

      最近,工作重心要从裸机开发转移到嵌入式 Linux 系统开发,在之前的博文 Linux 之八 完整嵌入式 Linux 环境.(交叉)编译工具链.CPU 体系架构.嵌入式系统构建工具 中详细介绍了嵌 ...

  4. U-Boot 之五 详解 U-Boot 及 SPL 的启动流程

      在之前的博文 Linux 之八 完整嵌入式 Linux 环境介绍及搭建过程详解 中我们说了要一步步搭建整个嵌入式 Linux 运行环境,今天继续介绍 U-Boot 相关的内容.我所使用的硬件平台及 ...

  5. 常用U-boot命令详解

    原文来自:http://www.flatws.cn/article/program/shell/2011-02-23/14038.html 常用U-boot命令详解 U-boot发展到现在,他的命令行 ...

  6. U-Boot 之五 详解 U-Boot 及 SPL 的链接脚本、启动流程

      最近,工作重心要从裸机开发转移到嵌入式 Linux 系统开发,在之前的博文 Linux 之八 完整嵌入式 Linux 环境.(交叉)编译工具链.CPU 体系架构.嵌入式系统构建工具 中详细介绍了嵌 ...

  7. Ubuntu成长历程-内核配置menuconfig详解(二)

    Ubuntu成长历程-内核配置menuconfig详解(二) Ubuntu成长历程-内核配置menuconfig详解(二) ---Device Drivers 说实话,这部分涉及的内容实在太多了,就不 ...

  8. 23.从0学ARM-网卡DM9000及uboot协议栈详解

    第二十三章 一.网卡 1. 概念 网卡是一块被设计用来允许计算机在计算机网络上进行通讯的计算机硬件.由于其拥有MAC地址,因此属于OSI模型的第2层.它使得用户可以通过电缆或无线相互连接. 每一个网卡 ...

  9. mmc命令 uboot_uboot mmc命令详解Nand flash uboot 命令详解

    uboot mmc命令详解 一:mmc的命令如下: 1:对mmc读操作 mmc read addr blk# cnt 2:对mmc写操作 mmc write addr blk# cnt 3:对mmc擦 ...

最新文章

  1. 吴恩达神经网络和深度学习——第三周笔记
  2. 内核中设置文件结束符_Linux 日志文件系统原来是这样工作的
  3. 东莞网络推广浅析如何通过简化标题来提升核心关键词排名能力呢?
  4. python教程:15种字符串操作方法
  5. 我的JMX心得 -- Server端
  6. 网络计算机无法访问 请检查,局域网电脑无法访问,请检查来宾访问帐号是否开通...
  7. Java 基础(条件结构)
  8. 2022国内低代码平台厂商排行榜—经典收藏
  9. Flutter ClipOval 圆形裁剪实现的图形图片
  10. Java集合---概述(1)
  11. hdu acm 1241
  12. win7虚拟机_VMware8虚拟机安装教程
  13. PMP资料,考过的学员整理分享
  14. Google AdSense注册流程
  15. Android 11 usb调试默认打开
  16. 2017河南工业大学玲珑杯赛后总结
  17. Android调用系统设置界面
  18. 学之思考试系统功能开发文档
  19. linux系统停留在登入界面,登入失败问题
  20. 查看、修改图片gps地理位置信息

热门文章

  1. java中的静态、动态代理模式以及Spring中的CgLib动态代理解读(面试必问)
  2. PCB——关于PCB设计倒角需要了解的一切(干货)
  3. 雨流计数与载荷寿命之间的关系
  4. JAVA 软加密之加密和校验过程图
  5. Camstar 协助工具
  6. 电脑打出,[转载]告诉你电脑上特殊符号怎么打出来?
  7. 中国风PPT不会做?三个小技巧帮你搞定!!!
  8. itoa函数,srpintf()函数 ,atoi函数
  9. 如果计算机中了木马该如何解决,电脑中了顽固木马病毒采取此方法解决
  10. Thesus!王子归来!