mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-08 10:39:08 +00:00
* 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!)
This commit is contained in:
parent
08eaea9c9f
commit
73a8b27c57
26 changed files with 1907 additions and 234 deletions
11
net/bootp.c
11
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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue