From 15d403f12d915ad1622875f0ae46625b267eb96b Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Wed, 23 Jan 2008 11:24:56 +0000 Subject: - monitor-probe: o probe "using DMI" before "using X" - monitor-probe-using-X: o in last resort, get Intel BIOS mode when "BIOS panel mode is bigger than probed programmed mode" --- monitor-probe-using-X | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'monitor-probe-using-X') diff --git a/monitor-probe-using-X b/monitor-probe-using-X index 70b0252..1b6299c 100755 --- a/monitor-probe-using-X +++ b/monitor-probe-using-X @@ -177,6 +177,11 @@ sub parse_X_log { # via format: "Selected Panel Size is 640x480\n", ... (via/via_driver.c) || $log =~ m!\bSelected Panel Size is (\d+)x(\d+)$!m + # (WW) intel(0): BIOS panel mode is bigger than probed programmed mode, continuing with BIOS mode. + # (II) intel(0): BIOS mode: + # (II) intel(0): Modeline "1280x800"x0.0 68.88 1280 1296 1344 1410 800 804 807 815 (48.9 kHz) + || $log =~ m!BIOS panel mode is bigger than probed programmed mode, continuing with BIOS mode.*?BIOS mode:.*?Modeline "(\d+)x(\d+)"!s + or return; my ($X, $Y) = ($1, $2); -- cgit v1.2.1