İ have installed drm-kmod. My computer is Dell Inspiron 5559. İ enabled graphics by processor but i would like to use my graphics card which is AMD Radeon R5 M335. Is there a way to enable it? I am looking for single command to use graphics card.
pciconf -lv | egrep -i "amd|radeon"
kld_list="drm radeonkms"
kld_list="drm amdgpu"
Section "Device"
Identifier "Card0"
Option "AccelMethod" "EXA"
BusID "PC:1:0:0"
Screen 0
EndSection
Section "Screen"
Identifier "Screen0"
Device "Card0"
Monitor "Monitor0"
SubSection "Display"
Depth 24
EndSubSection
EndSection
What informations do you need?İ have installed drm-kmod. My computer is Dell Inspiron 5559. İ enabled graphics by processor but i would like to use my graphics card which is AMD Radeon R5 M335. Is there a way to enable it? I am looking for single command to use graphics card.
These are the cards known to work,
The following output can be interesting,
In rc.conf put something like,Code:pciconf -lv | egrep -i "amd|radeon"
For newer cards its,Code:kld_list="drm radeonkms"
Try first without /etc/X11/xorg.confCode:kld_list="drm amdgpu"
It if it fails make a small /etc/X11/xorg.conf
Code:Section "Device" Identifier "Card0" Option "AccelMethod" "EXA" BusID "PC:1:0:0" Screen 0 EndSection Section "Screen" Identifier "Screen0" Device "Card0" Monitor "Monitor0" SubSection "Display" Depth 24 EndSubSection EndSection
drm
by hand is not needed when amdgpu
, i915kms
etc.. gets already called.