Changeset f3b2f16


Ignore:
Timestamp:
10/02/2022 10:30:10 PM (19 months ago)
Author:
Thomas Trepl (Moody) <thomas@…>
Branches:
multilib
Children:
713ad54
Parents:
c093e6b (diff), 6582ddc5 (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:
11 edited

Legend:

Unmodified
Added
Removed
  • bootscripts/lfs/init.d/checkfs

    rc093e6b rf3b2f16  
    3535# Default-Stop:
    3636# Short-Description:   Checks local filesystems before mounting.
    37 # Description:         Checks local filesystmes before mounting.
     37# Description:         Checks local filesystems before mounting.
    3838# X-LFS-Provided-By:   LFS
    3939### END INIT INFO
  • bootscripts/lfs/init.d/mountfs

    rc093e6b rf3b2f16  
    5656      # Don't unmount virtual file systems like /run
    5757      log_info_msg "Unmounting all other currently mounted file systems..."
    58       # Ensure any loop devies are removed
     58      # Ensure any loop devices are removed
    5959      losetup -D
    6060      umount --all --detach-loop --read-only \
  • bootscripts/lfs/init.d/rc

    rc093e6b rf3b2f16  
    184184# Start all services marked as S in this runlevel, except if marked as
    185185# S in the previous runlevel
    186 # it is the responsabily of the script to not try to start an already running
     186# it is the responsibility of the script to not try to start an already running
    187187# service
    188188for i in $( ls -v /etc/rc.d/rc${runlevel}.d/S* 2> /dev/null)
  • bootscripts/lfs/init.d/template

    rc093e6b rf3b2f16  
    4646      killproc fully_qualified_path
    4747    # if it is not possible to use killproc
    48     # (the daemon shoudn't be stopped by killing it)
     48    # (the daemon shouldn't be stopped by killing it)
    4949      if pidofproc daemon_name_as_reported_by_ps >/dev/null; then
    5050         command_to_stop_the_service
  • bootscripts/lfs/lib/services/init-functions

    rc093e6b rf3b2f16  
    156156
    157157        # Return a value ONLY
    158         # It is the init script's (or distribution's functions) responsibilty
     158        # It is the init script's (or distribution's functions) responsibility
    159159        # to log messages!
    160160        case "${retval}" in
     
    272272
    273273    # Return a value ONLY
    274     # It is the init script's (or distribution's functions) responsibilty
     274    # It is the init script's (or distribution's functions) responsibility
    275275    # to log messages!
    276276    case "${retval}" in
  • bootscripts/lfs/sysconfig/createfiles

    rc093e6b rf3b2f16  
    2222#               <devtype> is either block, char or pipe
    2323#                       block creates a block device
    24 #                       char creates a character deivce
     24#                       char creates a character device
    2525#                       pipe creates a pipe, this will ignore the <major> and
    2626#           <minor> fields
  • bootscripts/lfs/sysconfig/rc.site

    rc093e6b rf3b2f16  
    3333#WARNING_PREFIX="${WARNING} *** ${NORMAL} "
    3434
    35 # Manually seet the right edge of message output (characters)
     35# Manually set the right edge of message output (characters)
    3636# Useful when resetting console font during boot to override
    3737# automatic screen width detection
  • chapter03/introduction.xml

    rc093e6b rf3b2f16  
    105105  methods listed above.</para>
    106106
     107  <para>If the packages and patches are downloaded as a non-&root; user,
     108  these files will be owned by the user.  The file system records the
     109  owner by its UID, and the UID of a normal user in the host distro is
     110  not assigned in LFS.  So the files will be left owned by an unnamed UID
     111  in the final LFS system.  If you won't assign the same UID for your user
     112  in the LFS system, change the owners of these files to &root; now to
     113  avoid this issue:</para>
     114
     115<screen role="nodump"><userinput>chown root:root $LFS/sources/*</userinput></screen>
     116
    107117</sect1>
  • chapter08/pkgmgt.xml

    rc093e6b rf3b2f16  
    9595      you should remove the library file from the previously installed version
    9696      (<filename class='libraryfile'>libfoo.so.1.25</filename> in this case).
    97       Otherwise, a <command>ldconfig</command> command (invokeed by yourself from the command
     97      Otherwise, a <command>ldconfig</command> command (invoked by yourself from the command
    9898      line, or by the installation of some package) will reset the symlink
    9999      <filename class='libraryfile'>libfoo.so.1</filename> to point to
     
    108108      linked to the shared library should be restarted.  The following
    109109      command, run as <systemitem class="username">root</systemitem> after
    110       the update is cmplete, will list which processes are using the old versions of those libraries
     110      the update is complete, will list which processes are using the old versions of those libraries
    111111      (replace <replaceable>libfoo</replaceable> with the name of the
    112112      library):</para>
  • chapter11/reboot.xml

    rc093e6b rf3b2f16  
    108108
    109109<screen><userinput>umount -v $LFS/dev/pts
     110mountpoint -q $LFS/dev/shm &amp;&amp; umount $LFS/dev/shm
    110111umount -v $LFS/dev
    111112umount -v $LFS/run
  • part3intro/toolchaintechnotes.xml

    rc093e6b rf3b2f16  
    152152      irrelevant, autoconf allows to omit it. An astute reader may wonder
    153153      why a <quote>triplet</quote> refers to a four component name. The
    154       reason is the kernel field and the os field originiated from one
     154      reason is the kernel field and the os field originated from one
    155155      <quote>system</quote> field.  Such a three-field form is still valid
    156156      today for some systems, for example
Note: See TracChangeset for help on using the changeset viewer.