santaclaws wrote:
Does it work for you?
I have been trying to get xorg-server-1.4 to work but without success.
Now I am recompiling xorg-server-1.3 and hope that things are getting done quickly.
Yes, of course, as I wrote above. You could try to do the following. Run
Code: Select all
ACCEPT_KEYWORDS=~x86 emerge world -uDpv | less
and see if there are any x11 related package which are not in there latest available version, e.g. any x11-drivers/xf86-input-* driver or media-libs/mesa or other x11-libs/* stuff. Update these and then try a generic xorg.conf by logging in as root on the linux console. To generate it, run
. This will probe your hardware and generate a generic xorg.conf.new. You can then test it by running
That was it. Now you can add some more settings. I added the Option "XkbLayout" "de" to the kbd input device and the following lines to enable composite and render extension.
Code: Select all
Section "DRI"
Mode 0666
EndSection
Section "Extensions"
Option "Composite" "Enable"
Option "Render" "Enable"
EndSection
Copy that version to /etc/X11 and you are done.