]> git.proxmox.com Git - pve-firmware.git/commitdiff
print all found firmware files
authorThomas Lamprecht <t.lamprecht@proxmox.com>
Wed, 20 Jun 2018 09:02:15 +0000 (11:02 +0200)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Wed, 20 Jun 2018 09:02:15 +0000 (11:02 +0200)
assemble-firmware.pl

index c3a8bfe3a14fbd6de21b3e0848b95dd07eccf37b..856e7b5613f4b6f2998b8671bf27eda3a2d3b7e3 100755 (executable)
@@ -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;
     }