最近移动硬盘的表现越来越不给力,拷部电影都要N久。
关键的是里面还有整理的资料,本着未雨绸缪的精神,今天开始写博客。
进入正题。
首先在 uboot/common/cmd_mem.c 中(本目录下别的文件也行)
文件末尾添加(这样是为了强制编译,不加条件编译什么的,费时间)
- int do_my_test (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
-
{
-
// do what you wanna do
-
printf("leon here\n");
-
return 0;
-
}
-
-
U_BOOT_CMD(
-
my_test, //命令名
-
4, //参数个数上限
-
1, //autorepeat allowed?
-
do_my_test, //执行命令函数
-
"my_test - leon test\n", //Usage
-
"no help info\n" //Help Message
-
);
完了,编译,烧u-boot.bin,敲命令 my_test 即可
阅读(1575) | 评论(0) | 转发(0) |