13
4
How can I check if KMS is enabled in my kernel? I've compiled mine with KMS radeon modeset
defaulting to 1
, but I still suspect that it is not enabled.
EDIT:
aatiis@aiur ~ $ dmesg | grep drm
[drm] Initialized drm 1.1.0 20060810
[drm] Initialized radeon 1.33.0 20080528 for 0000:01:05.0 on minor 0
[drm] Setting GART location based on new memory map
[drm] Loading RS780 CP Microcode
[drm] Resetting GPU
[drm] writeback test succeeded in 1 usecs
EDIT 2:
aatiis@aiur ~ $ glxinfo | grep render
IRQ's not enabled, falling back to busy waits: 2 0
direct rendering: Yes
OpenGL renderer string: Mesa DRI R600 (RS780 9612) 20090101 TCL
aatiis@aiur ~ $ sudo grep -i kms /var/log/Xorg.0.log
[ 57.201] (II) [KMS] drm report modesetting isn't supported.
1This isn't necessarily correct. While most drivers supporting KMS have implemented
fbdev
, which is what your test actually tests for, if you've got NVIDIA KMS setup, your test will fail despite KMS being enable. KMS is not fbdev. If you've gotfbdev
you've got KMS, but it is not the case that withoutfbdev
you do not have KMS. – Thor – 2017-02-22T20:17:39.8875is there any way to do it without X? I'm trying to install wayland – bobbaluba – 2012-10-06T04:24:49.093