Procházet zdrojové kódy

[Makefile] Use bin/VVVVDDDD.rom instead of bin/pci_VVVV_DDDD.rom

The generate-by-PCI-device-ID rules (bin/pci_VVVV_DDDD.rom) are generally
used for building actual ROM images to be burned, and the burning
utilities generally run under some DOS variant.  Change the filename from
pci_VVVV_DDDD.rom to VVVVDDDD.rom so that it is compatible with the DOS
8.3-character filename limit.
tags/v0.9.4
Michael Brown před 16 roky
rodič
revize
fad35829eb
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1
    1
      src/util/parserom.pl

+ 1
- 1
src/util/parserom.pl Zobrazit soubor

@@ -49,7 +49,7 @@ while ( <DRV> ) {
49 49
        \)/x ) {
50 50
     ( my $vendor, my $device, my $image, my $desc ) = ( lc $1, lc $2, $3, $4 );
51 51
     rom ( "pci", $image, $desc, $vendor, $device );
52
-    rom ( "pci", lc "pci_${vendor}_${device}", $desc, $vendor, $device );
52
+    rom ( "pci", lc "${vendor}${device}", $desc, $vendor, $device );
53 53
   } elsif ( /^\s*ISA_ROM\s*\(
54 54
 	      \s*\"([^\"]*)\"\s*,  # Image
55 55
 	      \s*\"([^\"]*)\"\s*   # Description

Načítá se…
Zrušit
Uložit