Intel HD Graphics 630 support

Issues related to hardware problems
Post Reply
raines
Posts: 19
Joined: 2006/08/08 17:28:35

Intel HD Graphics 630 support

Post by raines » 2017/10/26 14:47:49

With a up to date 7.4 install on a new box with

00:02.0 VGA compatible controller: Intel Corporation HD Graphics 630 (rev 04)

Xorg just dies with no device found using the included xorg-x11-drv-intel-2.99.917-26.20160929 driver.

I was able to create one that works by doing:

Code: Select all

$ yum install libpciaccess-devel.x86_64 xorg-x11-server-devel.x86_64 \
  libXfont-devel.x86_64 libXfont2-devel.x86_64
$ git clone git://anongit.freedesktop.org/xorg/driver/xf86-video-intel
$ cd xf86-video-intel
$ git checkout d39197bb10b7d88cb4c456e7a5e8d34c1dc6eeaf
$ autoreconf -i
$ ./configure
$ make
$ mv /usr/lib64/xorg/modules/drivers/intel_drv.so /usr/lib64/xorg/modules/drivers/intel_drv.so.ORIG
$ rsync -a ./src/.libs/intel_drv.so /usr/lib64/xorg/modules/drivers/intel_drv.so
which I figured out from https://bugs.freedesktop.org/show_bug.cgi?id=100934

mjfrazer
Posts: 2
Joined: 2018/04/17 14:21:26

Re: Intel HD Graphics 630 support

Post by mjfrazer » 2018/04/17 14:25:28

kernel-ml from elrepo works for me until 7.5 comes out. I presume Coffee Lake support will be in that release.

Post Reply