Changeset 4d0a7007


Ignore:
Timestamp:
01/13/2015 08:28:11 PM (9 years ago)
Author:
Bruce Dubbs <bdubbs@…>
Branches:
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
Children:
6b60e811
Parents:
64ecc21
Message:

Reformat xindy instructions.
Update intel Xorg driver instructions.

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

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • pst/typesetting/xindy.xml

    r64ecc21 r4d0a7007  
    104104
    105105<screen><userinput>export TEXARCH=$(uname -m | sed -e 's/i.86/i386/' -e 's/$/-linux/') &amp;&amp;
    106 ./configure --prefix=/opt/texlive/&texlive-year; \
    107  --bindir=/opt/texlive/&texlive-year;/bin/$TEXARCH \
    108  --datarootdir=/opt/texlive/&texlive-year; \
    109  --includedir=/usr/include \
    110  --libdir=/opt/texlive/&texlive-year;/texmf-dist \
    111  --mandir=/opt/texlive/&texlive-year;/texmf-dist/doc/man &amp;&amp;
     106
     107./configure --prefix=/opt/texlive/&texlive-year;              \
     108            --bindir=/opt/texlive/&texlive-year;/bin/$TEXARCH \
     109            --datarootdir=/opt/texlive/&texlive-year;         \
     110            --includedir=/usr/include                         \
     111            --libdir=/opt/texlive/&texlive-year;/texmf-dist   \
     112            --mandir=/opt/texlive/&texlive-year;/texmf-dist/doc/man &amp;&amp;
    112113make</userinput></screen>
    113114
  • x/installing/x7driver-intel.xml

    r64ecc21 r4d0a7007  
    117117      </para>
    118118
    119 <screen><userinput>./configure $XORG_CONFIG      \
    120             --enable-kms-only \
    121             --enable-uxa      \
    122             --enable-glamor   &amp;&amp;
     119<screen><userinput>./configure $XORG_CONFIG --enable-kms-only &amp;&amp;
    123120make</userinput></screen>
    124121
     
    143140      </para>
    144141
    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 
    157142    </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"
    175 EndSection
    176 
    177 Section "Device"
    178         Identifier "intel"
    179         Driver "intel"
    180         Option "AccelMethod" "glamor"
    181 EndSection</literal>
    182 EOF</userinput></screen>
    183143
    184144    </sect3>
Note: See TracChangeset for help on using the changeset viewer.