Uboot之命令行框架

Posted 扑克face

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Uboot之命令行框架相关的知识,希望对你有一定的参考价值。

一、参考例子:

  uboot-2010.06

二、uboot/include/configs/board_name.h

  增加#define CONFIG_CMD_USR

三、uboot/common/Makefile

  增加COBJS-$(CONFIG_CMD_USR) +=cmd_usr.o

四、uboot/common/

  增加cmd_usr.c

五、cmd_usr.c书写格式

  

技术分享
 1 #include <common.h>
 2 #include <command.h>
 3 
 4 int do_cmdusr(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
 5 {
 6       //自己实现的功能:例如tftp等下载、数据校验  
 7 }
 8 
 9 U_BOOT_CMD(
10     cmdusr,    3,    0,    do_cmdusr,
11     "cmdusr- user cmd\n",
12     " - this is cmd, Contains the following steps:\n"
13     " - 1...\n"
14     " - 2...\n"
15     " - 3...\n"
16     " - 4...\n"
17 );
View Code

 

以上是关于Uboot之命令行框架的主要内容,如果未能解决你的问题,请参考以下文章

uboot移植之uboot命令体系解析

BSP开发之ubootuboot常用命令以及代码分析

uboot移植之start_armboot()函数分析

嵌入式4412开发板学习教程Uboot教程之uboot基础概念和框架

uboot中命令行解析

uboot之添加命令