[U-Boot-Users] [PATCH] net: Add CONFIG_NET_DO_NOT_TRY_ANOTHER option
Matthias Fuchs
matthias.fuchs at esd-electronics.com
Thu Dec 27 16:58:41 CET 2007
When CONFIG_NET_DO_NOT_TRY_ANOTHER is defined U-Boot's
networking stack does not automatically switch to
another interface. This patch does not touch the default
behavior.
Signed-off-by: Matthias Fuchs <matthias.fuchs at esd-electronics.com>
---
net/net.c | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/net/net.c b/net/net.c
index c719bc4..2418434 100644
--- a/net/net.c
+++ b/net/net.c
@@ -593,7 +593,9 @@ void NetStartAgain (void)
NetSetHandler (startAgainHandler);
#else /* !CONFIG_NET_MULTI*/
eth_halt ();
+#if !defined(CONFIG_NET_DO_NOT_TRY_ANOTHER)
eth_try_another (!NetRestarted);
+#endif
eth_init (gd->bd);
if (NetRestartWrap) {
NetRestartWrap = 0;
--
1.5.3
More information about the U-Boot
mailing list