Changeset b3d94f3


Ignore:
Timestamp:
07/22/2023 10:30:15 PM (10 months ago)
Author:
Thomas Trepl <thomas@…>
Branches:
multilib
Children:
7f440a6
Parents:
9f0c94b (diff), e5c08bf (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:
6 edited

Legend:

Unmodified
Added
Removed
  • bootscripts/ChangeLog

    r9f0c94b rb3d94f3  
     12023-07-22 Xi Ruoyao <xry111@xry111.site>
     2   * In mountvirtfs, create symlinks /dev/{fd,std{in,out,err}} and
     3     /dev/core (optional).
     4
     52023-07-16 Xi Ruoyao <xry111@xry111.site>
     6   * In udev, set SYSTEMD_LOG_TARGET=kmsg so systemd-udevd will correctly
     7     log messages.
     8
    192023-07-15 Xi Ruoyao <xry111@xry111.site>
    210   * Use /bin/udevadm instead of /sbin/udevadm.
  • bootscripts/lfs/init.d/mountvirtfs

    r9f0c94b rb3d94f3  
    88#               DJ Lucas - dj@linuxfromscratch.org
    99# Update      : Bruce Dubbs - bdubbs@linuxfromscratch.org
     10#               Xi Ruoyao - xry111@xry111.site
    1011#
    11 # Version     : LFS 7.0
     12# Version     : LFS 12.0
    1213#
    1314########################################################################
     
    6566      (exit ${failed})
    6667      evaluate_retval
     68      if [ "${failed}" = 1 ]; then
     69         exit 1
     70      fi
     71
     72      log_info_msg "Create symlinks in /dev targeting /proc: ${INFO}/dev/stdin"
     73      ln -sf /proc/self/fd/0 /dev/stdin  || failed=1
     74
     75      log_info_msg2 " ${INFO}/dev/stdout"
     76      ln -sf /proc/self/fd/1 /dev/stdout || failed=1
     77
     78      log_info_msg2 " ${INFO}/dev/stderr"
     79      ln -sf /proc/self/fd/2 /dev/stderr || failed=1
     80
     81      log_info_msg2 " ${INFO}/dev/fd"
     82      ln -sf /proc/self/fd   /dev/fd     || failed=1
     83
     84      if [ -e /proc/kcore ]; then
     85         log_info_msg2 " ${INFO}/dev/core"
     86         ln -sf /proc/kcore  /dev/core   || failed=1
     87      fi
     88
     89      (exit ${failed})
     90      evaluate_retval
    6791      exit $failed
    6892      ;;
  • bootscripts/lfs/init.d/udev

    r9f0c94b rb3d94f3  
    88#               DJ Lucas - dj@linuxfromscratch.org
    99# Update      : Bruce Dubbs - bdubbs@linuxfromscratch.org
     10#               Xi Ruoyao - xry111@xry111.site
    1011#
    11 # Version     : LFS 7.0
     12# Version     : LFS 12.0
    1213#
    1314########################################################################
  • chapter01/changelog.xml

    r9f0c94b rb3d94f3  
    4141    -->
    4242
     43    <listitem revision='sysv'>
     44      <para>2023-07-22</para>
     45      <itemizedlist>
     46        <listitem revision='sysv'>
     47          <para>[xry111] - Make the mountvirtfs bootscript create essential
     48          symlinks in /dev.  Fixes
     49          <ulink url='&lfs-ticket-root;5289'>#5289</ulink>.</para>
     50        </listitem>
     51      </itemizedlist>
     52    </listitem>
     53
    4354    <listitem>
    4455      <para>2023-07-15</para>
  • chapter10/kernel.xml

    r9f0c94b rb3d94f3  
    464464    <para>Install the documentation for the Linux kernel:</para>
    465465
    466 <screen><userinput remap="install">install -d /usr/share/doc/linux-&linux-version;
    467 cp -r Documentation/* /usr/share/doc/linux-&linux-version;</userinput></screen>
     466<screen><userinput remap="install">cp -r Documentation -T /usr/share/doc/linux-&linux-version;</userinput></screen>
    468467
    469468    <para>It is important to note that the files in the kernel source
  • packages.ent

    r9f0c94b rb3d94f3  
    393393<!ENTITY less-fin-sbu "less than 0.1 SBU">
    394394
    395 <!ENTITY lfs-bootscripts-version "20230716">      <!-- Scripts depend on this format -->
     395<!ENTITY lfs-bootscripts-version "20230722">      <!-- Scripts depend on this format -->
    396396<!ENTITY lfs-bootscripts-size "BOOTSCRIPTS-SIZE KB">
    397397<!ENTITY lfs-bootscripts-url "&downloads-root;lfs-bootscripts-&lfs-bootscripts-version;.tar.xz">
Note: See TracChangeset for help on using the changeset viewer.