hwdb: update comments and data

This commit is contained in:
Kay Sievers 2012-12-14 18:23:36 +01:00
parent e688930750
commit 378cf88f72
6 changed files with 616 additions and 482 deletions

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
# This file is part of systemd.
#
# Data imported and updated from: http://pci-ids.ucw.cz/v2.2/pci.ids
# Data imported from: http://pci-ids.ucw.cz/v2.2/pci.ids
pci:v*d*sv*sd*bc00*
ID_PCI_CLASS_FROM_DATABASE=Unclassified device

View File

@ -1,6 +1,6 @@
# This file is part of systemd.
#
# Data imported and updated from: http://pci-ids.ucw.cz/v2.2/pci.ids
# Data imported from: http://pci-ids.ucw.cz/v2.2/pci.ids
pci:v00000010*
ID_VENDOR_FROM_DATABASE=Allied Telesis, Inc
@ -21602,6 +21602,12 @@ pci:v000010DEd00000E0A*
pci:v000010DEd00000E0C*
ID_PRODUCT_FROM_DATABASE=GF114 HDMI Audio Controller
pci:v000010DEd00000E1B*
ID_PRODUCT_FROM_DATABASE=GK107 HDMI Audio Controller
pci:v000010DEd00000E1Bsv00001043sd00008428*
ID_PRODUCT_FROM_DATABASE=GTX650-DC-1GD5
pci:v000010DEd00000E22*
ID_PRODUCT_FROM_DATABASE=GF104 [GeForce GTX 460]
@ -21632,6 +21638,12 @@ pci:v000010DEd00000FC0*
pci:v000010DEd00000FC1*
ID_PRODUCT_FROM_DATABASE=GK107 [GeForce GT 640]
pci:v000010DEd00000FC6*
ID_PRODUCT_FROM_DATABASE=GK107 [GeForce GTX 650]
pci:v000010DEd00000FC6sv00001043sd00008428*
ID_PRODUCT_FROM_DATABASE=GTX650-DC-1GD5
pci:v000010DEd00000FD1*
ID_PRODUCT_FROM_DATABASE=GK107 [GeForce GT 650M]

View File

@ -1,6 +1,6 @@
# This file is part of systemd.
#
# Data imported and updated from: http://www.linux-usb.org/usb.ids
# Data imported from: http://www.linux-usb.org/usb.ids
usb:v*p*d*dc01*
ID_USB_CLASS_FROM_DATABASE=Audio

View File

@ -1,6 +1,6 @@
# This file is part of systemd.
#
# Data imported and updated from: http://www.linux-usb.org/usb.ids
# Data imported from: http://www.linux-usb.org/usb.ids
usb:v0001*
ID_VENDOR_FROM_DATABASE=Fry's Electronics

View File

@ -10,7 +10,7 @@ sub usb_vendor {
open(OUT, ">", "20-usb-vendor-product.hwdb");
print(OUT "# This file is part of systemd.\n" .
"#\n" .
"# Data imported and updated from: http://www.linux-usb.org/usb.ids\n");
"# Data imported from: http://www.linux-usb.org/usb.ids\n");
while (my $line = <IN>) {
$line =~ s/\s+$//;
@ -47,7 +47,7 @@ sub usb_classes {
open(OUT, ">", "20-usb-classes.hwdb");
print(OUT "# This file is part of systemd.\n" .
"#\n" .
"# Data imported and updated from: http://www.linux-usb.org/usb.ids\n");
"# Data imported from: http://www.linux-usb.org/usb.ids\n");
while (my $line = <IN>) {
$line =~ s/\s+$//;
@ -112,7 +112,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://pci-ids.ucw.cz/v2.2/pci.ids\n");
"# Data imported from: http://pci-ids.ucw.cz/v2.2/pci.ids\n");
while (my $line = <IN>) {
$line =~ s/\s+$//;
@ -161,7 +161,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://pci-ids.ucw.cz/v2.2/pci.ids\n");
"# Data imported from: http://pci-ids.ucw.cz/v2.2/pci.ids\n");
while (my $line = <IN>) {
$line =~ s/\s+$//;
@ -213,8 +213,9 @@ sub oui {
open(OUT, ">", "20-OUI.hwdb");
print(OUT "# This file is part of systemd.\n" .
"#\n" .
"# Data imported and updated from: http://standards.ieee.org/develop/regauth/iab/iab.txt\n" .
"# Data imported and updated from: http://standards.ieee.org/develop/regauth/oui/oui.txt\n");
"# Data imported from:\n" .
"# http://standards.ieee.org/develop/regauth/oui/oui.txt\n" .
"# http://standards.ieee.org/develop/regauth/iab/iab.txt\n");
open(IN, "<", "iab.txt");
while (my $line = <IN>) {