Changeset 5d6b72b


Ignore:
Timestamp:
06/03/2021 03:45:09 AM (3 years ago)
Author:
Thomas Trepl (Moody) <thomas@…>
Branches:
ml-11.0, multilib
Children:
f57735e
Parents:
5f76506 (diff), 9804e16 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Automatic merge of trunk into multilib

Files:
4 edited

Legend:

Unmodified
Added
Removed
  • bootscripts/ChangeLog

    r5f76506 r5d6b72b  
     12021-06-02 Thomas Trepl <thomas@linuxfromscratch.org>
     2   * Prevent sendsignals from killing an active mdmon
     3
    142021-04-28 Bruce Dubbs <bdubbs@linuxfromscratch.org>
    25   * Make check_signal more robust.
  • bootscripts/lfs/init.d/sendsignals

    r5f76506 r5d6b72b  
    3030case "${1}" in
    3131   stop)
     32      omit=$(pidof mdmon)
     33      [ -n "$omit" ] && omit="-o $omit"
     34
    3235      log_info_msg "Sending all processes the TERM signal..."
    33       killall5 -15
     36      killall5 -15 $omit
    3437      error_value=${?}
    3538
     
    4346
    4447      log_info_msg "Sending all processes the KILL signal..."
    45       killall5 -9
     48      killall5 -9 $omit
    4649      error_value=${?}
    4750
  • chapter01/changelog.xml

    r5f76506 r5d6b72b  
    4646    -->
    4747    <listitem>
     48      <para>2021-06-02</para>
     49      <itemizedlist>
     50        <listitem>
     51          <para>[thomas] - Tweak sendsignal bootscript to avoid
     52            killing mdmod (if active).</para>
     53        </listitem>
     54      </itemizedlist>
     55    </listitem>
     56
     57    <listitem>
    4858      <para>2021-05-31</para>
    4959      <itemizedlist>
  • packages.ent

    r5f76506 r5d6b72b  
    230230<!ENTITY gcc-fin-sbu "95 SBU (with tests)">
    231231<!ENTITY libquadmath-version "0.0.0">
    232 <!ENTITY libstdcpp-version   "6.0.28">
     232<!ENTITY libstdcpp-version   "6.0.29">
    233233<!ENTITY libitm-version      "1.0.0">
    234234<!ENTITY libatomic-version   "1.2.0">
     
    385385<!ENTITY less-fin-sbu "less than 0.1 SBU">
    386386
    387 <!ENTITY lfs-bootscripts-version "20210428">      <!-- Scripts depend on this format -->
     387<!ENTITY lfs-bootscripts-version "20210602">      <!-- Scripts depend on this format -->
    388388<!ENTITY lfs-bootscripts-size "BOOTSCRIPTS-SIZE KB">       
    389389<!ENTITY lfs-bootscripts-url "&downloads-root;lfs-bootscripts-&lfs-bootscripts-version;.tar.xz">
Note: See TracChangeset for help on using the changeset viewer.