在U-boot中添加命令hello
1,在u-boot/common目录下添加文件cmd_hello.c
#include
#include
int do_hello(cmd_tbl_t * cmdtp,int flag, int argc,char * argv[])
{
printf("Hello World\n");
}
U_BOOT_CMD(
hello,CONFIG_SYS_MAXARGS,1,do_hello,""hello -my hello command\n,
"hello world\n"
)
2,修改common/Makefile,添加如下内容
COBJS-y += cmd_hello.o
3,编译u-boot,生产u-boot.bin烧到开发部中,在进入u-boot模式后,可以使用添加的命令。
阅读(707) | 评论(0) | 转发(0) |