chiark / gitweb /
hwdb: change pci.ids location
authorTom Gundersen <teg@jklm.no>
Fri, 9 Nov 2012 14:35:11 +0000 (15:35 +0100)
committerTom Gundersen <teg@jklm.no>
Fri, 9 Nov 2012 14:36:25 +0000 (15:36 +0100)
According to pciutils' TODO, the sourceforge location is scheduled for
removal, use the new one instead.

Makefile.am
hwdb/20-pci-classes.hwdb
hwdb/20-pci-vendor-product.hwdb
hwdb/ids-update.pl

index 2c84fe1c7e4a1d714a77655bfa977d80c2d6e966..452de152dc42ade459126f77c5a6493b46caf28d 100644 (file)
@@ -4009,7 +4009,7 @@ endif
 hwdb-update:
        ( cd hwdb && \
        wget -N http://www.linux-usb.org/usb.ids && \
-       wget -N http://pciids.sourceforge.net/v2.2/pci.ids && \
+       wget -N http://pci-ids.ucw.cz/v2.2/pci.ids && \
        wget -N http://standards.ieee.org/develop/regauth/oui/oui.txt && \
        ./ids-update.pl )
 
index fc086a5b5c4c2bede9e004137c86c0eabfa15095..0541eb73e95f34ef6ad36b8d6a14ff7812fc640d 100644 (file)
@@ -1,6 +1,6 @@
 # This file is part of systemd.
 #
-# Data imported and updated from: http://pciids.sourceforge.net/v2.2/pci.ids
+# Data imported and updated from: http://pci-ids.ucw.cz/v2.2/pci.ids
 
 pci:v*d*sv*sd*bc00*
  ID_PCI_CLASS_FROM_DATABASE=Unclassified device
index 19c178565bccf2780081d7ff2f3b476c71a181fc..eb842b8d2c247c9391c890426222872d5c274264 100644 (file)
@@ -1,6 +1,6 @@
 # This file is part of systemd.
 #
-# Data imported and updated from: http://pciids.sourceforge.net/v2.2/pci.ids
+# Data imported and updated from: http://pci-ids.ucw.cz/v2.2/pci.ids
 
 pci:v00000010*
  ID_VENDOR_FROM_DATABASE=Allied Telesis, Inc
index c96c95fd3bb5cdace24acc0ac00104d79fddcb9c..b21a3d8f5939d47a8b5ba7cc89f80a71081afa5c 100755 (executable)
@@ -113,7 +113,7 @@ sub pci_vendor {
         open(OUT, ">", "20-pci-vendor-product.hwdb");
         print(OUT "# This file is part of systemd.\n" .
                   "#\n" .
-                  "# Data imported and updated from: http://pciids.sourceforge.net/v2.2/pci.ids\n");
+                  "# Data imported and updated from: http://pci-ids.ucw.cz/v2.2/pci.ids\n");
 
         while (my $line = <IN>) {
                 $line =~ s/\s+$//;
@@ -162,7 +162,7 @@ sub pci_classes {
         open(OUT, ">", "20-pci-classes.hwdb");
         print(OUT "# This file is part of systemd.\n" .
                   "#\n" .
-                  "# Data imported and updated from: http://pciids.sourceforge.net/v2.2/pci.ids\n");
+                  "# Data imported and updated from: http://pci-ids.ucw.cz/v2.2/pci.ids\n");
 
         while (my $line = <IN>) {
                 $line =~ s/\s+$//;