u-boot 2020.04错误Net: Error: ethernet@20b4000 address not set.Error: ethernet@20b4000 address no

Net:   
Error: ethernet@20b4000 address not set.

Error: ethernet@20b4000 address not set.
No ethernet found.

这个错误是因为MAC地址未设置造成的

并且多个网卡的板子更要注意:

设置环境变量或者打开自动生成MAc地址选项

添加下面的环境变量,按情况添加

	"ethaddr=00:01:12:34:56:77\0" \
	"eth0addr=00:01:12:34:56:70\0" \
	"eth1addr=00:01:12:34:56:71\0" \
	"eth1addr=00:01:12:34:56:72\0" \

这个问题折腾了好久,因为我设置了还是不行,最后发现,如果有多块网卡,eth0使用的是ethaddr变量。第二块网卡使用的eth1addr,名字错误也不行。

最后根据打印信息查看uboot源码发现了问题,然后才修复

你可能感兴趣的:(临时问题解决,linux)