邮箱:zhuimengcanyang@163.com 痴爱嵌入式技术的蜗牛
分类: 嵌入式
2016-12-20 21:03:45
利用uboot的NFS功能烧写内核镜像文件到内存,发现问题:
nfs 20000 192.168.0.75:/work/nfs_root/uImage
Waiting for PHY auto negotiation to complete. done
ENET Speed is 100 Mbps - FULL duplex connection
Using mii0 device
File transfer via NFS from server 192.168.0.75; our IP address is 192.168.0.17
Filename '/work/nfs_root/uImage'.
Load address: 0x20000
Loading: #################################################################
#################################################################
#################################################################
#################################################################
#################################################################
#################################################################
#################################################################
#################################################################
#################################################################
#########################################T T *** ERROR: Cannot umount
SOCFPGA_CYCLONE5 #
解决办法:
在用UBOOT的NFS命令下载文件的时候出现
** ERROR: Cannot umount ”
则要在主机的/etc/hosts文件中加入
你的开发板ip nfs目录(我的nfs目录是/work/nfs_root)。
比如:
192.168.0.17 /work/nfs_root/
添加后如下:
127.0.0.1 localhost
192.168.0.17 /work/nfs_root/ ##### 添加这行语句 |