diff --git a/include/net.h b/include/net.h index 486e3ad..7c47b2d 100644 --- a/include/net.h +++ b/include/net.h @@ -260,7 +260,6 @@ extern char NetOurNISDomain[32]; /* Our NIS domain */ extern char NetOurHostName[32]; /* Our hostname */ extern char NetOurRootPath[64]; /* Our root path */ -extern ushort NetBootFileSize; /* Our boot file size in blocks */ /** END OF BOOTP EXTENTIONS **/ extern ulong NetBootFileXferSize; /* size of bootfile in bytes */ extern uchar NetOurEther[6]; /* Our ethernet address */ diff --git a/net/net.c b/net/net.c index db20add..214685c 100644 --- a/net/net.c +++ b/net/net.c @@ -101,7 +101,6 @@ char NetOurNISDomain[32]={0,}; /* Our NIS domain */ char NetOurHostName[32]={0,}; /* Our hostname */ char NetOurRootPath[64]={0,}; /* Our bootpath */ -ushort NetBootFileSize=0; /* Our bootfile size in blocks */ /** END OF BOOTP EXTENTIONS **/ diff --git a/net/nfs.c b/net/nfs.c index 87db551..775e5a2 100644 --- a/net/nfs.c +++ b/net/nfs.c @@ -711,11 +711,6 @@ } printf ("\nFilename '%s/%s'.", nfs_path, nfs_filename); - if (NetBootFileSize) - printf (" Size is 0x%x Bytes = %s", - NetBootFileSize<<9, - size_human_readable (NetBootFileSize<<9)); - NetSetTimeout (NFS_TIMEOUT * SECOND, NfsTimeout); NetSetHandler (NfsHandler); diff --git a/net/tftp.c b/net/tftp.c index 7a5b807..86ef0c3 100644 --- a/net/tftp.c +++ b/net/tftp.c @@ -303,11 +303,6 @@ printf ("Filename '%s'.", tftp_filename); - if (NetBootFileSize) - printf (" Size is 0x%x Bytes = %s", - NetBootFileSize<<9, - size_human_readable(NetBootFileSize<<9)); - puts ("\nLoading: *\b"); NetSetTimeout (TIMEOUT * SECOND, TftpTimeout);