diff options
author | Michael Zaidman <michael.zaidman@gmail.com> | 2009-07-14 20:37:12 (GMT) |
---|---|---|
committer | Ben Warren <biggerbadderben@gmail.com> | 2009-07-23 05:53:45 (GMT) |
commit | 09133f8580f0106429ba3600f1855bd3577ae58b (patch) | |
tree | 17f78d3b86f5e90dcf88dd099bdfd5ea5d0c00e4 /net | |
parent | 443ce4ac9d1138ae5ae6863b2d40a96fd6edf523 (diff) | |
download | u-boot-09133f8580f0106429ba3600f1855bd3577ae58b.tar.xz |
DHCP regression on 2009-06
Fixed the DHCP/BOOTP/RARP regression introduced in u-boot-2009.06
by initializing our IP addr to 0 in order to accept any IP addr
assigned to us by the DHCP/BOOTP/RARP server.
Ack-by: Robin Getz <rgetz@blackfin.uclinux.org>
Signed-off-by: Michael Zaidman <michael.zaidman@gmail.com>
Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
Diffstat (limited to 'net')
-rw-r--r-- | net/net.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -394,17 +394,20 @@ restart: #if defined(CONFIG_CMD_DHCP) case DHCP: BootpTry = 0; + NetOurIP = 0; DhcpRequest(); /* Basically same as BOOTP */ break; #endif case BOOTP: BootpTry = 0; + NetOurIP = 0; BootpRequest (); break; case RARP: RarpTry = 0; + NetOurIP = 0; RarpRequest (); break; #if defined(CONFIG_CMD_PING) |