Adding debian version 3.70~pre8+dfsg-1.
[syslinux-debian/hramrach.git] / gpxe / src / util / dskpad.pl
blob3ae325eb4658f33d12b95d259c308dc788931f3d
1 #!/usr/bin/perl -w
3 use strict;
4 use warnings;
6 use constant FLOPPYSIZE => 1440 * 1024;
8 while ( my $filename = shift ) {
9 die "$filename is not a file\n" unless -f $filename;
10 die "$filename is too large\n" unless ( -s $filename <= FLOPPYSIZE );
11 truncate $filename, FLOPPYSIZE or die "Could not truncate: $!\n";