使用u-boot的tftp下载功能烧写程序到Nand Flash ——韦东山嵌入式Linux学习笔记09

本文实验环境:
1. windows 7(64bit)
2. JZ2440(V2)

操作步骤:
(1)设置好开发板和PC的IP地址,使开发板可以 ping 通 PC
如果搞不定,可以参考我的博文
http://blog.csdn.net/longintchar/article/details/71250060

(2)启动软件tftpd32,选择要下载的程序所在的目录

使用u-boot的tftp下载功能烧写程序到Nand Flash ——韦东山嵌入式Linux学习笔记09_第1张图片

(3)假设下载文件leds.bin,在u-boot的命令行,输入

tftp 30000000 leds.bin

其中3000_0000(十六进制)表示内存地址

(4)擦除Nand Flash,比如

 nand erase bootloader

(5)把内存中的文件写入Nand Flash

 nand write 30000000 bootloader

说明: 命令中的bootloader是Nand Flash的某个分区名字,既表示偏移地址,也表示大小。

查看分区可以用命令mtd
我的返回结果是:

使用u-boot的tftp下载功能烧写程序到Nand Flash ——韦东山嵌入式Linux学习笔记09_第2张图片

【完】

你可能感兴趣的:(使用u-boot的tftp下载功能烧写程序到Nand Flash ——韦东山嵌入式Linux学习笔记09)