标签:os ar for 文件 on c linux 时间 ad
1, 在uboot记录命令的运行时间,可以打开CONFIG_CMD_TIME。
2, autoscr已经改变成了source命令,可以打开CONFIG_SOURCE,source可以执行内存中脚本,该脚本是由mkimage生成的。
#!/bin/sh file=$1 result=$2 if [ $# -lt 1 ] then echo "$0 file_name result_file_name" fi mkimage -A arm -O linux -T script -C none -n "uboot-nor script" -d $file $result3,mkimage在Host端的安装:
sudo apt-get install u-boot-tools
5,对uboot添加了ext4支持的话,可以由以下命令加载mkimage生成的内容到内存中去。
ext4load mmc 0:5 0x00001000 xxx.img
source 0x00001000
标签:os ar for 文件 on c linux 时间 ad
原文地址:http://blog.csdn.net/swingboard/article/details/39183743