diff options
author | Pierre Labastie <pierre.labastie@neuf.fr> | 2022-10-02 09:49:12 +0200 |
---|---|---|
committer | Pierre Labastie <pierre.labastie@neuf.fr> | 2022-10-02 09:49:12 +0200 |
commit | b3daf0157845b5a86e2b6aec8a859a0d75010a3c (patch) | |
tree | f7e027131a99a59a3c411b4d21a97a81bad8bd86 | |
parent | 4349661a7fdf7502916a3d4596a186ee7824307b (diff) |
Typos reported by "rhubarbpieguy"
-rw-r--r-- | bootscripts/lfs/init.d/checkfs | 2 | ||||
-rw-r--r-- | bootscripts/lfs/init.d/mountfs | 2 | ||||
-rw-r--r-- | bootscripts/lfs/init.d/rc | 2 | ||||
-rw-r--r-- | bootscripts/lfs/init.d/template | 2 | ||||
-rw-r--r-- | bootscripts/lfs/lib/services/init-functions | 4 | ||||
-rw-r--r-- | bootscripts/lfs/sysconfig/createfiles | 2 | ||||
-rw-r--r-- | bootscripts/lfs/sysconfig/rc.site | 2 | ||||
-rw-r--r-- | part3intro/toolchaintechnotes.xml | 2 |
8 files changed, 9 insertions, 9 deletions
diff --git a/bootscripts/lfs/init.d/checkfs b/bootscripts/lfs/init.d/checkfs index 584921983..0903a0111 100644 --- a/bootscripts/lfs/init.d/checkfs +++ b/bootscripts/lfs/init.d/checkfs @@ -34,7 +34,7 @@ # Default-Start: S # Default-Stop: # Short-Description: Checks local filesystems before mounting. -# Description: Checks local filesystmes before mounting. +# Description: Checks local filesystems before mounting. # X-LFS-Provided-By: LFS ### END INIT INFO diff --git a/bootscripts/lfs/init.d/mountfs b/bootscripts/lfs/init.d/mountfs index ea413392e..cd9407dc0 100644 --- a/bootscripts/lfs/init.d/mountfs +++ b/bootscripts/lfs/init.d/mountfs @@ -55,7 +55,7 @@ case "${1}" in stop) # Don't unmount virtual file systems like /run log_info_msg "Unmounting all other currently mounted file systems..." - # Ensure any loop devies are removed + # Ensure any loop devices are removed losetup -D umount --all --detach-loop --read-only \ --types notmpfs,nosysfs,nodevtmpfs,noproc,nodevpts >/dev/null diff --git a/bootscripts/lfs/init.d/rc b/bootscripts/lfs/init.d/rc index 7dd503a07..dd855a71b 100644 --- a/bootscripts/lfs/init.d/rc +++ b/bootscripts/lfs/init.d/rc @@ -183,7 +183,7 @@ fi # Start all services marked as S in this runlevel, except if marked as # S in the previous runlevel -# it is the responsabily of the script to not try to start an already running +# it is the responsibility of the script to not try to start an already running # service for i in $( ls -v /etc/rc.d/rc${runlevel}.d/S* 2> /dev/null) do diff --git a/bootscripts/lfs/init.d/template b/bootscripts/lfs/init.d/template index 0a7872d98..4b3c4642a 100644 --- a/bootscripts/lfs/init.d/template +++ b/bootscripts/lfs/init.d/template @@ -45,7 +45,7 @@ case "${1}" in # if it is possible to use killproc killproc fully_qualified_path # if it is not possible to use killproc - # (the daemon shoudn't be stopped by killing it) + # (the daemon shouldn't be stopped by killing it) if pidofproc daemon_name_as_reported_by_ps >/dev/null; then command_to_stop_the_service fi diff --git a/bootscripts/lfs/lib/services/init-functions b/bootscripts/lfs/lib/services/init-functions index ece4d79aa..a86a23d86 100644 --- a/bootscripts/lfs/lib/services/init-functions +++ b/bootscripts/lfs/lib/services/init-functions @@ -155,7 +155,7 @@ start_daemon() fi # Return a value ONLY - # It is the init script's (or distribution's functions) responsibilty + # It is the init script's (or distribution's functions) responsibility # to log messages! case "${retval}" in @@ -271,7 +271,7 @@ killproc() fi # Return a value ONLY - # It is the init script's (or distribution's functions) responsibilty + # It is the init script's (or distribution's functions) responsibility # to log messages! case "${retval}" in diff --git a/bootscripts/lfs/sysconfig/createfiles b/bootscripts/lfs/sysconfig/createfiles index 378fa3ee7..bb744778f 100644 --- a/bootscripts/lfs/sysconfig/createfiles +++ b/bootscripts/lfs/sysconfig/createfiles @@ -21,7 +21,7 @@ # dev creates a new device # <devtype> is either block, char or pipe # block creates a block device -# char creates a character deivce +# char creates a character device # pipe creates a pipe, this will ignore the <major> and # <minor> fields # <major> and <minor> are the major and minor numbers used for diff --git a/bootscripts/lfs/sysconfig/rc.site b/bootscripts/lfs/sysconfig/rc.site index 903aebff5..56b6f8d9b 100644 --- a/bootscripts/lfs/sysconfig/rc.site +++ b/bootscripts/lfs/sysconfig/rc.site @@ -32,7 +32,7 @@ #FAILURE_PREFIX="${FAILURE}*****${NORMAL} " #WARNING_PREFIX="${WARNING} *** ${NORMAL} " -# Manually seet the right edge of message output (characters) +# Manually set the right edge of message output (characters) # Useful when resetting console font during boot to override # automatic screen width detection #COLUMNS=120 diff --git a/part3intro/toolchaintechnotes.xml b/part3intro/toolchaintechnotes.xml index 16b6aafd2..c5b8dc577 100644 --- a/part3intro/toolchaintechnotes.xml +++ b/part3intro/toolchaintechnotes.xml @@ -151,7 +151,7 @@ referred to as the system triplet. Since the vendor field is mostly irrelevant, autoconf allows to omit it. An astute reader may wonder why a <quote>triplet</quote> refers to a four component name. The - reason is the kernel field and the os field originiated from one + reason is the kernel field and the os field originated from one <quote>system</quote> field. Such a three-field form is still valid today for some systems, for example <literal>x86_64-unknown-freebsd</literal>. But for other systems, |