mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
739968f2ad
We have to set a MAC address to use network.
Otherwise, the tftpboot command fails with the following message:
Gem.e000b000 Waiting for PHY auto negotiation to complete........ done
*** ERROR: `ethaddr' not set
Since commit 92ac520821
("net: Remove all references to
CONFIG_ETHADDR and friends"), we can not use CONFIG_ETHADDR.
The easiest way to set a MAC address is to enable
CONFIG_NET_RANDOM_ETHADDR.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Acked-by: Joe Hershberger <joe.hershberger@ni.com>
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
14 lines
337 B
Text
14 lines
337 B
Text
CONFIG_ARM=y
|
|
CONFIG_ARCH_ZYNQ=y
|
|
CONFIG_TARGET_ZYNQ_ZYBO=y
|
|
CONFIG_DEFAULT_DEVICE_TREE="zynq-zybo"
|
|
# CONFIG_SYS_MALLOC_F is not set
|
|
CONFIG_SPL=y
|
|
CONFIG_FIT=y
|
|
CONFIG_FIT_VERBOSE=y
|
|
CONFIG_FIT_SIGNATURE=y
|
|
# CONFIG_CMD_IMLS is not set
|
|
# CONFIG_CMD_FLASH is not set
|
|
# CONFIG_CMD_SETEXPR is not set
|
|
CONFIG_OF_EMBED=y
|
|
CONFIG_NET_RANDOM_ETHADDR=y
|