diff options
| author | Max Krummenacher <[email protected]> | 2015-08-06 00:47:09 +0200 |
|---|---|---|
| committer | Tom Warren <[email protected]> | 2015-08-13 13:06:03 -0700 |
| commit | baa6f0f1b1fb0d6370181eefb60ad2cf06bbc361 (patch) | |
| tree | 5f528f96a7fd2cda2426cac3301b314e00ada48a | |
| parent | c60bc71dfeca7ba2a78701b25445546233ede157 (diff) | |
apalis/colibri_t20/t30: increase tftp blocksize
Enable CONFIG_IP_DEFRAG and set CONFIG_TFTP_BLOCKSIZE to 16384.
This increases the tftp download speed considerably.
While at it enable CONFIG_TFTP_TSIZE which limits the progress bar to
fifty '#' independent of the downloaded file size.
Signed-off-by: Max Krummenacher <[email protected]>
Signed-off-by: Marcel Ziswiler <[email protected]>
Reviewed-by: Simon Glass <[email protected]>
Signed-off-by: Tom Warren <[email protected]>
| -rw-r--r-- | include/configs/apalis_t30.h | 3 | ||||
| -rw-r--r-- | include/configs/colibri_t20.h | 3 | ||||
| -rw-r--r-- | include/configs/colibri_t30.h | 3 |
3 files changed, 9 insertions, 0 deletions
diff --git a/include/configs/apalis_t30.h b/include/configs/apalis_t30.h index 7e8ffaeb231..27c013baba8 100644 --- a/include/configs/apalis_t30.h +++ b/include/configs/apalis_t30.h @@ -58,6 +58,9 @@ /* General networking support */ #define CONFIG_CMD_DHCP +#define CONFIG_IP_DEFRAG +#define CONFIG_TFTP_BLOCKSIZE 16384 +#define CONFIG_TFTP_TSIZE /* Miscellaneous commands */ #define CONFIG_FAT_WRITE diff --git a/include/configs/colibri_t20.h b/include/configs/colibri_t20.h index 15bb7b272da..09a65d544d0 100644 --- a/include/configs/colibri_t20.h +++ b/include/configs/colibri_t20.h @@ -46,6 +46,9 @@ /* General networking support */ #define CONFIG_CMD_DHCP +#define CONFIG_IP_DEFRAG +#define CONFIG_TFTP_BLOCKSIZE 1536 +#define CONFIG_TFTP_TSIZE /* LCD support */ #define CONFIG_LCD diff --git a/include/configs/colibri_t30.h b/include/configs/colibri_t30.h index f10fa161a70..25885d44313 100644 --- a/include/configs/colibri_t30.h +++ b/include/configs/colibri_t30.h @@ -51,6 +51,9 @@ /* General networking support */ #define CONFIG_CMD_DHCP +#define CONFIG_IP_DEFRAG +#define CONFIG_TFTP_BLOCKSIZE 16384 +#define CONFIG_TFTP_TSIZE /* Miscellaneous commands */ #define CONFIG_FAT_WRITE |
