From 68ef254ec0d874d2284a33f990be51baddb92488 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Mon, 18 Dec 2000 13:08:29 +0000 Subject: add verif --- convert/merge2pcitable.pl | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) (limited to 'convert/merge2pcitable.pl') diff --git a/convert/merge2pcitable.pl b/convert/merge2pcitable.pl index 5aebad80..addd2993 100755 --- a/convert/merge2pcitable.pl +++ b/convert/merge2pcitable.pl @@ -1,19 +1,22 @@ #!/usr/bin/perl -$ARGV[0] eq '-f' and $force = shift; -$ARGV[0] eq '-a' and $all = shift; +if ($0 =~ /merge2pcitable/) +{ + $ARGV[0] eq '-f' and $force = shift; + $ARGV[0] eq '-a' and $all = shift; -my $formats = join '|', grep {$_} map { /^read_(.*)/ ? $1 : '' } keys %main::; + my $formats = join '|', grep {$_} map { /^read_(.*)/ ? $1 : '' } keys %main::; -@ARGV == 3 or die "usage: $0 [-f] [-a] $formats \n"; + @ARGV == 3 or die "usage: $0 [-f] [-a] $formats \n"; -($format, $in, $pcitable) = @ARGV; + ($format, $in, $pcitable) = @ARGV; -my $read = $main::{"read_$format"} or die "unknown format $format (must be one of $formats)\n"; -my $d_pci = read_pcitable($pcitable); -my $d_in = $read->($in); -merge($d_pci, $d_in); -write_pcitable($d_pci); + my $read = $main::{"read_$format"} or die "unknown format $format (must be one of $formats)\n"; + my $d_pci = read_pcitable($pcitable); + my $d_in = $read->($in); + merge($d_pci, $d_in); + write_pcitable($d_pci); +} else { 1 } sub to_string { my ($id, $driver) = @_; -- cgit v1.2.1