Normalmente cuando se quiere cambiar las opciones del controlador Intel xorg.conf
solo se puede editar como:
Section "Device"
Identifier "Intel Graphics"
Driver "intel"
Option "AccelMethod" "uxa"
EndSection
por ejemplo, para elegir el método de aceleración.
¿Cómo se logra esto cuando se usa fglrx
? controladores en un sistema de gráficos híbrido (con tarjetas Intel y AMD) y un xorg.conf
, por defecto (aticonfig --initial
generado) parece
Section "ServerLayout"
Identifier "My Layout"
Screen 0 "aticonfig-Screen[0]-0" 0 0
EndSection
Section "Monitor"
Identifier "aticonfig-Monitor[0]-0"
Option "VendorName" "ATI Proprietary Driver"
Option "ModelName" "Generic Autodetecting Monitor"
Option "DPMS" "true"
EndSection
Section "Device"
Identifier "aticonfig-Device[0]-0"
Driver "fglrx"
BusID "PCI:6:0:0"
EndSection
Section "Screen"
Identifier "aticonfig-Screen[0]-0"
Device "aticonfig-Device[0]-0"
Monitor "aticonfig-Monitor[0]-0"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
EndSubSection
EndSection
(Intenté agregar una estrofa de dispositivo Intel con las opciones deseadas; conduce a una falla de segmento)