From 6ae76c3541b1bc1d0f26b529f18293fc5e3743b0 Mon Sep 17 00:00:00 2001 From: Alexander Couzens Date: Tue, 19 May 2015 16:18:44 +0200 Subject: [PATCH] dhcp: increase timeout counts to wait long enoguh for STP forward --- u-boot/net/bootp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/u-boot/net/bootp.c b/u-boot/net/bootp.c index eef6d1fe63..e2040ef00a 100644 --- a/u-boot/net/bootp.c +++ b/u-boot/net/bootp.c @@ -35,7 +35,7 @@ #define TIMEOUT 5 /* Seconds before trying BOOTP again */ #ifndef CONFIG_NET_RETRY_COUNT -# define TIMEOUT_COUNT 5 /* # of timeouts before giving up */ +# define TIMEOUT_COUNT 31 /* # of timeouts before giving up */ #else # define TIMEOUT_COUNT (CONFIG_NET_RETRY_COUNT) #endif