commit: d5f8f9c175332873a139e5d89197acca314aaf8c
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 8 05:33:15 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Aug 8 05:33:15 2023 +0000
URL: https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=d5f8f9c1
Fix build->built
Signed-off-by: Sam James <sam <AT> gentoo.org>
doc/genkernel.8.txt | 2 +-
gen_configkernel.sh | 2 +-
genkernel | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/doc/genkernel.8.txt b/doc/genkernel.8.txt
index 3a1ae58..6f9a64f 100644
--- a/doc/genkernel.8.txt
+++ b/doc/genkernel.8.txt
@@ -198,7 +198,7 @@ specified.
*--*[*no-*]*module-rebuild*::
Runs, or does not run "emerge --ignore-default-opts --buildpkg=n
--usepkg=n --quiet-build=y @module-rebuild"
to build out-of-tree modules when possible, i.e. when non-static
- kernel and modules will be build, installed, *--kernel-modules-prefix* is
not set.
+ kernel and modules will be built, installed, *--kernel-modules-prefix* is
not set.
NOTE: Command can be customized using '--module-rebuild-cmd' command-line
argument or 'MODULEREBUILD_CMD' in '/etc/genkernel.conf'.
diff --git a/gen_configkernel.sh b/gen_configkernel.sh
index 44a06b3..ebb3a44 100755
--- a/gen_configkernel.sh
+++ b/gen_configkernel.sh
@@ -167,7 +167,7 @@ set_initramfs_compression_method() {
local cfg_DECOMPRESS_SUPPORT=$(kconfig_get_opt
"${kernel_config}" "CONFIG_RD_${COMPRESS_INITRD_TYPE}")
if [[ "${cfg_DECOMPRESS_SUPPORT}" != "y" ]]
then
- gen_die "The kernel config '${kernel_config}' this
initramfs will be build for cannot decompress set --compress-initrd-type
'${COMPRESS_INITRD_TYPE}'!"
+ gen_die "The kernel config '${kernel_config}' this
initramfs will be built for cannot decompress set --compress-initrd-type
'${COMPRESS_INITRD_TYPE}'!"
fi
# If we are not building kernel, there is no point in
diff --git a/genkernel b/genkernel
index 0e3fc55..b32d0a3 100755
--- a/genkernel
+++ b/genkernel
@@ -207,7 +207,7 @@ fi
if isTrue "${KERNCACHE_IS_VALID}" && ! isTrue "${CMD_INSTALL}" && ! isTrue
"${BUILD_RAMDISK}"
then
error_msg="Nothing to do: Selected action does not include building
initramfs."
- error_msg+=" Because kerncache is valid, no kernel will be build."
+ error_msg+=" Because kerncache is valid, no kernel will be built."
error_msg+=" However, due to set --no-install option, we will not even
install kernel binary from kerncache."
gen_die "${error_msg}"
fi