The DHCP handler has 1 state that is not listed in this case, causing a failure message when there is actually no failure. Signed-off-by: Remy Bohmer --- net/bootp.c | 3 +++ 1 file changed, 3 insertions(+) Index: u-boot-git-almost-1.3.4/net/bootp.c =================================================================== --- u-boot-git-almost-1.3.4.orig/net/bootp.c 2008-07-21 11:53:23.000000000 +0200 +++ u-boot-git-almost-1.3.4/net/bootp.c 2008-08-04 14:54:21.000000000 +0200 @@ -969,6 +969,9 @@ DhcpHandler(uchar * pkt, unsigned dest, return; } break; + case BOUND: + /* DHCP client bound to address */ + break; default: puts ("DHCP: INVALID STATE\n"); break; --