[tcp] Enable AF_INET6 transport for tcp connections
[gpxe.git] / src / util / fixrom.pl
blobc3a31f41e37cc304f5a84548bd49c984bd399543
1 #!/usr/bin/perl -w
3 # Copyright (C) 2010 Michael Brown <mbrown@fensystems.co.uk>.
5 # This program is free software; you can redistribute it and/or
6 # modify it under the terms of the GNU General Public License as
7 # published by the Free Software Foundation; either version 2 of the
8 # License, or any later version.
10 # This program is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 # General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 use strict;
20 use warnings;
22 use FindBin;
23 use lib "$FindBin::Bin";
24 use Option::ROM qw ( :all );
26 my @romfiles = @ARGV;
28 foreach my $romfile ( @romfiles ) {
29 my $rom = new Option::ROM;
30 $rom->load ( $romfile );
31 $rom->pnp_header->fix_checksum() if $rom->pnp_header;
32 $rom->fix_checksum();
33 $rom->save ( $romfile );