From: Emil Velikov via B4 Relay <devnull+emil.l.velikov.gmail.com@kernel.org>
To: linux-modules@vger.kernel.org
Cc: Emil Velikov <emil.l.velikov@gmail.com>
Subject: [PATCH kmod 06/20] man: white space fixes
Date: Tue, 11 Jun 2024 16:05:06 +0100 [thread overview]
Message-ID: <20240611-man-v1-6-bd6864d49639@gmail.com> (raw)
In-Reply-To: <20240611-man-v1-0-bd6864d49639@gmail.com>
From: Emil Velikov <emil.l.velikov@gmail.com>
These were present in the original xml files and I opted to keep them
separate fix to make the transition/comparison easier.
Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
---
man/depmod.8.scd | 4 ++--
man/depmod.d.5.scd | 2 +-
man/modprobe.8.scd | 8 ++++----
man/modprobe.d.5.scd | 4 ++--
4 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/man/depmod.8.scd b/man/depmod.8.scd
index 8cb6449..80cc48d 100644
--- a/man/depmod.8.scd
+++ b/man/depmod.8.scd
@@ -54,8 +54,8 @@ rather than the current kernel version (as returned by *uname -r*).
than running *depmod* again later.
*-o* _outdir_, *--outdir* _outdir_
- Set the output directory where depmod will store any generated file.
- _ outdir_ serves as a root to that location, similar to how _basedir_ is
+ Set the output directory where *depmod* will store any generated file.
+ _outdir_ serves as a root to that location, similar to how _basedir_ is
used. Also this setting takes precedence and if used together with
_basedir_ it will result in the input being that directory, but the output
being the one set by _outdir_.
diff --git a/man/depmod.d.5.scd b/man/depmod.d.5.scd
index 9c42478..4e05b93 100644
--- a/man/depmod.d.5.scd
+++ b/man/depmod.d.5.scd
@@ -50,7 +50,7 @@ override _modulename_ _kernelversion_ _modulesubdirectory_
This command allows you to override which version of a specific module
will be used when more than one module sharing the same name is
processed by the *depmod* command. It is possible to specify one kernel
- or all kernels using the \* wildcard. _ modulesubdirectory_ is the name
+ or all kernels using the \* wildcard. _modulesubdirectory_ is the name
of the subdirectory under @MODULE_DIRECTORY@ (or other module location)
where the target module is installed.
diff --git a/man/modprobe.8.scd b/man/modprobe.8.scd
index 653fbd9..aac3a74 100644
--- a/man/modprobe.8.scd
+++ b/man/modprobe.8.scd
@@ -6,7 +6,7 @@ modprobe - Add and remove modules from the Linux Kernel
# SYNOPSIS
-*modprobe* [*-v*] [*-V*] [*-C *_config-file_] [*-n*] [*-i*] [*-q*] [*-b*] [_modulename_]
+*modprobe* [*-v*] [*-V*] [*-C* _config-file_] [*-n*] [*-i*] [*-q*] [*-b*] [_modulename_]
\ \ \ \ \ \ \ \ \ \[_module parameters_...]
*modprobe* [*-r*] [*-v*] [*-n*] [*-i*] [_modulename_...]
@@ -19,10 +19,10 @@ modprobe - Add and remove modules from the Linux Kernel
*modprobe* intelligently adds or removes a module from the Linux kernel: note
that for convenience, there is no difference between \_ and - in module names
-(automatic underscore conversion is performed). * modprobe* looks in the module
+(automatic underscore conversion is performed). *modprobe* looks in the module
directory @DISTCONFDIR@/`uname -r` for all the modules and other files, except
for the optional configuration files in the /etc/modprobe.d directory (see
-*modprobe.d*(5)). * modprobe* will also use module options specified on the
+*modprobe.d*(5)). *modprobe* will also use module options specified on the
kernel command line in the form of <module>.<option> and blacklists in the form
of modprobe.blacklist=<module>.
@@ -167,7 +167,7 @@ database.
itself. This produces a (possibly empty) set of module filenames, one
per line, each starting with "insmod" and is typically used by
distributions to determine which modules to include when generating
- initrd/initramfs images. * Install* commands which apply are shown
+ initrd/initramfs images. *Install* commands which apply are shown
prefixed by "install". It does not run any of the install commands. Note
that *modinfo*(8) can be used to extract dependencies of a module from the
module itself, but knows nothing of aliases or install commands.
diff --git a/man/modprobe.d.5.scd b/man/modprobe.d.5.scd
index 93b9522..2907175 100644
--- a/man/modprobe.d.5.scd
+++ b/man/modprobe.d.5.scd
@@ -94,7 +94,7 @@ install _modulename_ _command..._
options _modulename_ _option..._
This command allows you to add options to the module _modulename_ (which
might be an alias) every time it is inserted into the kernel: whether
- directly (using *modprobe* _ modulename_) or because the module being
+ directly (using *modprobe* _modulename_) or because the module being
inserted depends on this module.
All options are added together: they can come from an *option* for the
@@ -106,7 +106,7 @@ remove _modulename_ _command..._
softdep _modulename_ pre: _modules..._ post: _modules..._
The *softdep* command allows you to specify soft, or optional, module
- dependencies. _ modulename_ can be used without these optional modules
+ dependencies. _modulename_ can be used without these optional modules
installed, but usually with some features missing. For example, a driver
for a storage HBA might require another module be loaded in order to use
management features.
--
2.45.0
next prev parent reply other threads:[~2024-06-11 15:05 UTC|newest]
Thread overview: 31+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-06-11 15:05 [PATCH kmod 00/20] man: convert to scdoc and minor improvements Emil Velikov via B4 Relay
2024-06-11 15:05 ` [PATCH kmod 01/20] man: add script to generate/compare the xslt vs upcoming scdoc Emil Velikov via B4 Relay
2024-06-11 15:05 ` [PATCH kmod 02/20] man: add scdoc based man pages Emil Velikov via B4 Relay
2024-06-11 15:05 ` [PATCH kmod 03/20] man: build the " Emil Velikov via B4 Relay
2024-06-29 18:04 ` Lucas De Marchi
2024-07-03 22:05 ` Lucas De Marchi
2024-06-11 15:05 ` [PATCH kmod 04/20] man: remove no longer used XML files Emil Velikov via B4 Relay
2024-06-11 15:05 ` [PATCH kmod 05/20] man: add some extra bold/italic annotations Emil Velikov via B4 Relay
2024-06-28 22:27 ` Lucas De Marchi
2024-06-28 22:32 ` Lucas De Marchi
2024-06-11 15:05 ` Emil Velikov via B4 Relay [this message]
2024-06-28 22:30 ` [PATCH kmod 06/20] man: white space fixes Lucas De Marchi
2024-06-11 15:05 ` [PATCH kmod 07/20] man: misc punctuation fixes Emil Velikov via B4 Relay
2024-06-11 15:05 ` [PATCH kmod 08/20] man: some options take an argument, mention that Emil Velikov via B4 Relay
2024-06-11 15:05 ` [PATCH kmod 09/20] man: couple of grammar/language fixes Emil Velikov via B4 Relay
2024-06-11 15:05 ` [PATCH kmod 10/20] man: stop removing DISTCONFDIR lines Emil Velikov via B4 Relay
2024-06-11 15:05 ` [PATCH kmod 11/20] man: depmod.d: document the config file order handling Emil Velikov via B4 Relay
2024-06-29 17:26 ` Lucas De Marchi
2024-06-11 15:05 ` [PATCH kmod 12/20] man: depmod.d: factor out a CONFIGURATION FORMAT section Emil Velikov via B4 Relay
2024-06-11 15:05 ` [PATCH kmod 13/20] man: depmod.d: rework the opening description sentence Emil Velikov via B4 Relay
2024-06-11 15:05 ` [PATCH kmod 14/20] man: depmod: remove hard-coded /etc/depmod.d references Emil Velikov via B4 Relay
2024-06-11 15:05 ` [PATCH kmod 15/20] man: modprobe.d: document the config file order handling Emil Velikov via B4 Relay
2024-06-28 22:55 ` Lucas De Marchi
2024-06-11 15:05 ` [PATCH kmod 16/20] man: modprobe.d: factor out a CONFIGURATION FORMAT section Emil Velikov via B4 Relay
2024-06-11 15:05 ` [PATCH kmod 17/20] man: modprobe.d: mention about MODPROBE_OPTIONS Emil Velikov via B4 Relay
2024-06-29 17:13 ` Lucas De Marchi
2024-06-11 15:05 ` [PATCH kmod 18/20] man: modprobe: remove hard-coded /etc/modprobe.d references Emil Velikov via B4 Relay
2024-06-11 15:05 ` [PATCH kmod 19/20] man: remove the "Maintained by" references Emil Velikov via B4 Relay
2024-06-29 17:51 ` Lucas De Marchi
2024-06-11 15:05 ` [PATCH kmod 20/20] man: list options one per line Emil Velikov via B4 Relay
2024-06-29 18:08 ` [PATCH kmod 00/20] man: convert to scdoc and minor improvements Lucas De Marchi
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20240611-man-v1-6-bd6864d49639@gmail.com \
--to=devnull+emil.l.velikov.gmail.com@kernel.org \
--cc=emil.l.velikov@gmail.com \
--cc=linux-modules@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).