From 7741546a406217827c3d4a8d72aaa322b2565c35 Mon Sep 17 00:00:00 2001 From: Michael Brown Date: Thu, 16 Apr 2009 03:15:08 +0100 Subject: [build] Pad .rom, .dsk, and .hd images to 512-byte boundaries QEMU will silently round down a disk or ROM image file to the nearest 512 bytes. Fix by always padding .rom, .dsk and .hd images to the nearest 512-byte boundary. Originally-fixed-by: Stefan Hajnoczi --- src/util/dskpad.pl | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100755 src/util/dskpad.pl (limited to 'src/util/dskpad.pl') diff --git a/src/util/dskpad.pl b/src/util/dskpad.pl deleted file mode 100755 index 3ae325eb4..000000000 --- a/src/util/dskpad.pl +++ /dev/null @@ -1,12 +0,0 @@ -#!/usr/bin/perl -w - -use strict; -use warnings; - -use constant FLOPPYSIZE => 1440 * 1024; - -while ( my $filename = shift ) { - die "$filename is not a file\n" unless -f $filename; - die "$filename is too large\n" unless ( -s $filename <= FLOPPYSIZE ); - truncate $filename, FLOPPYSIZE or die "Could not truncate: $!\n"; -} -- cgit v1.2.3-55-g7522