1.在开发板上面插上U盘
2.打到 NAND flash模式启动U-boot,输入以下命令打开usb设备。
[u-boot@SMDK2440A]# usb reset //以重启的方式
或者用
[u-boot@SMDK2440A]# usb start //以直接启动的方式
3.给USB设置驱动号:
[u-boot@SMDK2440A]# usb dev 0
4.给USB设置端口号,有如下显示:
[u-boot@SMDK2440A]# usb part 0
Partition Map for USB device 0 -- Partition Type: DOS
Partition Start Sector Num Sectors Type
1 691968 15743232 c
5.查看usb文件系统相关信息(下面的0表示dev的号,1表示上面Partition底下列出的实际端口号)
[u-boot@SMDK2440A]# fatinfo usb 0:1
Interface: USB
Device 0: Vendor: Generic Rev: 8.07 Prod: Flash Disk
Type: Removable Hard Disk
Capacity: 8025.0 MB = 7.8 GB (16435200 x 512)
Partition 1: Filesystem: FAT32 "NO NAME "
6.查看U盘中的文件内容(0和1的设置意义如上)
[u-boot@SMDK2440A]# fatls usb 0:1
7.下载u-boot.bin到0x30008000
[u-boot@SMDK2440A]# fatload usb 0:1 0x30008000 u-boot.bin
8.解除被写入块的写保护
[u-boot@SMDK2440A]# protect off all
9.在0地址擦除一个0x3ffff大小的块:
[u-boot@SMDK2440A]# erase 0x0 0x3ffff
10.从0x30008000拷贝u-boot.bin到0地址:
[u-boot@SMDK2440A]# cp.b 0x30008000 0x0 0x3ffff
11.下载结束