Changeset fa6a7fb5


Ignore:
Timestamp:
07/28/2014 11:14:18 PM (10 years ago)
Author:
Krejzi <krejzi@…>
Branches:
7.6-blfs, 7.6-systemd, kde5-14269, kde5-14686, systemd-13485
Children:
32ccc43c
Parents:
30b47c8
Message:

Bump intel driver to latest version. Add a configuration file to xinit page.

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/branches/systemd@13727 af4574ff-66df-0310-9fd7-8a98e5e911e0

Files:
3 edited
2 moved

Legend:

Unmodified
Added
Removed
  • introduction/welcome/changelog.xml

    r30b47c8 rfa6a7fb5  
    8686        <listitem>
    8787          <para>[krejzi] - Added gnome-shell-extensions-3.12.2.</para>
     88        </listitem>
     89        <listitem>
     90          <para>[krejzi] - Updated to xf86-video-intel-2.99.914.</para>
    8891        </listitem>
    8992      </itemizedlist>
  • x/installing/installing.xml

    r30b47c8 rfa6a7fb5  
    7575  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="xterm.xml"/>
    7676  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="xclock.xml"/>
    77   <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="xinit.xml"/>
     77  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="xinit-systemd.xml"/>
    7878  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="xorg-config.xml"/>
    7979</chapter>
  • x/installing/x7driver-intel-systemd.xml

    r30b47c8 rfa6a7fb5  
    55  %general-entities;
    66
    7   <!ENTITY xorg-intel-driver-version "2.99.911">
     7  <!ENTITY xorg-intel-driver-version "2.99.914">
    88
    99  <!ENTITY xorg-intel-driver-download-http "&xorg-download-http;/driver/xf86-video-intel-&xorg-intel-driver-version;.tar.bz2">
    1010  <!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        "6130343b314e6a43be4bc02461d09fa7">
    12   <!ENTITY xorg-intel-driver-size          "2.6 MB">
     11  <!ENTITY xorg-intel-driver-md5sum        "b53d96cb42fb1d71f0b671dd2064cba4">
     12  <!ENTITY xorg-intel-driver-size          "2.2 MB">
    1313  <!ENTITY xorg-intel-driver-buildsize     "78 MB">
    1414  <!ENTITY xorg-intel-driver-time          "0.4 SBU">
     
    130130<screen><userinput>./configure $XORG_CONFIG      \
    131131            --enable-kms-only \
    132             --with-default-accel=sna &amp;&amp;
     132            --disable-dri3    &amp;&amp;
    133133make</userinput></screen>
    134134
     
    142142
    143143<screen role="root"><userinput>make install</userinput></screen>
     144
    144145    </sect3>
    145146
     
    153154
    154155      <para>
    155         <parameter>--with-default-accel=sna</parameter>: This switch enables
    156         SandyBridge New Acceleration method by default.
     156        <parameter>--disable-dri3</parameter>: This switch disables DRI3
     157        support in the driver as it has been known to be buggy with the
     158        current stack.
    157159      </para>
    158160
  • x/installing/x7driver-systemd.xml

    r30b47c8 rfa6a7fb5  
    172172
    173173  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
    174     href="x7driver-intel.xml"/>
     174    href="x7driver-intel-systemd.xml"/>
    175175
    176176  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  • x/installing/xinit-systemd.xml

    r30b47c8 rfa6a7fb5  
    7676    following commands:</para>
    7777
    78 <screen><userinput>./configure $XORG_CONFIG \
    79             --with-xinitdir=/etc/X11/app-defaults &amp;&amp;
     78<screen><userinput>./configure $XORG_CONFIG --with-xinitdir=/etc/X11/xinit &amp;&amp;
    8079make</userinput></screen>
    8180
     
    8685
    8786<screen role="root"><userinput>make install</userinput></screen>
     87
     88    <para>
     89      Create a configuration file required to use the latest
     90      <application>Xorg Server</application> by running the
     91      following command as the
     92      <systemitem class="username">root</systemitem> user:
     93    </para>
     94
     95<screen role="root"><userinput>cat &gt; /etc/X11/xinit/xserverrc &lt;&lt; "EOF"
     96<literal>#!/bin/sh
     97if [ -z "$XDG_VTNR" ]; then
     98  exec /usr/bin/X -nolisten tcp "$@"
     99else
     100  exec /usr/bin/X -nolisten tcp "$@" vt$XDG_VTNR
     101fi</literal>
     102EOF</userinput></screen>
    88103
    89104  </sect2>
Note: See TracChangeset for help on using the changeset viewer.