美文网首页
在uboot中添加命令

在uboot中添加命令

作者: three_eyelid | 来源:发表于2015-04-30 21:35 被阅读0次

    在u-boot中添加命令hello步骤

    1. 在common.c目录下添加文件cmd_hello.c

    #include<common.h>

    #include<command.h>

    定义“hello”命令

    在cmd_hello.c中使用如下的代码定义“hello”命令:

    U_BOOT_CMD(hello,    3,    0,    do_hello,

    "hello \n",

    " - test cmd..."

    );

    int do_hello(cmd_tbl_t *cmdtp,int flag,int argc,char *argv[])

    {

    printf("hello world \n");

    }

    2. 修改common/Makefile,添加如下内容

    COBJS-y +=cmd_hello.o

    3. 如果在函数中有条件编译,则需要定义宏定义

    在板子的配置文件(如include/config/smdk2410.h)中定义:

    #define CONFIG_BOOT_HELLO    1

    如果没有条件编译就可以不用宏定义。

    4. 最后重新编译,下载U-Boot就可以使用hello命令。

    参考文献:

    http://blog.chinaunix.net/uid-1718717-id-602683.html

    http://blog.csdn.net/sdustliyang/article/details/9329301

    相关文章

      网友评论

          本文标题:在uboot中添加命令

          本文链接:https://www.haomeiwen.com/subject/owhbfttx.html