提交 b63d4f34 编写于 作者: H Holger Brunck 提交者: Tom Rini

km/ivm: always set ethaddr after reading IVM

If we rebrand the IVM and ethaddr was set previously we need to change
ethaddr. Otherwise we end up with a wrong MAC adress for the ethernet
interface.

Cc: Heiko Schocher <hs@denx.de>
Signed-off-by: NHolger Brunck <holger.brunck@keymile.com>
上级 6821a745
......@@ -302,14 +302,11 @@ static int ivm_populate_env(unsigned char *buf, int len)
/* if an offset is defined, add it */
process_mac(valbuf, page2, CONFIG_PIGGY_MAC_ADRESS_OFFSET);
if (getenv("ethaddr") == NULL)
setenv((char *)"ethaddr", (char *)valbuf);
setenv((char *)"ethaddr", (char *)valbuf);
#ifdef CONFIG_KMVECT1
/* KMVECT1 has two ethernet interfaces */
if (getenv("eth1addr") == NULL) {
process_mac(valbuf, page2, 1);
setenv((char *)"eth1addr", (char *)valbuf);
}
process_mac(valbuf, page2, 1);
setenv((char *)"eth1addr", (char *)valbuf);
#endif
return 0;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册