diff options
| author | Haavard Skinnemoen <hskinnemoen@atmel.com> | 2007-10-24 15:48:37 +0200 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2007-11-01 23:29:21 +0100 | 
| commit | 8b6684a698500be9c142ec2c9f46cfc348e17f0c (patch) | |
| tree | 213617d8c7e6f99b911e9302efc64aa872ae0f0a | |
| parent | e5c794e491a57d829b6d8733e2ed8368a2269abf (diff) | |
| download | olio-uboot-2014.01-8b6684a698500be9c142ec2c9f46cfc348e17f0c.tar.xz olio-uboot-2014.01-8b6684a698500be9c142ec2c9f46cfc348e17f0c.zip | |
ATSTK1002: Remove default ethernet addresses
Wolfgang is right: It's not a good idea to set up default initial
ethernet addresses for a board, even though they belong to the local
range.
This will change the failure mode from "IT manager screams at you for
using duplicate ethernet addresses" to a nice error message explaining
that the ethernet address hasn't been set properly.
Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
| -rw-r--r-- | include/configs/atstk1002.h | 11 | 
1 files changed, 3 insertions, 8 deletions
| diff --git a/include/configs/atstk1002.h b/include/configs/atstk1002.h index 1809fc5d8..b33e26fe0 100644 --- a/include/configs/atstk1002.h +++ b/include/configs/atstk1002.h @@ -114,15 +114,10 @@  #define CONFIG_AUTOBOOT_STOP_STR	" "  /* - * These are "locally administered ethernet addresses" generated by - * ./tools/gen_eth_addr - * - * After booting the board for the first time, new addresses should be - * generated and assigned to the environment variables "ethaddr" and - * "eth1addr". + * After booting the board for the first time, new ethernet addresses + * should be generated and assigned to the environment variables + * "ethaddr" and "eth1addr". This is normally done during production.   */ -#define CONFIG_ETHADDR			6a:87:71:14:cd:cb -#define CONFIG_ETH1ADDR			ca:f8:15:e6:3e:e6  #define CONFIG_OVERWRITE_ETHADDR_ONCE	1  #define CONFIG_NET_MULTI		1 |