[U-Boot-Users] [PATCH] net: Add CONFIG_NET_DO_NOT_TRY_ANOTHER option

27 Dec
2007
27 Dec
'07
4:58 p.m.
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@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
6345
Age (days ago)
6345
Last active (days ago)
0 comments
1 participants
participants (1)
-
Matthias Fuchs