[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Nochmal XFree86 und Notebook



-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Hallo,

Nach einigen Problemen habe ich es nun soweit geschafft, dass ich auf meinem 
Acer Travelmate das X-Windows mit einer Auflösung von 1280x1024 am Laufen 
habe. Das Notebook hat den 855GM Chipsatz von Intel intus (und ich hatte 
vergessen, das intel-agp Modul zu laden).

Jedenfalls würde ich nun aber gerne mit voller Auflösung, also 1400x1050 
fahren. Das habe ich leider nicht nicht geschafft. Angaben in XF86Config-4 
wie
	Option   "Display1400"
wie ich sie schon in den Newsgroups gefunden habe, haben leider nichts 
gebracht.

Hat denn es denn schon jemand bei ähnlicher Hardware geschafft, X-Windows bei 
dier Auflösung zu fahren? Ich glaub auch mal irgendwo einen Hinweis gelesen 
zu haben, das das auch BIOS-abhängig sein kann, und es daher vielleicht 
(noch) gar nicht funktionieren kann.

Bisher bekomme ich jedenfalls immer die Fehlermeldung:
Not using default mode "1400x1050" (no mode of this name)

Würde mich über Hinweise freuen.

Grüße,
Martin

P.S.: Hier meine bisherige XF86Config-4 (gekürzt um die vielen Kommentare):
- --- snip---
Section "Module"

# This loads the DBE extension module.

    Load        "dbe"  	# Double buffer extension

# This loads the miscellaneous extensions module, and disables
# initialisation of the XFree86-DGA extension within that module.
    SubSection  "extmod"
      Option    "omit xfree86-dga"   # don't initialise the DGA extension
    EndSubSection

# This loads the Type1 and FreeType font modules
    Load        "type1"
    Load        "speedo"
#    Load        "freetype"
#    Load        "xtt"

# This loads the GLX module
#    Load       "glx"
# This loads the DRI module
#    Load       "dri"
    Load	"synaptics"

EndSection

# **********************************************************************
# Files section.  This allows default font and rgb paths to be set
# **********************************************************************

Section "Files"

# The location of the RGB database.  Note, this is the name of the
# file minus the extension (like ".txt" or ".db").  There is normally
# no need to change the default.

    RgbPath	"/usr/X11R6/lib/X11/rgb"

#    FontPath   "/usr/X11R6/lib/X11/fonts/local/"
    FontPath   "/usr/X11R6/lib/X11/fonts/misc/"
    FontPath   "/usr/X11R6/lib/X11/fonts/75dpi/:unscaled"
    FontPath   "/usr/X11R6/lib/X11/fonts/100dpi/:unscaled"
    FontPath   "/usr/X11R6/lib/X11/fonts/Speedo/"
    FontPath   "/usr/X11R6/lib/X11/fonts/Type1/"
#    FontPath   "/usr/X11R6/lib/X11/fonts/TrueType/"
#    FontPath   "/usr/X11R6/lib/X11/fonts/freefont/"
    FontPath   "/usr/X11R6/lib/X11/fonts/75dpi/"
    FontPath   "/usr/X11R6/lib/X11/fonts/100dpi/"

# The module search path.  The default path is shown here.

#    ModulePath "/usr/X11R6/lib/modules"

EndSection

# **********************************************************************
# Server flags section.
# **********************************************************************

Section "ServerFlags"


EndSection

Section "InputDevice"

    Identifier	"Keyboard1"
    Driver	"Keyboard"

# For most OSs the protocol can be omitted (it defaults to "Standard").
# When using XQUEUE (only for SVR3 and SVR4, but not Solaris),
# uncomment the following line.

#    Option     "Protocol"      "Xqueue"

    Option "AutoRepeat" "500 30"


    Option "XkbRules"	"xfree86"
    Option "XkbModel"	"pc105"
    Option "XkbLayout"	"de"

EndSection


# **********************************************************************
# Core Pointer's InputDevice section
# **********************************************************************

Section "InputDevice"

# Identifier and driver

    Identifier	"Mouse1"
    Driver	"synaptics"
    Option 	"Device"      "/dev/input/event0"
    Option	"Protocol"	"event"
    Option	"ZAxisMapping" "4 5"
    Option	"Edges"	"1900 5400 1800 3900"
    Option	"Finger"	"25 30"
    Option	"MaxTapTime"	"100"
    Option	"MaxTapMove"	"220"
    Option	"VertScrollDelta"	"100"
    Option	"MinSpeed"	"0.02"
    Option	"MaxSpeed"	"0.18"
    Option	"AccelFactor"	"0.0010"
    Option	"SHMConfig"	"on"
    Option	"UpDownScrolling"	"on"
    Option	"CorePointer"

EndSection

Section "InputDevice"
    Identifier "Mouse0"
    Driver 	"mouse"
    Option	"Protocol"	"ImPS/2"
    Option	"Emulate3Buttons"
    Option	"ZXMapping"	"4 5"
    Option	"Device"	"/dev/input/mice"
    Option	"Buttons"	"5"
EndSection



# **********************************************************************
# Monitor section
# **********************************************************************

# Any number of monitor sections may be present

Section "Monitor"

    Identifier  "15_Zoll_LCD"


    HorizSync   30.0 - 69.3

    VertRefresh 50-100

EndSection


# **********************************************************************
# Graphics device section
# **********************************************************************

# Any number of graphics device sections may be present

# Standard VGA Device:

Section "Device"
    Identifier	"Standard VGA"
    VendorName	"Unknown"
    BoardName	"Unknown"

EndSection

# Device configured by xf86config:

Section "Device"
    Identifier  "Intel 855GM"
    Driver      "i810"
    #VideoRam    65536
    # Insert Clocks lines here if appropriate
   Option	"Display1400"
EndSection


# **********************************************************************
# Screen sections
# **********************************************************************

Section "Screen"
    Identifier  "Screen 1"
    Device      "Intel 855GM"
    Monitor     "15_Zoll_LCD"
    DefaultDepth 24

    Subsection "Display"
        Depth       8
        Modes       "1400x1050"
        ViewPort    0 0
    EndSubsection
    Subsection "Display"
        Depth       16
        Modes       "1400x1050"
        ViewPort    0 0
    EndSubsection
    Subsection "Display"
        Depth       24
        Modes       "1400x1050" "1280x1024"
        ViewPort    0 0
    EndSubsection
EndSection


Section "ServerLayout"

# The Identifier line must be present
    Identifier  "Simple Layout"


    Screen "Screen 1"


    #InputDevice "Mouse1" "CorePointer"
    InputDevice "Mouse0" "SendCoreEvents"
    InputDevice "Mouse1" "CorePointer"
    InputDevice "Keyboard1" "CoreKeyboard"

EndSection

- --- snip ---
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.2 (GNU/Linux)

iD8DBQE/MAAShmBs3X+EtjcRAsr+AJwOx5Cf7Ucaa+jGTSXWNe6GV+0NQwCfeb5a
spHW+bMNC0BcZhVJV4RNC6A=
=FdU1
-----END PGP SIGNATURE-----



Reply to: