А вообще покажите Xorg.0.log
[root@comp-]# grep -v '#' /etc/X11/xorg.conf.d/10-monitor.conf
Section "Monitor"
Identifier "Monitor0"
EndSection
Section "Device"
Identifier "Card0"
Driver "intel"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Card0"
Monitor "Monitor0"
SubSection "Display"
Modes "1920x1080"
EndSubSection
EndSection
Лог Xorg у вас говорит, что загружается у вас всё что угодно ( в /var/log/Xorg.0.log грепать LoadModule:), но только не модуль intel (LoadModule: "intel"). Который содержится в пакете:
# rpm -ql xorg-drv-intel | grep so$
/usr/lib/X11/modules/drivers/intel_drv.so
и по вашим словам, intel драйвер, указан как драйвер в конфиге xorg (10-monitor.conf).
Попробуйте закомментировать всю секцию Section "Screen", перегрузиться и посмотреть, какой режим и какой драйвер будет использоваться по kms.
Обычно, если указан драйвер intel
$ cat /etc/X11/xorg.conf.d/10-monitor.conf
# Generated by xsetup
Section "Monitor"
Identifier "Monitor0"
EndSection
Section "Device"
Identifier "Card0"
Driver "intel"
# Driver "modesetting"
EndSection
то грузится именно он
# grep LoadModule: /var/log/Xorg.0.log
[ 36.584] (II) LoadModule: "glx"
[ 36.671] (II) LoadModule: "intel"
[ 36.867] (II) LoadModule: "dri3"
[ 36.867] (II) LoadModule: "dri2"
[ 36.867] (II) LoadModule: "present"
[ 37.943] (II) LoadModule: "evdev"
[ 37.976] (II) LoadModule: "libinput"
[ 38.165] (II) LoadModule: "synaptics"
и используется именно он
# grep 'intel(0):' /var/log/Xorg.0.log | wc -l # Количество строк с маской
84
# grep 'intel(0):' /var/log/Xorg.0.log | tail -n 2
[ 55.309] (II) intel(0): Setting screen physical size to 340 x 190
[ 59.063] (II) intel(0): switch to mode 1366x768@60.0 on eDP1 using pipe 0, position (0, 0), rotation normal, reflection none