Changeset b29b596


Ignore:
Timestamp:
01/06/2020 11:16:28 PM (4 years ago)
Author:
Douglas R. Reno <renodr@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 9.1, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, lazarus, lxqt, 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:
e5937bd
Parents:
3386e38
Message:

Fix problems with libseccomp-2.4.2+/linux-5.4+ and the shmat() syscall in systemd.
Adapt the test suite in libxcb to check-0.13.0

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

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • general/sysutils/systemd.xml

    r3386e38 rb29b596  
    6767    </itemizedlist>
    6868     
    69     <!--
    7069    <bridgehead renderas="sect3">Additional Downloads</bridgehead>
    7170    <itemizedlist spacing="compact">
     
    7372        <para>
    7473         Required patch:
    75          <ulink url="&patch-root;/systemd-&systemd-version;-consolidated_fixes-2.patch"/>
     74         <ulink url="&patch-root;/systemd-&systemd-version;-seccomp_and_cpuaffinity_fix-1.patch"/>
    7675        </para>
    7776      </listitem>
    7877    </itemizedlist>
    79     -->
     78   
    8079    <bridgehead renderas="sect3">systemd Dependencies</bridgehead>
    8180
     
    136135    -->
    137136
    138     <!-- No longer needed -->
    139     <!--
    140     <para>Apply a patch to fix several bugs discovered after release:</para>
    141 
    142 <screen><userinput remap="pre">patch -Np1 -i ../systemd-&systemd-version;-consolidated_fixes-2.patch</userinput></screen>
    143     -->
     137    <para>Apply a patch to fix problems with libseccomp-2.4.2+ and Linux-5.4+:</para>
     138
     139<screen><userinput remap="pre">patch -Np1 -i ../systemd-&systemd-version;-seccomp_and_cpuaffinity_fix-1.patch</userinput></screen>
     140
     141    <!-- The above is only needed on systems with Linux 5.4+ and libseccomp-2.4.2+
     142         This fix is due to syscall changes in libseccomp+Linux 5.4+.
     143         The affected syscall is shmat(), which isn't implemented properly on
     144         i686, and intermittently fails on x86_64. Also, there is a problem with
     145         CPU Affinity + CGroups on Linux-5.4+ that causes issues with the
     146         "test-execute" test. -->
    144147
    145148    <para>Remove an unneeded group,
  • introduction/welcome/changelog.xml

    r3386e38 rb29b596  
    4646      <para>January 6th, 2020</para>
    4747      <itemizedlist>
     48        <listitem>
     49          <para>[renodr] - Adapt the testsuite in libxcb-1.13.1 to
     50          API changes in check-0.13.0 and later.</para>
     51        </listitem>
     52        <listitem revision="systemd">
     53          <para>[renodr] - Add a patch to fix syscall problems in systemd
     54          for systems with libseccomp-2.4.2+ and Linux-5.4+.</para>
     55        </listitem>
    4856        <listitem>
    4957          <para>[bdubbs] - Update to seahorse-3.34.1. Fixes
  • x/installing/libxcb.xml

    r3386e38 rb29b596  
    114114make</userinput></screen>
    115115
     116    <para>
     117      If you wish to run the tests, adapt the test suite to Check-0.13.0+
     118      using the following commands:
     119    </para>
     120
     121<screen><userinput>sed -i "s/TFun tf/const TTest *tt/" tests/check_all.c tests/check_suites.h &amp;&amp;
     122sed -i "s/tcase_add_test(tc, tf);/tcase_add_test(tc, tt);/" tests/check_all.c</userinput></screen>
     123
    116124    <para>To test the results, issue: <command>make check</command>.</para>
    117125
Note: See TracChangeset for help on using the changeset viewer.