print all found firmware files

This commit is contained in:
Thomas Lamprecht 2018-06-20 11:02:15 +02:00
parent af0a63147b
commit 33e03db5fa

View File

@ -420,7 +420,7 @@ while(defined(my $line = <TMP>)) {
my $sr = `find '$fwsrc1' -type f -name '$name'`;
chomp $sr;
if ($sr) {
#print "found $fw in $sr\n";
print "found $fw in $sr\n";
copy_fw($sr, $fwdest);
next;
}
@ -436,7 +436,7 @@ while(defined(my $line = <TMP>)) {
$sr = `find '$fwsrc3' -type f -name '$name'`;
chomp $sr;
if ($sr) {
#print "found $fw in $sr\n";
print "found $fw in $sr\n";
copy_fw($sr, $fwdest);
next;
}