summaryrefslogtreecommitdiffstats
path: root/board/keymile
diff options
context:
space:
mode:
authorHolger Brunck <holger.brunck@keymile.com>2011-06-05 22:22:16 +0000
committerWolfgang Denk <wd@denx.de>2011-07-27 23:44:11 +0200
commite8195825716c0ef8cfaea513c8a3d9d3becf7e00 (patch)
tree7077abd2b2e160eae21fec5d41614cfc5ff24c3e /board/keymile
parentc98d3b4f48adff08d4abfa45fe3e843e35c6e892 (diff)
downloadblackbird-obmc-uboot-e8195825716c0ef8cfaea513c8a3d9d3becf7e00.tar.gz
blackbird-obmc-uboot-e8195825716c0ef8cfaea513c8a3d9d3becf7e00.zip
km/common: force set ethaddr after reading IVM
The ethaddr is stored inside the inventory eeprom. During boottime this value was read out and the ethaddr variable was set. Previously this was only done if it ethaddr == NULL but this is wrong for our ARM boards. Because ethaddr is at this stage never NULL for ARM due to the random calculation of a MAC address in mvgbe.c. Signed-off-by: Holger Brunck <holger.brunck@keymile.com> Signed-off-by: Valentin Longchamp <valentin.longchamp@keymile.com> cc: Heiko Schocher <hs@denx.de> cc: Wolfgang Denk <wd@denx.de>
Diffstat (limited to 'board/keymile')
-rw-r--r--board/keymile/common/common.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/board/keymile/common/common.c b/board/keymile/common/common.c
index 9be4c728bf..fef62534b4 100644
--- a/board/keymile/common/common.c
+++ b/board/keymile/common/common.c
@@ -278,8 +278,7 @@ static int ivm_analyze_block2(unsigned char *buf, int len)
sprintf((char *)valbuf, "%pM", buf);
}
#endif
- if (getenv("ethaddr") == NULL)
- setenv((char *)"ethaddr", (char *)valbuf);
+ setenv((char *)"ethaddr", (char *)valbuf);
/* IVM_MacCount */
count = (buf[10] << 24) +
OpenPOWER on IntegriCloud