chiark / gitweb /
hwdb: OUI - use ID_OUI_FROM_DATABASE=
[elogind.git] / hwdb / ids-update.pl
index 3e0c14b0b2519e88f35b2756e75f66c4e265b499..b23224a91cc818d6b86d0184af45ece0cb2e7599 100755 (executable)
@@ -80,7 +80,7 @@ close(INP);
 close(OUTP);
 
 open(IN, "<", "oui.txt");
-open(OUT, ">", "20-OUI-vendor.hwdb");
+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/oui/oui.txt\n");
@@ -93,7 +93,7 @@ while (my $line = <IN>) {
                 my $text = $2;
                 print(OUT "\n");
                 print(OUT "OUI:" . $vendor . "\n");
-                print(OUT " ID_VENDOR_FROM_DATABASE=" . $text . "\n");
+                print(OUT " ID_OUI_FROM_DATABASE=" . $text . "\n");
         }
 }
 close(INP);