X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=hwdb%2Fids-update.pl;h=68c63ede4383f82e14838cbd78cc4032b0264319;hp=b72c415711f7a10011af7814727a8bd8ef9456bc;hb=02dd6e189a6d2b7f3884ad4cdb3d8c85e009c565;hpb=56243d0936f85b2580f4c1028e1af98b96d77b72;ds=sidebyside diff --git a/hwdb/ids-update.pl b/hwdb/ids-update.pl index b72c41571..68c63ede4 100755 --- a/hwdb/ids-update.pl +++ b/hwdb/ids-update.pl @@ -107,6 +107,7 @@ sub usb_classes { sub pci_vendor { my $vendor; my $device; + my $device_text; open(IN, "<", "pci.ids"); open(OUT, ">", "20-pci-vendor-model.hwdb"); @@ -130,10 +131,10 @@ sub pci_vendor { $line =~ m/^\t([0-9a-f]{4})\s*(.+)$/; if (defined $1) { $device = uc $1; - my $text = $2; + $device_text = $2; print(OUT "\n"); print(OUT "pci:v0000" . $vendor . "d0000" . $device . "*\n"); - print(OUT " ID_MODEL_FROM_DATABASE=" . $text . "\n"); + print(OUT " ID_MODEL_FROM_DATABASE=" . $device_text . "\n"); next; } @@ -141,10 +142,12 @@ sub pci_vendor { if (defined $1) { my $sub_vendor = uc $1; my $sub_device = uc $2; - my $text = $3; + my $sub_text = $3; + $sub_text =~ s/^\Q$device_text\E\s*//; + $sub_text =~ s/(.+)/\ (\1\)/; print(OUT "\n"); print(OUT "pci:v0000" . $vendor . "d0000" . $device . "sv0000" . $sub_vendor . "sd0000" . $sub_device . "*\n"); - print(OUT " ID_MODEL_FROM_DATABASE=" . $text . "\n"); + print(OUT " ID_MODEL_FROM_DATABASE=" . $device_text . $sub_text . "\n"); } }