VIA Epia Board/Trident onboard GK will nicht mehr als 800x600

DieTa

Rollercoaster-Liebhaber
Servus,

auf meinem kleinen VIA Epia Board mit VIA C3/800 CPU habe ich auf eine 2GB CFCard ein FreeBSD installiert. Mit pkg_add startet der X-Server auch wunderbar in 640x480. Ich möchte das ganze in ein sehr kleines selbst gebautes Gehäuse verfrachten und an meinem Beamer im Wohnzimmer anschließen und brauche dafür eine Auflösung von 800x600 um das ideale Bild zu erzielen.

Ich kann in den Xorg.conf eintragen, was ich will, leider bootet Blackbox (der ganze X-Server ansich) leider immer nur mit 640x480.

Die Onboard Karte ist eine Trident und schnappt sich beim Booten 8MB vom RAM (768MB)...

Eine Variante wäre natürlich eine hier rumliegende PCI Karte zu verwende (Matrox G450 oder S3 Virge), aber die onboard funktioniert ja im Grunde genommen, außerdem möchte ich das Gehäuse möglichst klein bauen :)

Hier die xorg.conf. Vielleicht hat ja jemand eine Idee...

PS. Modelines für den Projektor zu finde dürfte schwer werden, oder? :(

Code:
quark# cat /etc/X11/xorg.conf
Section "ServerLayout"
        Identifier     "X.org Configured"
        Screen      0  "Screen0" 0 0
        InputDevice    "Mouse0" "CorePointer"
        InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
        RgbPath      "/usr/X11R6/lib/X11/rgb"
        ModulePath   "/usr/X11R6/lib/modules"
        FontPath     "/usr/X11R6/lib/X11/fonts/misc/"
        FontPath     "/usr/X11R6/lib/X11/fonts/TTF/"
        FontPath     "/usr/X11R6/lib/X11/fonts/Type1/"
        FontPath     "/usr/X11R6/lib/X11/fonts/CID/"
        FontPath     "/usr/X11R6/lib/X11/fonts/75dpi/"
        FontPath     "/usr/X11R6/lib/X11/fonts/100dpi/"
EndSection

Section "Module"
        Load  "dbe"
        Load  "dri"
        Load  "extmod"
        Load  "glx"
        Load  "record"
        Load  "xtrap"
        Load  "freetype"
        Load  "type1"
EndSection

Section "InputDevice"
        Identifier  "Keyboard0"
        Driver      "kbd"
        Option      "XkbLayout" "de"
EndSection

Section "InputDevice"
        Identifier  "Mouse0"
        Driver      "mouse"
        Option      "Protocol" "auto"
        Option      "Device" "/dev/sysmouse"
        Option      "ZAxisMapping" "4 5 6 7"
EndSection

Section "Monitor"
        #DisplaySize      270   200     # mm
        Identifier   "Monitor0"
        VendorName   "CPQ"
        ModelName    "d4e"
        Option      "DPMS"
EndSection

Section "Device"
        ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
        ### [arg]: arg optional
        #Option     "SWcursor"                  # [<bool>]
        #Option     "PciRetry"                  # [<bool>]
        #Option     "NoAccel"                   # [<bool>]
        #Option     "SetMClk"                   # <freq>
        #Option     "MUXThreshold"              # <i>
        #Option     "ShadowFB"                  # [<bool>]
        #Option     "Rotate"                    # [<str>]
        #Option     "VideoKey"                  # <i>
        #Option     "NoMMIO"                    # [<bool>]
        #Option     "NoPciBurst"                # [<bool>]
        #Option     "MMIOonly"                  # [<bool>]
        #Option     "CyberShadow"               # [<bool>]
        #Option     "CyberStretch"              # [<bool>]
        #Option     "XvHsync"                   # <i>
        #Option     "XvVsync"                   # <i>
        #Option     "XvBskew"                   # <i>
        #Option     "XvRskew"                   # <i>
        #Option     "FpDelay"                   # <i>
        #Option     "Display1400"               # [<bool>]
        #Option     "Display"                   # [<str>]
        #Option     "GammaBrightness"           # [<str>]
        #Option     "TVChipset"                 # [<str>]
        #Option     "TVSignal"                  # <i>
        Identifier  "Card0"
        Driver      "trident"
        VendorName  "Trident Microsystems"
        BoardName   "CyberBlade/i1"
        BusID       "PCI:1:0:0"
EndSection

Section "Screen"
        Identifier "Screen0"
        Device     "Card0"
        Monitor    "Monitor0"
        Subsection "Display"
                Depth 16
                Modes "800x600" "640x480"
                ViewPort 0 0
        EndSubsection
        Subsection "Display"
                Depth 24
                Modes "800x600" "640x480"
                ViewPort 0 0
        EndSubSection
EndSection
 
Zurück
Oben