天天看点

PC连接wifi时,在uboot上使用snf和tftp

参考: https://hxydj.blog.csdn.net/article/details/115665798

1、VMware->编辑->网络虚拟编辑器->更改设置

PC连接wifi时,在uboot上使用snf和tftp

设置为有线网卡

二、ubuntu下设置IPv4

(懒得敲,直接复制粘贴)

192.168.1.66

255.255.255.0

192.168.1.1

PC连接wifi时,在uboot上使用snf和tftp

三、windows下设置IPv4属性

控制面板->网络和网络和Internet->网络和共享中心->以太网->属性->Internet协议版本4(TCP/IPv4)

(懒得敲,直接复制粘贴)

192.168.1.100

255.255.255.0

192.168.1.1

PC连接wifi时,在uboot上使用snf和tftp

四、uboot设置

setenv ipaddr 192.168.1.50

setenv ethaddr 00:04:9f:04:d2:35

setenv gatewayip 192.168.1.1

setenv netmask 255.255.255.0

setenv serverip 192.168.1.66

saveenv

PC连接wifi时,在uboot上使用snf和tftp

五、测试

ping 192.168.1.66

PC连接wifi时,在uboot上使用snf和tftp

六、设置好uboot网络地址后,ping主机时,uboot重启

https://blog.csdn.net/welbell_uplooking/article/details/115029140

七、uboot下使用nfs下载失败,一直“Loading: T T T T”

https://blog.csdn.net/baidu_39594043/article/details/128638251