From 8104f546296a8e1fc1dd6129041e22f508b314f9 Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Fri, 10 Oct 2014 07:30:21 -0600 Subject: net: Display the size when tftpboot finishes If we know the file size, display it after loading the file. Signed-off-by: Simon Glass --- net/tftp.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'net') 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) { -- cgit v1.2.1