Changeset 3e09569


Ignore:
Timestamp:
02/05/2022 04:45:10 AM (2 years ago)
Author:
Thomas Trepl (Moody) <thomas@…>
Branches:
multilib
Children:
2590473
Parents:
51d1584 (diff), 0a75d62 (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:
7 edited

Legend:

Unmodified
Added
Removed
  • chapter05/binutils-pass1.xml

    r51d1584 r3e09569  
    145145    <para>Install the package:</para>
    146146
    147 <screen><userinput remap="install">make install -j1</userinput></screen>
    148 
    149     <variablelist>
    150       <title>The meaning of the make parameter:</title>
    151 
    152       <varlistentry>
    153         <term><parameter>-j1</parameter></term>
    154         <listitem>
    155           <para>An issue in the building system may cause the installation
    156           to fail with <option>-j N</option> in <envar>MAKEFLAGS</envar>.
    157           Override it to workaround this issue.</para>
    158         </listitem>
    159       </varlistentry>
    160     </variablelist>
     147<screen><userinput remap="install">make install</userinput></screen>
    161148
    162149  </sect2>
  • chapter06/binutils-pass2.xml

    r51d1584 r3e09569  
    107107    to link against zlib from the host distribution:</para>
    108108
    109 <screen><userinput remap="install">make DESTDIR=$LFS install -j1
     109<screen><userinput remap="install">make DESTDIR=$LFS install
    110110install -vm755 libctf/.libs/libctf.so.0.0.0 $LFS/usr/lib</userinput></screen>
    111111
  • chapter07/createfiles.xml

    r51d1584 r3e09569  
    7575daemon:x:6:6:Daemon User:/dev/null:/usr/bin/false
    7676messagebus:x:18:18:D-Bus Message Daemon User:/run/dbus:/usr/bin/false
    77 systemd-bus-proxy:x:72:72:systemd Bus Proxy:/:/usr/bin/false
    7877systemd-journal-gateway:x:73:73:systemd Journal Gateway:/:/usr/bin/false
    7978systemd-journal-remote:x:74:74:systemd Journal Remote:/:/usr/bin/false
  • chapter08/binutils.xml

    r51d1584 r3e09569  
    196196    <para>Install the package:</para>
    197197
    198 <screen><userinput remap="install">make tooldir=/usr install -j1</userinput></screen>
     198<screen><userinput remap="install">make tooldir=/usr install</userinput></screen>
    199199
    200200    <para>Remove useless static libraries:</para>
  • chapter08/systemd.xml

    r51d1584 r3e09569  
    132132          <filename>/etc/group</filename> and
    133133          <filename>/etc/passwd</filename> files. Both files
    134           were created earlier in this chapter.</para>
     134          were created earlier in this chapter. This daemon is not useful
     135          on an LFS system since user accounts are manually created.</para>
    135136        </listitem>
    136137      </varlistentry>
  • chapter09/networkd.xml

    r51d1584 r3e09569  
    185185      (ex: a <command>resolvconf</command> program other than the one
    186186      provided by systemd), the <command>systemd-resolved</command> service
    187       should not be used.</para></note>
     187      should not be used.</para>
     188
     189      <para>To disable systemd-resolved, issue the following command:</para>
     190
     191<screen role="nodump"><userinput>systemctl disable systemd-resolved</userinput></screen></note>
    188192
    189193      <para>When using <command>systemd-resolved</command> for DNS
    190194      configuration, it creates the file
    191       <filename>/run/systemd/resolve/resolv.conf</filename>. Create a
     195      <filename>/run/systemd/resolve/resolv.conf</filename>.</para>
     196      <!--Create a
    192197      symlink in <filename>/etc</filename> to use the generated file:</para>
    193198
    194199<screen><userinput>ln -sfv /run/systemd/resolve/resolv.conf /etc/resolv.conf</userinput></screen>
    195 
     200      At least in systemd-250, this file gets created on first bootup.
     201      -->
    196202    </sect3>
    197203
  • lfs-latest-git.php

    r51d1584 r3e09569  
    134134if ( $package == "Jinja"      ) $dirpath = "https://pypi.python.org/pypi/Jinja2/";
    135135if ( $package == "systemd"    ) $dirpath = "https://github.com/systemd/systemd/releases";
    136 if ( $package == "tcl"        ) $dirpath = "https://sourceforge.net/projects/tcl/files";
     136//if ( $package == "tcl"        ) $dirpath = "https://sourceforge.net/projects/tcl/files";
     137if ( $package == "tcl"        ) $dirpath = "https://www.tcl.tk/software/tcltk/download.html";
    137138if ( $package == "util-linux" ) $dirpath = max_parent( $dirpath, "v." );
    138139if ( $package == "vim"        ) $dirpath = "https://github.com/vim/vim/tags";
     
    265266
    266267  if ( $package == "tcl" )
    267      return find_max( $lines, "/tcl/", "/^.*tcl(\d[\d\.]*\d)-src.*$/" );
     268     return find_max( $lines, "/tcl\d/", "/^.*tcl(\d\.[\d\.]*\d)-src.*$/" );
    268269
    269270  if ( $package == "ninja" )
Note: See TracChangeset for help on using the changeset viewer.