source: x/installing/x7driver-intel.xml@ ca40dca

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 7.10 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since ca40dca was ca40dca, checked in by Pierre Labastie <pieere@…>, 9 years ago

Modify Kernel Configuration instructions for Xorg drivers, to use the same
format as in the LFS Kernel page

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@15090 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 7.1 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY xorg-intel-driver-version "2.99.916">
8
9 <!ENTITY xorg-intel-driver-download-http "&xorg-download-http;/driver/xf86-video-intel-&xorg-intel-driver-version;.tar.bz2">
10 <!ENTITY xorg-intel-driver-download-ftp "&xorg-download-ftp;/driver/xf86-video-intel-&xorg-intel-driver-version;.tar.bz2">
11 <!ENTITY xorg-intel-driver-md5sum "7e24551eae0b952f4d795e791e88ebe5">
12 <!ENTITY xorg-intel-driver-size "2.1 MB">
13 <!ENTITY xorg-intel-driver-buildsize "71 MB">
14 <!ENTITY xorg-intel-driver-time "0.6 SBU">
15]>
16
17 <!-- Begin Xorg Intel Driver -->
18 <sect2 id="xorg-intel-driver" xreflabel="Xorg Intel Driver-&xorg-intel-driver-version;">
19
20 <title>Xorg Intel Driver-&xorg-intel-driver-version;</title>
21
22 <indexterm zone="xorg-intel-driver">
23 <primary sortas="a-xorg-intel-driver">xorg-intel-driver</primary>
24 </indexterm>
25
26 <sect3 role="package">
27 <title>Introduction to Xorg Intel Driver</title>
28
29 <para>
30 The <application>Xorg Intel Driver</application> package contains the X.Org
31 Video Driver for Intel integrated video cards including 8xx, 9xx, Gxx, Qxx
32 and HD graphics processors (SandyBridge, IvyBridge and Haswell).
33 </para>
34
35 &lfs76_checked;
36
37 <note><para>This is a development version of the Intel driver
38 which is needed to work properly with the latest hardware.</para></note>
39
40
41 <bridgehead renderas="sect4">Package Information</bridgehead>
42 <itemizedlist spacing="compact">
43 <listitem>
44 <para>
45 Download (HTTP): <ulink url="&xorg-intel-driver-download-http;"/>
46 </para>
47 </listitem>
48 <listitem>
49 <para>
50 Download (FTP): <ulink url="&xorg-intel-driver-download-ftp;"/>
51 </para>
52 </listitem>
53 <listitem>
54 <para>
55 Download MD5 sum: &xorg-intel-driver-md5sum;
56 </para>
57 </listitem>
58 <listitem>
59 <para>
60 Download size: &xorg-intel-driver-size;
61 </para>
62 </listitem>
63 <listitem>
64 <para>
65 Estimated disk space required: &xorg-intel-driver-buildsize;
66 </para>
67 </listitem>
68 <listitem>
69 <para>
70 Estimated build time: &xorg-intel-driver-time;
71 </para>
72 </listitem>
73 </itemizedlist>
74
75 <bridgehead renderas="sect4">Xorg Intel Driver Dependencies</bridgehead>
76
77 <bridgehead renderas="sect5">Required</bridgehead>
78 <para role="required">
79 <xref linkend="xcb-util"/> and
80 <xref linkend="xorg-server"/>
81 </para>
82
83 <para condition="html" role="usernotes">
84 User Notes: <ulink url="&blfs-wiki;/xorg-intel-driver"/>
85 </para>
86 </sect3>
87
88 <sect3 role="kernel" id="xorg-intel-driver-kernel">
89 <title>Kernel Configuration</title>
90
91 <para>
92 Enable the following options in the kernel configuration. Only one of
93 the lines <quote>Intel I810</quote> or <quote>Intel 8xx/9xx...</quote>
94 needs to be selected. If you select the latter, <quote>Enable
95 modesetting...</quote> is needed too. Recompile the kernel if necessary:
96 </para>
97
98<screen><literal>Device Drivers ---&gt;
99 Graphics support ---&gt;
100 Direct rendering Manager ---&gt;
101 &lt;*&gt; Direct Rendering Manager (XFree86 ... support) ---&gt; [CONFIG_DRM]
102 &lt;*&gt; Intel I810 [CONFIG_DRM_I810]
103 &lt;*&gt; Intel 8xx/9xx/G3x/G4x/HD Graphics [CONFIG_DRM_I915]
104 [*] Enable modesetting on intel by default [CONFIG_DRM_I915_KMS]</literal></screen>
105
106 <indexterm zone="xorg-intel-driver xorg-intel-driver-kernel">
107 <primary sortas="d-xorg-intel-driver">xorg-intel-driver</primary>
108 </indexterm>
109 </sect3>
110
111 <sect3 role="installation">
112 <title>Installation of Xorg Intel Driver</title>
113
114 <para>
115 Install <application>Xorg Intel Driver</application> by running the following
116 commands:
117 </para>
118
119<screen><userinput>./configure $XORG_CONFIG \
120 --enable-kms-only \
121 --enable-uxa \
122 --enable-glamor &amp;&amp;
123make</userinput></screen>
124
125 <para>
126 This package does not come with a test suite.
127 </para>
128
129 <para>
130 Now, as the <systemitem class="username">root</systemitem> user:
131 </para>
132
133<screen role="root"><userinput>make install</userinput></screen>
134
135 </sect3>
136
137 <sect3 role="commands">
138 <title>Command Explanations</title>
139
140 <para>
141 <parameter>--enable-kms-only</parameter>: This switch omits the UMS
142 (User Mode Setting) code.
143 </para>
144
145 <para>
146 <parameter>--enable-uxa</parameter>: This switch enables Unified
147 Acceleration Architecture (UXA) and is required for Glamor
148 acceleration.
149 </para>
150
151 <para>
152 <option>--enable-glamor</option>: This switch enables
153 new GL-based 2D acceleration. As well as specifying this in the
154 build, it needs to be enabled at run time (see below).
155 </para>
156
157 </sect3>
158
159 <sect3>
160 <title>Glamor Acceleration</title>
161
162 <para>
163 Glamor is an acceleration library which uses cards' 3D capabilities to
164 accelerate 2D rendering. Glamor acceleration is not enabled by default.
165 You have to use a <filename>xorg.conf</filename> file to enable it. To
166 enable Glamor, create the following
167 <filename>/etc/X11/xorg.conf</filename> as the
168 <systemitem class="username">root</systemitem> user:
169 </para>
170
171<screen role="root"><userinput>cat &gt;&gt; /etc/X11/xorg.conf &lt;&lt; "EOF"
172<literal>Section "Module"
173 Load "dri2"
174 Load "glamoregl"
175EndSection
176
177Section "Device"
178 Identifier "intel"
179 Driver "intel"
180 Option "AccelMethod" "glamor"
181EndSection</literal>
182EOF</userinput></screen>
183
184 </sect3>
185 <sect3 role="content">
186 <title>Contents</title>
187
188 <segmentedlist>
189 <segtitle>Installed Library</segtitle>
190 <segtitle>Installed Xorg Driver</segtitle>
191
192 <seglistitem>
193 <seg>
194 libIntelXvMC.so
195 </seg>
196 <seg>
197 intel_drv.so
198 </seg>
199 </seglistitem>
200 </segmentedlist>
201
202 <variablelist>
203 <bridgehead renderas="sect4">Short Descriptions</bridgehead>
204 <?dbfo list-presentation="list"?>
205 <?dbhtml list-presentation="table"?>
206
207 <varlistentry id="intel_drv">
208 <term><filename class="libraryfile">intel_drv.so</filename></term>
209 <listitem>
210 <para>
211 is an Xorg video driver for Intel integrated graphics chipsets.
212 </para>
213 <indexterm zone="xorg-intel-driver intel_drv">
214 <primary sortas="c-intel_drv">intel_drv.so</primary>
215 </indexterm>
216 </listitem>
217 </varlistentry>
218
219 </variablelist>
220
221 </sect3>
222
223 </sect2>
224 <!-- End Xorg Intel Driver -->
Note: See TracBrowser for help on using the repository browser.