From mboxrd@z Thu Jan 1 00:00:00 1970 From: Matthias Fuchs Date: Thu, 27 Dec 2007 16:58:41 +0100 Subject: [U-Boot-Users] [PATCH] net: Add CONFIG_NET_DO_NOT_TRY_ANOTHER option Message-ID: <200712271658.41298.matthias.fuchs@esd-electronics.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de 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 --- 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