Changeset 777b5cb


Ignore:
Timestamp:
10/04/2019 02:24:52 AM (5 years ago)
Author:
Douglas R. Reno <renodr@…>
Branches:
10.0, 10.0-rc1, 10.1, 10.1-rc1, 11.0, 11.0-rc1, 11.0-rc2, 11.0-rc3, 11.1, 11.1-rc1, 11.2, 11.2-rc1, 11.3, 11.3-rc1, 12.0, 12.0-rc1, 12.1, 12.1-rc1, 9.1, arm, bdubbs/gcc13, ml-11.0, multilib, renodr/libudev-from-systemd, s6-init, trunk, xry111/arm64, xry111/arm64-12.0, xry111/clfs-ng, xry111/lfs-next, xry111/loongarch, xry111/loongarch-12.0, xry111/loongarch-12.1, xry111/mips64el, xry111/pip3, xry111/rust-wip-20221008, xry111/update-glibc
Children:
11e7880
Parents:
390ad20
Message:

Add a consolidated patch to fix several bugs in systemd.

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@11680 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

Files:
5 edited

Legend:

Unmodified
Added
Removed
  • chapter01/changelog.xml

    r390ad20 r777b5cb  
    4343    appropriate for the entry or if needed the entire day's listitem.
    4444       -->
     45    <listitem revision="systemd">
     46      <para>2019-10-03</para>
     47      <itemizedlist>
     48        <listitem>
     49          <para>[renodr] - Add a consolidated patch to fix several
     50          problems with the new version of systemd, including bugs
     51          in udev, filesystem mounting (with Samba-4.11), hardware
     52          database updates, timesync fixes with adjtime as is set
     53          in LFS, and bugs with network management and domain
     54          resolution.</para>
     55        </listitem>
     56      </itemizedlist>
     57    </listitem>
    4558
    4659    <listitem>
  • chapter03/patches.xml

    r390ad20 r777b5cb  
    119119
    120120    <varlistentry revision="systemd">
    121       <term>Systemd udev evdev fix - <token>&systemd-udev-patch-size;</token>:</term>
     121      <term>Systemd Consolidated Patch - <token>&systemd-consolidated-patch-size;</token>:</term>
    122122      <listitem>
    123         <para>Download: <ulink url="&patches-root;&systemd-udev-patch;"/></para>
    124         <para>MD5 sum: <literal>&systemd-udev-patch-md5;</literal></para>
     123        <para>Download: <ulink url="&patches-root;&systemd-consolidated-patch;"/></para>
     124        <para>MD5 sum: <literal>&systemd-consolidated-patch-md5;</literal></para>
    125125      </listitem>
    126126    </varlistentry>
  • chapter06/systemd.xml

    r390ad20 r777b5cb  
    4141    <title>Installation of systemd</title>
    4242
    43     <para>First, apply a patch to fix issues with udev and evdev
    44     device node assignment:</para>
    45 
    46 <screen><userinput remap="pre">patch -Np1 -i ../systemd-&systemd-version;-udev_fix-1.patch</userinput></screen>
     43    <para>First, apply a patch to fix various bugs since the release
     44    of systemd-243.</para>
     45
     46<screen><userinput remap="pre">patch -Np1 -i ../systemd-&systemd-version;-consolidated_fixes-1.patch</userinput></screen>
    4747
    4848    <para>Create a symlink to work around missing xsltproc:</para>
     
    208208
    209209<screen><userinput remap="adjust">systemctl preset-all</userinput></screen>
    210              
    211     <para>Remove symbolic links to Util-Linux libraries:</para>
     210
     211    <para>Disable a service that is known to cause problems with systems that
     212    use a network configuration other than what is provided by
     213    systemd-networkd:</para>
     214    <!-- Observed halting startup with dhcpcd handling the primary NIC -->
     215 
     216<screen><userinput remap="adjust">systemctl disable systemd-time-wait-sync.service</userinput></screen>
     217
     218    <para>Prevent systemd from resetting the maximum PID value which causes
     219    some problems with packages and units in BLFS:</para>
     220    <!-- FCRON in particular -->
     221
     222<screen><userinput remap="adjust">rm -f /etc/sysctl.d/50-pid-max.conf</userinput></screen>
     223
     224    <para>Cleanup symbolic links to Util-Linux libraries:</para>
    212225
    213226<screen><userinput remap="adjust">rm -fv /usr/lib/lib{blkid,uuid,mount}.so*</userinput></screen>
  • general.ent

    r390ad20 r777b5cb  
    1 <!ENTITY version         "SVN-20190929">
     1<!ENTITY version         "SVN-20191003">
    22<!ENTITY short-version   "svn">  <!-- Used below in &blfs-book;
    33                                      Change to x.y for release but not -rc releases -->
    44<!ENTITY generic-version "development"> <!-- Use "development"  or "x.y[-pre{x}]" -->
    55
    6 <!ENTITY versiond        "20190929-systemd">
     6<!ENTITY versiond        "20191003-systemd">
    77<!ENTITY short-versiond  "systemd">
    88<!ENTITY generic-versiond "systemd">
    99
    10 <!ENTITY releasedate     "September 29th, 2019">
     10<!ENTITY releasedate     "October 3rd, 2019">
    1111
    1212<!ENTITY copyrightdate   "1999-2019"><!-- jhalfs needs a literal dash, not &ndash; -->
  • patches.ent

    r390ad20 r777b5cb  
    5858<!ENTITY sysvinit-consolidated-patch-size "2.4 KB">
    5959
    60 <!ENTITY systemd-udev-patch "systemd-&systemd-version;-udev_fix-1.patch">
    61 <!ENTITY systemd-udev-patch-md5 "91e4cd41dee57dc6ac9817b8f4f724a6">
    62 <!ENTITY systemd-udev-patch-size "12 KB">
     60<!ENTITY systemd-consolidated-patch "systemd-&systemd-version;-consolidated_fixes-1.patch">
     61<!ENTITY systemd-consolidated-patch-md5 "d1f60dcbd53222eecfc58e4e95ef60ab">
     62<!ENTITY systemd-consolidated-patch-size "60 KB">
    6363
Note: See TracChangeset for help on using the changeset viewer.