Changes in / [428ca6c:7a27ecb5]


Ignore:
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • bootscripts/ChangeLog

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

    r428ca6c r7a27ecb5  
    88#               DJ Lucas - dj@linuxfromscratch.org
    99# Update      : Bruce Dubbs - bdubbs@linuxfromscratch.org
    10 #               Xi Ruoyao - xry111@xry111.site
    1110#
    12 # Version     : LFS 12.0
     11# Version     : LFS 7.0
    1312#
    1413########################################################################
     
    6665      (exit ${failed})
    6766      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
    9167      exit $failed
    9268      ;;
  • bootscripts/lfs/init.d/udev

    r428ca6c r7a27ecb5  
    88#               DJ Lucas - dj@linuxfromscratch.org
    99# Update      : Bruce Dubbs - bdubbs@linuxfromscratch.org
    10 #               Xi Ruoyao - xry111@xry111.site
    1110#
    12 # Version     : LFS 12.0
     11# Version     : LFS 7.0
    1312#
    1413########################################################################
  • chapter01/changelog.xml

    r428ca6c r7a27ecb5  
    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 
    5443    <listitem>
    5544      <para>2023-07-15</para>
  • chapter08/man-db.xml

    r428ca6c r7a27ecb5  
    112112<screen><userinput remap="make">make</userinput></screen>
    113113
    114     <para>To test the results, issue:</para>
     114    <!-- https://gitlab.com/man-db/man-db/-/issues/25 -->
     115    <para>Many tests are known to fail with groff-1.23.0 or later.  If
     116    you still want to test the results anyway, issue:</para>
    115117
    116118<screen><userinput remap="test">make -k check</userinput></screen>
    117 
    118     <!-- https://gitlab.com/man-db/man-db/-/issues/25 -->
    119     <para>One test named <filename>man1/lexgrog.1</filename> is known
    120     to fail.</para>
    121119
    122120    <para>Install the package:</para>
  • chapter10/kernel.xml

    r428ca6c r7a27ecb5  
    412412    <para>Install the documentation for the Linux kernel:</para>
    413413
    414 <screen><userinput remap="install">cp -r Documentation -T /usr/share/doc/linux-&linux-version;</userinput></screen>
     414<screen><userinput remap="install">install -d /usr/share/doc/linux-&linux-version;
     415cp -r Documentation/* /usr/share/doc/linux-&linux-version;</userinput></screen>
    415416
    416417    <para>It is important to note that the files in the kernel source
  • packages.ent

    r428ca6c r7a27ecb5  
    384384<!ENTITY less-fin-sbu "less than 0.1 SBU">
    385385
    386 <!ENTITY lfs-bootscripts-version "20230722">      <!-- Scripts depend on this format -->
     386<!ENTITY lfs-bootscripts-version "20230716">      <!-- Scripts depend on this format -->
    387387<!ENTITY lfs-bootscripts-size "BOOTSCRIPTS-SIZE KB">
    388388<!ENTITY lfs-bootscripts-url "&downloads-root;lfs-bootscripts-&lfs-bootscripts-version;.tar.xz">
Note: See TracChangeset for help on using the changeset viewer.