diff options
author | Mystery Man <unknown@mandriva.org> | 2005-03-17 22:05:21 +0000 |
---|---|---|
committer | Mystery Man <unknown@mandriva.org> | 2005-03-17 22:05:21 +0000 |
commit | bd0bf987a7fecfc348c88fb12a58d519a2d37e4e (patch) | |
tree | c90b11a8dcb4ef2e725f5db604d587fea36b2880 /convert | |
parent | e2537ebea05d65b2348f7a4c83ea1eedd7ffa1ce (diff) | |
download | ldetect-lst-MDK10_1.tar ldetect-lst-MDK10_1.tar.gz ldetect-lst-MDK10_1.tar.bz2 ldetect-lst-MDK10_1.tar.xz ldetect-lst-MDK10_1.zip |
This commit was manufactured by cvs2svn to create tag 'MDK10_1'.MDK10_1
Diffstat (limited to 'convert')
-rw-r--r-- | convert/verify_MonitorsDB | 16 |
1 files changed, 16 insertions, 0 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"; + } +} |