[U-Boot] [PATCH] ppc: Don't use getenv_IPaddr() systems without network support
Stefan Roese
sr at denx.de
Tue Dec 22 13:04:30 CET 2009
This patch disables the usage of getenv_IPaddr() in lib_ppc/board.c
on systems that don't have network support enabled.
This fixes the following compilation problem:
./MAKEALL DP405
Configuring for DP405 board...
lib_ppc/libppc.a(board.o): In function `board_init_r':
/home/stefan/git/u-boot/u-boot/lib_ppc/board.c:858: undefined reference to `getenv_IPaddr'
Signed-off-by: Stefan Roese <sr at denx.de>
---
lib_ppc/board.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/lib_ppc/board.c b/lib_ppc/board.c
index dd22f99..c1fbaa5 100644
--- a/lib_ppc/board.c
+++ b/lib_ppc/board.c
@@ -852,10 +852,10 @@ 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");
+#endif /* CONFIG_CMD_NET */
WATCHDOG_RESET ();
--
1.6.6.rc4
More information about the U-Boot
mailing list