diff options
author | Marcel Ziswiler <marcel.ziswiler@toradex.com> | 2016-09-10 04:20:48 +0200 |
---|---|---|
committer | Marek Vasut <marex@denx.de> | 2016-09-27 23:30:15 +0200 |
commit | 7f753cbea4c7cb56f278982c987570e6575d3dd7 (patch) | |
tree | fe0a71a2d43a0f584b9e718f7f6c779c3d148b8f /include/configs/colibri_t30.h | |
parent | cea6c8ce2327cfb41a13a8b8655e74dd18c2e6b7 (diff) | |
download | u-boot-7f753cbea4c7cb56f278982c987570e6575d3dd7.tar.gz u-boot-7f753cbea4c7cb56f278982c987570e6575d3dd7.tar.xz u-boot-7f753cbea4c7cb56f278982c987570e6575d3dd7.zip |
colibri_t30: fix usb ethernet functionality
Since commit aa7a648747d8c704a9a81c9e493d386930724e9d
("net: Stop including NFS overhead in defragment max") the following
has been reproducibly observed while trying to transfer data over TFTP:
Load address: 0x80408000
Loading: EHCI timed out on TD - token=0x8008d80
T EHCI timed out on TD - token=0x88008d80
Rx: failed to receive: -5
This patch fixes this by upping our maximal de-fragmentation aka IP
packet size again.
Signed-off-by: Marcel Ziswiler <marcel.ziswiler@toradex.com>
Diffstat (limited to 'include/configs/colibri_t30.h')
-rw-r--r-- | include/configs/colibri_t30.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/configs/colibri_t30.h b/include/configs/colibri_t30.h index fbb235d82c..3431cde62f 100644 --- a/include/configs/colibri_t30.h +++ b/include/configs/colibri_t30.h @@ -48,6 +48,7 @@ /* General networking support */ #define CONFIG_IP_DEFRAG +#define CONFIG_NET_MAXDEFRAG (16384 + 4096 + 24) #define CONFIG_TFTP_BLOCKSIZE 16384 #define CONFIG_TFTP_TSIZE |