Visible to Intel only — GUID: GUID-7B1592CA-B170-429D-BE5D-CF303EC8C721
Visible to Intel only — GUID: GUID-7B1592CA-B170-429D-BE5D-CF303EC8C721
Build Guide
Introduction
This page is for experienced Linux users. If you are not familiar with building software components using autotools, we recommend that you use a pre-compiled and tested version available on your current distro.
Building Kernel
Please refer to https://kernelnewbies.org/KernelBuildfor detailed instruction on kernel building.
The only exception is that you should use drm-tip repository. The following is a short example to get you started:
git clone git://anongit.freedesktop.org/drm-tip cd drm-tip cp /boot/config-`uname -r`* .config # or, depending on your distribution gunzip -c /proc/config.gz > .config make olddefconfig make sudo make modules_install sudo make install
Building User Space Components
Please refer to the README files available inside each of the user space components in order to get the most updated building instructions for that code.