u-boot使用NFS下载文件的时候提示Loading: *** ERROR: File lookup fail解决办法
=> nfs 80800000 192.168.5.61:/home/jr/linux/nfs/zImage
Using FEC1 device
File transfer via NFS from server 192.168.5.61; our IP address is 192.168.5.223
Filename '/home/jr/linux/nfs/zImage'.
Load address: 0x80800000
Loading: *** ERROR: File lookup fail
根据网上资料,主要原因是iNFS版本不一致造成的,修改配置文件即可解决
解决办法:
sudo gedit /etc/default/nfs-kernel-server
#RPCNFSDCOUNT=8
修改为
RPCNFSDCOUNT="-V 2 8"
sudo /etc/init.d/nfs-kernel-server restart
即可解决
=> nfs 80800000 192.168.5.61d/home/jr/linux/nfs/zImage
Using FEC1 device
File transfer via NFS from server 192.168.5.61; our IP address is 192.168.5.223
Filename '/home/jr/linux/nfs/zImage'.
Load address: 0x80800000
Loading: #################################################################
#################################################################
#################################################################
#################################################################
#################################################################
#################################################################
#################################################################
#################################################################
#################################################################
#################################################################
#################################################################
#################################################################
#################################################################
#################################################################
#################################################################
#################################################################
#################################################################
#################################################################
#################################################################
#################################################################
##########################
done
Bytes transferred = 6786272 (678ce0 hex)
版权声明:本文为qq_15269787原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。