diff options
| author | Michael Brown | 2008-03-06 16:37:34 +0100 |
|---|---|---|
| committer | Michael Brown | 2008-03-06 16:37:34 +0100 |
| commit | fad35829ebcaff28e5f815f5e3b4a98d96b4477b (patch) | |
| tree | a9360d67ac1eb9de4297ac3b8de6de3ef2934298 | |
| parent | [tg3] Added device ID for rebranded HP card. (diff) | |
| download | ipxe-fad35829ebcaff28e5f815f5e3b4a98d96b4477b.tar.gz ipxe-fad35829ebcaff28e5f815f5e3b4a98d96b4477b.tar.xz ipxe-fad35829ebcaff28e5f815f5e3b4a98d96b4477b.zip | |
[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.
| -rw-r--r-- | src/util/parserom.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/parserom.pl b/src/util/parserom.pl index ace8ec94b..3d41b5440 100644 --- a/src/util/parserom.pl +++ b/src/util/parserom.pl @@ -49,7 +49,7 @@ while ( <DRV> ) { \)/x ) { ( my $vendor, my $device, my $image, my $desc ) = ( lc $1, lc $2, $3, $4 ); rom ( "pci", $image, $desc, $vendor, $device ); - rom ( "pci", lc "pci_${vendor}_${device}", $desc, $vendor, $device ); + rom ( "pci", lc "${vendor}${device}", $desc, $vendor, $device ); } elsif ( /^\s*ISA_ROM\s*\( \s*\"([^\"]*)\"\s*, # Image \s*\"([^\"]*)\"\s* # Description |
