From: Simon Glass Date: Fri, 10 Oct 2014 13:30:21 +0000 (-0600) Subject: net: Display the size when tftpboot finishes X-Git-Tag: v2015.01-rc1~206^2 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=8104f546296a8e1fc1dd6129041e22f508b314f9;p=u-boot net: Display the size when tftpboot finishes If we know the file size, display it after loading the file. Signed-off-by: Simon Glass --- diff --git a/net/tftp.c b/net/tftp.c index 966d1cfba3..0a2c53302c 100644 --- a/net/tftp.c +++ b/net/tftp.c @@ -299,6 +299,8 @@ static void tftp_complete(void) putc('#'); TftpNumchars++; } + puts(" "); + print_size(TftpTsize, ""); #endif time_start = get_timer(time_start); if (time_start > 0) {