diff options
| author | wdenk <wdenk> | 2003-06-05 19:27:42 +0000 | 
|---|---|---|
| committer | wdenk <wdenk> | 2003-06-05 19:27:42 +0000 | 
| commit | 73a8b27c574f5ec1c8fdd9d8d065bb845d8743d3 (patch) | |
| tree | f409359364776e565b9484337a0620388041b456 /net/bootp.c | |
| parent | 08eaea9c9fa4e8ea25325610c512cb90b6bea1dd (diff) | |
| download | olio-uboot-2014.01-73a8b27c574f5ec1c8fdd9d8d065bb845d8743d3.tar.xz olio-uboot-2014.01-73a8b27c574f5ec1c8fdd9d8d065bb845d8743d3.zip | |
* Add support for RMU board
* Add support for TQM862L at 100/50 MHz
* Patch by Pantelis Antoniou, 02 Jun 2003:
  major reconstruction of networking code;
  add "ping" support (outgoing only!)
Diffstat (limited to 'net/bootp.c')
| -rw-r--r-- | net/bootp.c | 11 | 
1 files changed, 2 insertions, 9 deletions
| diff --git a/net/bootp.c b/net/bootp.c index 4be0ad586..8e0f33246 100644 --- a/net/bootp.c +++ b/net/bootp.c @@ -24,7 +24,6 @@  #include <net.h>  #include "bootp.h"  #include "tftp.h" -#include "arp.h"  #ifdef CONFIG_STATUS_LED  #include <status_led.h>  #endif @@ -336,10 +335,7 @@ BootpHandler(uchar * pkt, unsigned dest, unsigned src, unsigned len)  		return;  	} -	/* Send ARP request to get TFTP server ethernet address. -	 * This automagically starts TFTP, too. -	 */ -	ArpRequest(); +	TftpStart();  }  #endif	/* !CFG_CMD_DHCP */ @@ -866,10 +862,7 @@ DhcpHandler(uchar * pkt, unsigned dest, unsigned src, unsigned len)  				NetState = NETLOOP_SUCCESS;  				return;  			} -			/* Send ARP request to get TFTP server ethernet address. -			 * This automagically starts TFTP, too. -			 */ -			ArpRequest(); +			TftpStart();  			return;  		}  		break; |