diff options
author | Marek Vasut <marek.vasut+renesas@mailbox.org> | 2024-12-18 20:41:28 +0100 |
---|---|---|
committer | Marek Vasut <marek.vasut+renesas@mailbox.org> | 2024-12-20 22:20:37 +0100 |
commit | 9899a6a7506c99c5c9e9265b8dbafb716089b6d9 (patch) | |
tree | 7b391c13e6158b30da1bfad9d71e438542dd1b0f | |
parent | 08806a6e5224e2500f54c2c29acbb6724fe7f5a9 (diff) | |
download | u-boot-9899a6a7506c99c5c9e9265b8dbafb716089b6d9.zip u-boot-9899a6a7506c99c5c9e9265b8dbafb716089b6d9.tar.gz u-boot-9899a6a7506c99c5c9e9265b8dbafb716089b6d9.tar.bz2 |
net: renesas: Enable TFTP_TSIZE on all Renesas hardware
TFTP transfer size can be used to re-size the TFTP progress bar on
single line based on the server reported file size. Enable it by
default for Renesas hardware to avoid long scrolling walls of '#'
character during long TFTP transfers.
Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
-rw-r--r-- | net/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/Kconfig b/net/Kconfig index 76ab7d9..489ac19 100644 --- a/net/Kconfig +++ b/net/Kconfig @@ -90,7 +90,7 @@ config TFTP_WINDOWSIZE config TFTP_TSIZE bool "Track TFTP transfers based on file size option" depends on CMD_TFTPBOOT - default y if (ARCH_OMAP2PLUS || ARCH_K3) + default y if (ARCH_OMAP2PLUS || ARCH_K3 || ARCH_RENESAS) help By default, TFTP progress bar is increased for each received UDP frame, which can lead into long time being spent for sending |