You are not logged in.

#1 2007-10-20 04:39:37

cubo
Member
From: Slovakia
Registered: 2007-02-03
Posts: 25

bootsplash ; compiz-fusion

hello,

i have 2 independent problems

1) bootsplash - i want to set up graphical boot and I decided for gensplash. The wiki article (http://wiki.archlinux.org/index.php/Gensplash) seems to be out-dated (because of http://bbs.archlinux.org/viewtopic.php?id=37829 -> so no more patching is needed)..or am i wrong? And then there is no gensplash package for x86_64..so was supplied by initscripts-splash or only isn't precompiled for x86_64 ( http://aur.archlinux.org/packages.php?d … s=0&SeB=nd) ?

2) i want to try '3d accelerated desktop' - AIGLX + compiz-fusion. Following the wiki (http://wiki.archlinux.org/index.php/Compiz_Fusion)..again..the problem start on

compiz --replace ccp &

. This brokes mouse/keyboard/input so only what can i do is restart X.  I have tried export

LIBGL_ALWAYS_INDIRECT=1

but nothing changed. The error message shows problem with "GLX_EXT_texture_from_pixmap" and "managing screens"...
My xorg.conf:

cubo@jazz> cat /etc/X11/xorg.conf                                                                                              ~
Section "ServerLayout"
        Identifier     "X.org Configured"
        Screen      0  "Screen0" 0 0
#       InputDevice    "Mouse0" "CorePointer"
        InputDevice    "Touchpad" "CorePointer
        InputDevice    "USBmouse" "CorePointer
        InputDevice    "UltraNav"  "CorePointer 
#       InputDevice    "Touchpad" "AlwaysCore"
        InputDevice    "Keyboard0" "CoreKeyboard"
        Option         "AIGLX" "true"   
EndSection

Section "Files"
        RgbPath      "/usr/share/X11/rgb"
        ModulePath   "/usr/lib/xorg/modules"
        FontPath     "/usr/share/fonts/misc"
        FontPath     "/usr/share/fonts/100dpi:unscaled"
        FontPath     "/usr/share/fonts/75dpi:unscaled"
        FontPath     "/usr/share/fonts/TTF"
        FontPath     "/usr/share/fonts/Type1"
EndSection

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

Section "InputDevice"
        Identifier  "Keyboard0"
        Driver      "kbd"
        Option         "XkbLayout" "us,sk"
        Option         "XkbVariant" ",qwerty"
        Option         "XkbRules" "xorg"
EndSection

Section "InputDevice"
        Identifier  "USBmouse"
        Driver      "mouse"
        Option      "Protocol" "auto"
        Option      "Device" "/dev/input/mice"
        Option      "ZAxisMapping" "4 5 6 7"
EndSection

Section "InputDevice"
        Identifier      "TouchPad"
        Driver          "synaptics"
        Option  "Device"        "/dev/input/mouse1"
        Option  "Protocol"      "auto-dev"
        Option  "LeftEdge"      "1700"
        Option  "RightEdge"     "5300"
        Option  "TopEdge"       "1700"
        Option  "BottomEdge"    "4200"
        Option  "FingerLow"     "25"
        Option  "FingerHigh"    "30"
        Option  "MaxTapTime"    "180"
        Option  "MaxTapMove"    "220"
        Option  "VertScrollDelta" "100"
        Option  "MinSpeed"      "0.06"
        Option  "MaxSpeed"      "0.12"
        Option  "AccelFactor" "0.0010"
        Option  "SHMConfig"     "on"
#       Option  "Repeater"      "/dev/ps2mouse"
EndSection

Section "InputDevice"
      Identifier  "UltraNav"
      Driver      "mouse"
      Option      "CorePointer"
      Option      "Device" "/dev/input/mouse3"
      Option      "Protocol" "ExplorerPS/2"
      Option      "Emulate3Buttons"     "on"
      Option      "Emulate3TimeOut"     "50"
      Option      "EmulateWheel"        "on"
      Option      "EmulateWheelTimeOut" "200"
      Option      "EmulateWheelButton"  "2"
      Option      "YAxisMapping"        "4 5"
      Option      "XAxisMapping"        "6 7"
      Option      "ZAxisMapping"        "4 5"
EndSection

Section "Monitor"
        #DisplaySize      300   230     # mm
        Identifier   "Monitor0"
        VendorName   "LEN"
        ModelName    "4040"
        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     "NoAccel"                   # [<bool>]
        #Option     "SWcursor"                  # [<bool>]
        #Option     "ColorKey"                  # <i>
        #Option     "CacheLines"                # <i>
        #Option     "Dac6Bit"                   # [<bool>]
        #Option     "DRI"                       # [<bool>]
        #Option     "NoDDC"                     # [<bool>]
        #Option     "ShowCache"                 # [<bool>]
        #Option     "XvMCSurfaces"              # <i>
        #Option     "PageFlip"                  # [<bool>]
        Identifier  "Card0"
        Driver      "intel"
        VendorName  "Intel Corporation"
        BoardName   "Mobile 945GM/GMS, 943/940GML Express Integrated Graphics Controller"
        BusID       "PCI:0:2:0"
        Option      "XAANoOffscreenPixmaps" "true"
        Option      "DRI"     "true"
EndSection

Section "Screen"
        Identifier "Screen0"
        Device     "Card0"
        Monitor    "Monitor0"
        DefaultDepth  24
        SubSection "Display"
                Depth        1
                Modes        "1024x768"
        EndSubSection
        SubSection "Display"
                Depth        4
                Modes        "1024x768"
        EndSubSection
        SubSection "Display"
                Depth        8
                Modes        "1024x768"
        EndSubSection
        SubSection "Display"
                Depth        15
                Modes        "1024x768"
        EndSubSection
        SubSection "Display"
                Depth        16
                Modes        "1024x768"
        EndSubSection
        SubSection "Display"
                Depth        24
                Modes        "1024x768"
        EndSubSection
EndSection

Section "DRI"
        Group 0
        Mode 0666
EndSection

Section "Extensions"
        Option         "Composite"   "Enable"
EndSection

I have intel chipset (IBM ThinkPad R60) and i use xorg from testing + KDEmod.

Thanks!

Offline

Board footer

Powered by FluxBB