]> git.proxmox.com Git - pve-firmware.git/commitdiff
asswembly: avoid plainly skipping some .inp files
authorThomas Lamprecht <t.lamprecht@proxmox.com>
Wed, 13 Jul 2022 09:21:13 +0000 (11:21 +0200)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Wed, 13 Jul 2022 09:21:16 +0000 (11:21 +0200)
only relevant for the 2nd and 3rd FW source, as the main
linux-firmware repo switched to remove-unreferenced a while ago, and
reference tracking happens earlier.

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
assemble-firmware.pl

index 828c38cd5e610364a40700edafcd08798a0da620..c2f69a7c6288b5e2c81af59f471bed85d4a5b6d7 100755 (executable)
@@ -397,7 +397,6 @@ while(defined(my $line = <$fd>)) {
     next if $fw =~ m|^BCM2033|;
 
     next if $fw =~ m|^xc3028-v27\.fw|; # found twice!
-    next if $fw =~ m|.inp|; # where are those files?
     next if $fw =~ m|^ueagle-atm/|; # where are those files?
 
     next if $fwdone->{$fw};
@@ -483,7 +482,7 @@ while(defined(my $line = <$fd>)) {
     }
 
     next if $ALLOW_MISSING->{$fw};
-    next if $fw =~ m|^dvb-|;
+    next if $fw =~ m|^dvb-| || $fw =~ m|\.inp$|;
 
     warn "ERROR: unable to find firmware ($module): $fw\n";
     $error++;