I found something strange:

On Tue, 11 Nov 2008 13:28:53 +0100 (CET), Pieter Donche <[EMAIL PROTECTED]> 
wrote:
> ------------------
> xorg.conf
> ------------------
> [...]
> Section "Screen"
>       Identifier "Screen0"
>       Device     "Card0"
>       Monitor    "Monitor0"
>       SubSection "Display"
>               Viewport   0 0
>               Depth     1
>               Modes     "1280x768"
>       EndSubSection
>       SubSection "Display"
>               Viewport   0 0
>               Depth     4
>               Modes     "1280x768"
>       EndSubSection
>       SubSection "Display"
>               Viewport   0 0
>               Depth     8
>               Modes     "1280x768"
>       EndSubSection
>       SubSection "Display"
>               Viewport   0 0
>               Depth     15
>               Modes     "1280x768"
>       EndSubSection
>       SubSection "Display"
>               Viewport   0 0
>               Depth     16
>               Modes     "1280x768"
>       EndSubSection
>       SubSection "Display"
>               Viewport   0 0
>               Depth     24
>               Modes     "1280x768"
>       EndSubSection
> EndSection

You have many depth entries (why not just one with the depth you
want to use?), but the setting DefaultDepth seems to be missing.

Section "Screen"
        Identifier      "Screen0"
        Device          "Card0"
        Monitor         "Monitor0"
        Option          "Accel"
        DefaultDepth    24
        SubSection      "Display"
                Depth   24
                Modes   "1280x768"
        EndSubSection
EndSection

How about trimming your section down (as above), just to eliminate
possible causes for the problem?

>From the log file, there are minor warnings that don't matter.
The rest seems to look completely okay... no reason why the
selected mode should not get set.



-- 
Polytropon
>From Magdeburg, Germany
Happy FreeBSD user since 4.0
Andra moi ennepe, Mousa, ...
_______________________________________________
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Reply via email to