diff options
author | Michael Brown <mcb30@etherboot.org> | 2008-03-06 15:37:34 +0000 |
---|---|---|
committer | Michael Brown <mcb30@etherboot.org> | 2008-03-06 15:37:34 +0000 |
commit | fad35829ebcaff28e5f815f5e3b4a98d96b4477b (patch) | |
tree | a9360d67ac1eb9de4297ac3b8de6de3ef2934298 /src/util | |
parent | 06e8a7048895087a76cfd6a0667ae2ea48043d01 (diff) | |
download | ipxe-fad35829ebcaff28e5f815f5e3b4a98d96b4477b.zip ipxe-fad35829ebcaff28e5f815f5e3b4a98d96b4477b.tar.gz ipxe-fad35829ebcaff28e5f815f5e3b4a98d96b4477b.tar.bz2 |
[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.
Diffstat (limited to 'src/util')
-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 ace8ec9..3d41b54 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 |