summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--convert/verify_MonitorsDB16
-rw-r--r--ldetect-lst.spec2
2 files changed, 17 insertions, 1 deletions
diff --git a/convert/verify_MonitorsDB b/convert/verify_MonitorsDB
new file mode 100644
index 00000000..9da8ec6f
--- /dev/null
+++ b/convert/verify_MonitorsDB
@@ -0,0 +1,16 @@
+#!/usr/bin/perl
+
+use lib qw(/usr/lib/libDrakX);
+use Xconfig::monitor;
+
+my $monitors_db = Xconfig::monitor::readMonitorsDB("../lst/MonitorsDB");
+foreach (@$monitors_db) {
+ if ($_->{EISA_ID} =~ /^\w{3}[0-9a-f]{4}$/i) {
+ # perfect!
+ } elsif ($_->{EISA_ID} =~ /^([a-z]{3})([0-9a-f]{0,3})$/i) {
+ # we can correct this
+ printf "$_->{EISA_ID} should be %s%04x\n", $1, hex($2);
+ } else {
+ print "bad EISA_ID $_->{EISA_ID}\n";
+ }
+}
diff --git a/ldetect-lst.spec b/ldetect-lst.spec
index 94c73782..d0abf2ba 100644
--- a/ldetect-lst.spec
+++ b/ldetect-lst.spec
@@ -73,7 +73,7 @@ fi
* Thu Oct 28 2004 Gwenole Beauchesne <gbeauchesne@mandrakesoft.com> 0.1.22-1mdk
- add nVidia Quadro FX 1100 card ID
-- add support for FreeBox via USB link (buggy device make kernel
+- add support for FreeBox v4 via USB link (buggy device make kernel
failed to map usbnet to it) [ Thierry Vignaud ]
* Thu Oct 21 2004 Gwenole Beauchesne <gbeauchesne@mandrakesoft.com> 0.1.21-1mdk