diff options
author | Masahiro Yamada <yamada.m@jp.panasonic.com> | 2014-04-18 19:09:49 +0900 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-05-12 15:19:46 -0400 |
commit | c42f56d96d1ec642496ee0fdf741dc13fbbec2e2 (patch) | |
tree | b1aaa48fc2356b36d981d2732b0b25400a5a30e9 /include/configs/bf526-ezbrd.h | |
parent | da384a9d7628c77140023e7c095f79ecfe5a4e2d (diff) | |
download | u-boot-imx-c42f56d96d1ec642496ee0fdf741dc13fbbec2e2.zip u-boot-imx-c42f56d96d1ec642496ee0fdf741dc13fbbec2e2.tar.gz u-boot-imx-c42f56d96d1ec642496ee0fdf741dc13fbbec2e2.tar.bz2 |
blackfin: replace bfin_gen_rand_mac() with eth_random_addr()
bfin_gen_rand_mac() uses __DATE__ as the seed for random ethernet
address. This makes the build non-deterministic.
In the first place, it should not be implemented as a Bfin-specific
function. Use eth_random_addr() instead.
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Cc: Sonic Zhang <sonic.zhang@analog.com>
Diffstat (limited to 'include/configs/bf526-ezbrd.h')
-rw-r--r-- | include/configs/bf526-ezbrd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/bf526-ezbrd.h b/include/configs/bf526-ezbrd.h index 3065d22..972eca9 100644 --- a/include/configs/bf526-ezbrd.h +++ b/include/configs/bf526-ezbrd.h @@ -87,7 +87,7 @@ #define CONFIG_HOSTNAME bf526-ezbrd /* Uncomment next line to use fixed MAC address */ /* #define CONFIG_ETHADDR 02:80:ad:20:31:e8 */ - +#define CONFIG_LIB_RAND /* * Flash Settings |