upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
685 B
30 lines
685 B
/*
|
|
* LiMon - BOOTP/TFTP.
|
|
*
|
|
* Copyright 1994, 1995, 2000 Neil Russell.
|
|
* Copyright 2011 Comelit Group SpA
|
|
* Luca Ceresoli <luca.ceresoli@comelit.it>
|
|
* (See License)
|
|
*/
|
|
|
|
#ifndef __TFTP_H__
|
|
#define __TFTP_H__
|
|
|
|
/**********************************************************************/
|
|
/*
|
|
* Global functions and variables.
|
|
*/
|
|
|
|
/* tftp.c */
|
|
void tftp_start(enum proto_t protocol); /* Begin TFTP get/put */
|
|
|
|
#ifdef CONFIG_CMD_TFTPSRV
|
|
void tftp_start_server(void); /* Wait for incoming TFTP put */
|
|
#endif
|
|
|
|
extern ulong tftp_timeout_ms;
|
|
extern int tftp_timeout_count_max;
|
|
|
|
/**********************************************************************/
|
|
|
|
#endif /* __TFTP_H__ */
|
|
|