aboutsummaryrefslogtreecommitdiffstats
path: root/monitor-parse-edid
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2006-01-06 11:21:23 +0000
committerPascal Rigaux <pixel@mandriva.com>2006-01-06 11:21:23 +0000
commit44eacabbffe8127f528a9f09593910233d55cd86 (patch)
treeecd833f408b02b5f22b950d2d08655426fe252af /monitor-parse-edid
parent53c3590bd16fd8a0392974b8c08961ea18c91b9b (diff)
downloadmonitor-edid-44eacabbffe8127f528a9f09593910233d55cd86.tar
monitor-edid-44eacabbffe8127f528a9f09593910233d55cd86.tar.gz
monitor-edid-44eacabbffe8127f528a9f09593910233d55cd86.tar.bz2
monitor-edid-44eacabbffe8127f528a9f09593910233d55cd86.tar.xz
monitor-edid-44eacabbffe8127f528a9f09593910233d55cd86.zip
- monitor-get-edid is now a perl script able to probe /proc/acpi/video
(or /proc/device-tree on PPC) - binary monitor-get-edid is now monitor-get-edid-using-vbe - monitor-edid is able to get more than one head
Diffstat (limited to 'monitor-parse-edid')
-rwxr-xr-xmonitor-parse-edid2
1 files changed, 1 insertions, 1 deletions
diff --git a/monitor-parse-edid b/monitor-parse-edid
index dc8cead..3d63b79 100755
--- a/monitor-parse-edid
+++ b/monitor-parse-edid
@@ -449,7 +449,6 @@ GetOptions(
'v' => \ (my $verbose),
'perl' => \ (my $raw_perl),
'MonitorsDB' => \ (my $MonitorsDB),
- 'try-in-console' => undef,
) or usage();
my $F;
@@ -475,6 +474,7 @@ if ($raw_perl) {
$Data::Dumper::Sortkeys = 1;
my $s = Dumper($edid);
$s =~ s/.*? = {/+{/; # remove variable name we don't want
+ $s =~ s/};$/}/m;
print $s;
} elsif ($MonitorsDB) {
my $s = to_MonitorsDB($edid);