Changes in / [b3d94f3:9f0c94b]


Ignore:
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • bootscripts/ChangeLog

    rb3d94f3 r9f0c94b  
    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

    rb3d94f3 r9f0c94b  
    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

    rb3d94f3 r9f0c94b  
    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

    rb3d94f3 r9f0c94b  
    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>
  • chapter10/kernel.xml

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

    rb3d94f3 r9f0c94b  
    393393<!ENTITY less-fin-sbu "less than 0.1 SBU">
    394394
    395 <!ENTITY lfs-bootscripts-version "20230722">      <!-- Scripts depend on this format -->
     395<!ENTITY lfs-bootscripts-version "20230716">      <!-- 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.