diff options
| author | Stefan Roese <sr@denx.de> | 2009-02-25 12:11:15 +0100 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2009-03-20 22:39:14 +0100 | 
| commit | 02a301cd5087eaffdf456e0a5cec1100c4d9a398 (patch) | |
| tree | a445596c36062bf063c4a4648ef462714aa9dffc | |
| parent | 5c4fa9b474af95d60f019ec6369cbe77b9dab4b5 (diff) | |
| download | olio-uboot-2014.01-02a301cd5087eaffdf456e0a5cec1100c4d9a398.tar.xz olio-uboot-2014.01-02a301cd5087eaffdf456e0a5cec1100c4d9a398.zip | |
powerpc: Only use eth_getenv_enetaddr() if networking is enabled
Signed-off-by: Stefan Roese <sr@denx.de>
| -rw-r--r-- | lib_ppc/board.c | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/lib_ppc/board.c b/lib_ppc/board.c index c925a5868..3b93e4e15 100644 --- a/lib_ppc/board.c +++ b/lib_ppc/board.c @@ -884,6 +884,7 @@ void board_init_r (gd_t *id, ulong dest_addr)  		bd->bi_ethspeed = 0xFFFF;  #endif +#ifdef CONFIG_CMD_NET  	/* kept around for legacy kernels only ... ignore the next section */  	eth_getenv_enetaddr("ethaddr", bd->bi_enetaddr);  #ifdef CONFIG_HAS_ETH1 @@ -901,6 +902,7 @@ void board_init_r (gd_t *id, ulong dest_addr)  #ifdef CONFIG_HAS_ETH5  	eth_getenv_enetaddr("eth5addr", bd->bi_enet5addr);  #endif +#endif /* CONFIG_CMD_NET */  	/* IP Address */  	bd->bi_ip_addr = getenv_IPaddr ("ipaddr"); |