diff options
author | Igor Opaniuk <igor.opaniuk@foundries.io> | 2023-11-09 23:34:34 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-11-16 18:59:58 -0500 |
commit | 01201dbd3babf93ea9a99bb329107208da66683b (patch) | |
tree | 499ec3fbb02d07481375727e79f4944326632e9e | |
parent | 13248d66aeea02afc120ba83075e1af32cefd592 (diff) |
poplar: use random mac address
Set CONFIG_NET_RANDOM_ETHADDR=y, which sets random eth address in
case there is no configuration provided neither in CONFIG_ETHADDR
nor in "ethaddr" env variable.
This fixes the problem:
poplar# dhcp
Error: ethernet@9841000 address not set.
Signed-off-by: Igor Opaniuk <igor.opaniuk@foundries.io>
Reviewed-by: Sam Protsenko <semen.protsenko@linaro.org>
-rw-r--r-- | configs/poplar_defconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configs/poplar_defconfig b/configs/poplar_defconfig index f0ab2319a47..b6e0c3166c1 100644 --- a/configs/poplar_defconfig +++ b/configs/poplar_defconfig @@ -22,6 +22,7 @@ CONFIG_CMD_USB=y # CONFIG_ISO_PARTITION is not set CONFIG_ENV_IS_IN_MMC=y CONFIG_SYS_RELOC_GD_ENV_ADDR=y +CONFIG_NET_RANDOM_ETHADDR=y CONFIG_USB_FUNCTION_FASTBOOT=y CONFIG_FASTBOOT_BUF_ADDR=0x20000000 CONFIG_FASTBOOT_BUF_SIZE=0x10000000 |