Bug#1106559: unblock: linux-base/4.12
Package: release.debian.org
Severity: normal
X-Debbugs-Cc: linux-base@packages.debian.org, debian-kernel@lists.debian.org
Control: affects -1 + src:linux-base
User: release.debian.org@packages.debian.org
Usertags: unblock
Please unblock package linux-base
[ Reason ]
1. Add linux-run-hooks command which will allow for kernel hooks
under /usr/share/kernel in forky.
2. Increase maximum number of memory mappings per process
(vm.max_map_count sysctl).
[ Impact ]
1. Some time last year it was proposed to add support for kernel
installation and removal hooks under /usr/share/kernel as well as the
currently supported /etc/kernel. This has been implemented in the
upstream kernel (with the "make deb-pkg" target) but I wasn't able to
take the time to implement this for Debian official packages until
recently. If we don't include this in trixie then nothing will be
able to depend on it until forky+1.
2. Some applications fail or even crash with the current default limit
on memory mappings. This can be avoided with a local configuration
change, but only if the problem is understood. It has specifically
been reported that some games running under WINE or Proton crash with
the default value.
[ Tests ]
1. I have manually tested linux-run-hooks.
2. This change was already made by Arch, Fedora, and Ubuntu last year
without apparent problems.
[ Risks ]
1. linux-run-hooks is a fairly simple wrapper for run-parts. While it
is possible that it has some logic errors, it is not that likely.
2. If a process uses > 65530 mappings (the default limit) then a core
dump of that process uses "extended section numbering" rather than the
16-bit section numbers of the original ELF specification. The Linux
kernel, binutils, and gdb have supported this since 2010 but it is
conceivable that there are still tools that don't support it.
[ Checklist ]
[X] all changes are documented in the d/changelog
[X] I reviewed all changes and I approve them
[X] attach debdiff against the package in testing
[ Other info ]
unblock linux-base/4.12
diff -Nru linux-base-4.11/bin/linux-check-removal linux-base-4.12/bin/linux-check-removal
--- linux-base-4.11/bin/linux-check-removal 2025-01-01 13:33:30.000000000 +0100
+++ linux-base-4.12/bin/linux-check-removal 2025-05-25 17:54:49.000000000 +0200
@@ -25,15 +25,15 @@
sub usage {
my $fh = shift;
print $fh (<< "EOT");
-Usage: $0 VERSION
+Usage: $0 KERNEL-VER
This command is intended to be called from the prerm maintainer scripts
of Linux kernel packages.
-The VERSION argument must be the kernel version string as shown by
-'uname -r' and used in filenames.
+The KERNEL-VER argument must be the kernel version string as shown by
+'uname -r' and used in filenames, not the package version.
-If the currently running kernel matches VERSION, linux-check-removal
+If the currently running kernel matches KERNEL-VER, linux-check-removal
will normally prompt the user to confirm this potentially dangerous
action and will fail if the user chooses to abort. However, if the
current environment is in a chroot or container, or if debconf
diff -Nru linux-base-4.11/bin/linux-run-hooks linux-base-4.12/bin/linux-run-hooks
--- linux-base-4.11/bin/linux-run-hooks 1970-01-01 01:00:00.000000000 +0100
+++ linux-base-4.12/bin/linux-run-hooks 2025-05-25 17:54:49.000000000 +0200
@@ -0,0 +1,116 @@
+#!/usr/bin/perl
+
+# Copyright 2025 Ben Hutchings
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <https://www.gnu.org/licenses/>.
+
+use strict;
+use warnings;
+
+sub usage {
+ my $fh = shift;
+ print $fh (<< "EOT");
+Usage: $0 image MAINT-SCRIPT KERNEL-VER IMAGE-PATH -- MAINT-PARAMS ...
+ $0 headers MAINT-SCRIPT KERNEL-VER -- MAINT-PARAMS ...
+
+This command is intended to be called from the maintainer scripts of
+Linux kernel image and headers packages. It executes hooks installed
+in the appropriate subdirectories of /etc/kernel and
+/usr/share/kernel.
+
+The MAINT-SCRIPT argument must be the name of the maintainer script:
+preinst, postinst, prerm, or postrm.
+
+The KERNEL-VER argument must be the kernel version string as shown by
+'uname -r' and used in filenames, not the package version.
+
+The IMAGE-PATH argument must be the absolute filename of the kernel
+image.
+
+The MAINT-PARAMS arguments must be the parameters received by the
+maintainer script.
+EOT
+}
+
+sub usage_error {
+ usage(*STDERR{IO});
+ exit 2;
+}
+
+sub run_hooks {
+ my ($type, $hook_args, $maint_params) = @_;
+ my @hook_dirs;
+
+ # run-parts handling of directory arguments differs between
+ # versions of debianutils:
+ #
+ # <= 5.20: must pass exactly 1 existing directory name
+ # == 5.21: must pass 1 or more existing directory names
+ # >= 5.22: must pass 1 or more directory names; warning
+ # emitted for non-existent directories
+ #
+ # So, to be backward-compatible, we only pass directories that
+ # exist and do not run it at all if none exist. We rely on
+ # packages not to install hooks under /usr/share/kernel without a
+ # dependency or other guarantee that debianutils is >= 5.21.
+ for my $dir ("/etc/kernel/$type.d",
+ "/usr/share/kernel/$type.d") {
+ push @hook_dirs, $dir if -d $dir;
+ }
+ if (@hook_dirs == 0) {
+ exit 0;
+ }
+
+ $ENV{'DEB_MAINT_PARAMS'} = join(' ', @$maint_params);
+ exec 'run-parts', '--report', '--exit-on-error',
+ map({"--arg=$_"} @$hook_args),
+ @hook_dirs;
+
+ # run-parts could not be executed. exec already reported an error
+ # message, so just return failure.
+ exit 1;
+}
+
+if (@ARGV == 0) {
+ usage_error();
+}
+if ($ARGV[0] eq 'help' or grep({$_ eq '--help'} @ARGV)) {
+ usage(*STDOUT{IO});
+ exit 0;
+}
+
+my ($pkg_type, $script_type) = @ARGV;
+if (!defined($pkg_type)
+ or ($pkg_type ne 'image' and $pkg_type ne 'headers')
+ or !defined($script_type)
+ or ($script_type !~ /^(?:pre|post)(?:inst|rm)$/)) {
+ usage_error();
+}
+my ($hook_type, $n_hook_args);
+if ($pkg_type eq 'image') {
+ $hook_type = $script_type;
+ $n_hook_args = 2;
+} else {
+ $hook_type = "${pkg_type}_${script_type}";
+ $n_hook_args = 1;
+}
+my ($arg_sep_index) = grep({ $ARGV[$_] eq '--' } 2..$#ARGV);
+if (!defined($arg_sep_index)
+ or $arg_sep_index != 2 + $n_hook_args) {
+ usage_error();
+}
+
+run_hooks($hook_type,
+ [@ARGV[2 .. $arg_sep_index-1]],
+ [@ARGV[$arg_sep_index+1 .. $#ARGV]]);
diff -Nru linux-base-4.11/bin/linux-update-symlinks linux-base-4.12/bin/linux-update-symlinks
--- linux-base-4.11/bin/linux-update-symlinks 2025-01-01 13:33:30.000000000 +0100
+++ linux-base-4.12/bin/linux-update-symlinks 2025-05-25 17:54:49.000000000 +0200
@@ -26,15 +26,15 @@
sub usage {
my $fh = shift;
print $fh (<< "EOT");
-Usage: $0 {install|upgrade|remove} VERSION IMAGE-PATH
+Usage: $0 {install|upgrade|remove} KERNEL-VER IMAGE-PATH
This command is intended to be called from the postinst and postrm
maintainer scripts of Linux kernel packages. The postinst script must
pass the first argument 'install' or 'upgrade' depending on whether a
fresh installation or an upgrade has taken place.
-The VERSION argument must be the kernel version string as shown by
-'uname -r' and used in filenames.
+The KERNEL-VER argument must be the kernel version string as shown by
+'uname -r' and used in filenames, not the package version.
The IMAGE-PATH argument must be the absolute filename of the kernel
image.
diff -Nru linux-base-4.11/bin/linux-version linux-base-4.12/bin/linux-version
--- linux-base-4.11/bin/linux-version 2025-01-01 13:33:30.000000000 +0100
+++ linux-base-4.12/bin/linux-version 2025-05-25 17:54:49.000000000 +0200
@@ -24,12 +24,12 @@
sub usage {
my $fh = shift;
print $fh (<< "EOT");
-Usage: $0 compare VERSION1 OP VERSION2
- $0 sort [--reverse] [VERSION1 VERSION2 ...]
+Usage: $0 compare KERNEL-VER-1 OP KERNEL-VER-2
+ $0 sort [--reverse] [KERNEL-VER-1 KERNEL-VER-2 ...]
$0 list [--paths]
-The version arguments should be kernel version strings as shown by
-'uname -r' and used in filenames.
+The version arguments must be kernel version strings as shown by
+'uname -r' and used in filenames, not package versions.
The valid comparison operators are: lt le eq ge gt
EOT
diff -Nru linux-base-4.11/debian/changelog linux-base-4.12/debian/changelog
--- linux-base-4.11/debian/changelog 2025-01-01 13:33:30.000000000 +0100
+++ linux-base-4.12/debian/changelog 2025-05-25 21:16:36.000000000 +0200
@@ -1,3 +1,18 @@
+linux-base (4.12) unstable; urgency=medium
+
+ * d/changelog: Word-wrap previous entry to under 80 characters
+ * d/copyright: Replace old FSF addresses with current GNU license URL
+ * Add linux-run-hooks command for use by package maintainer scripts
+ * man: Fix some minor formatting issues, thanks to Bjarni Ingi Gislason
+ (Closes: #1095744, #1100702)
+ * kernel-img.conf(5): Remove documentation of kernel-package
+ (Closes: #1099472)
+ * kernel-img.conf(5): Simplify description of support status
+ * linux-sysctl-defaults: Increase vm.max_map_count to 1048576
+ (Closes: #1076510)
+
+ -- Ben Hutchings <benh@debian.org> Sun, 25 May 2025 21:16:36 +0200
+
linux-base (4.11) unstable; urgency=medium
[ Carles Pina i Estany ]
@@ -8,9 +23,9 @@
* Set Priority: important for linux-sysctl-defaults
linux-sysctl-defaults should be installed by default on the typical Debian
system. Although it is recommended by several components of the default
- install, Recommends are not applied during debootstrap, so it isn't installed.
- Raising the priority to important ensures that it's installed in expected
- places. (Closes: #1090811)
+ install, Recommends are not applied during debootstrap, so it isn't
+ installed. Raising the priority to important ensures that it's installed
+ in expected places. (Closes: #1090811)
[ Salvatore Bonaccorso ]
* Declare compliance with Debian policy 4.7.0
diff -Nru linux-base-4.11/debian/copyright linux-base-4.12/debian/copyright
--- linux-base-4.11/debian/copyright 2025-01-01 13:33:30.000000000 +0100
+++ linux-base-4.12/debian/copyright 2025-05-03 03:29:41.000000000 +0200
@@ -134,8 +134,7 @@
GNU General Public License for more details.
.
You should have received a copy of the GNU General Public License
- along with this package; if not, write to the Free Software
- Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ along with this program. If not, see <https://www.gnu.org/licenses/>.
.
On Debian systems, the complete text of the GNU General Public License
version 2 can be found in `/usr/share/common-licenses/GPL-2'.
@@ -151,9 +150,8 @@
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
.
- You should have received a copy of the GNU Lesser General Public
- License along with this library; if not, write to the Free Software
- Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ You should have received a copy of the GNU Lesser General Public License
+ along with this program. If not, see <https://www.gnu.org/licenses/>.
.
On Debian systems, the complete text of the GNU Lesser General Public
License version 2.1 can be found in `/usr/share/common-licenses/LGPL-2.1'.
diff -Nru linux-base-4.11/debian/linux-base.install linux-base-4.12/debian/linux-base.install
--- linux-base-4.11/debian/linux-base.install 2025-01-01 13:33:30.000000000 +0100
+++ linux-base-4.12/debian/linux-base.install 2025-05-25 17:54:49.000000000 +0200
@@ -1,4 +1,5 @@
bin/linux-check-removal usr/bin
+bin/linux-run-hooks usr/bin
bin/linux-update-symlinks usr/bin
bin/linux-version usr/bin
lib/DebianLinux.pm usr/share/perl5
diff -Nru linux-base-4.11/debian/linux-base.manpages linux-base-4.12/debian/linux-base.manpages
--- linux-base-4.11/debian/linux-base.manpages 2025-01-01 13:33:30.000000000 +0100
+++ linux-base-4.12/debian/linux-base.manpages 2025-05-25 17:54:49.000000000 +0200
@@ -2,5 +2,6 @@
man/kernel-img.conf.de.5
man/kernel-img.conf.fr.5
man/linux-check-removal.1
+man/linux-run-hooks.1
man/linux-update-symlinks.1
man/linux-version.1
diff -Nru linux-base-4.11/man/kernel-img.conf.5 linux-base-4.12/man/kernel-img.conf.5
--- linux-base-4.11/man/kernel-img.conf.5 2025-01-01 13:33:30.000000000 +0100
+++ linux-base-4.12/man/kernel-img.conf.5 2025-05-25 21:05:02.000000000 +0200
@@ -22,29 +22,26 @@
.\" Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139,
.\" USA.
.\"
-.TH KERNEL\-IMG.CONF 5 "24 March 2019" "Debian" "Debian GNU/Linux manual"
+.TH KERNEL\-IMG.CONF 5 "25 May 2025" Debian "Debian GNU/Linux manual"
.\" NAME should be all caps, SECTION should be 1-8, maybe w/ subsection
.\" other parms are allowed: see man(7), man(1)
.SH NAME
kernel\-img.conf \- configuration file for Linux kernel packages
.SH SYNOPSIS
.I /etc/kernel\-img.conf
-.SH "DESCRIPTION"
+.SH DESCRIPTION
The file
.I /etc/kernel\-img.conf
is used by the kernel package installation and removal process to
allow local options for handling some aspects of the installation.
-Most configuration variables apply only to kernel image packages.
.PP
-Not all kernel image package creators support this file, or all the
-configuration variables. Support status for the file itself is:
+Not all kernel image package creators support this file:
.TS
nokeep;
l l.
\fBPackage creator\fR \fBStatus\fR
Debian linux source package supported
Ubuntu linux source package supported
-kernel\-package supported
make deb\-pkg ignored
.TE
.PP
@@ -68,369 +65,21 @@
If set, the postinst and postrm scripts will maintain symlinks to
default kernel and initramfs images, as described in
\fIlinux\-update\-symlinks\fR(8). This variable is set by default.
-.TS
-nokeep;
-l l.
-\fBPackage creator\fR \fBStatus\fR
-Debian linux source package supported
-Ubuntu linux source package supported
-kernel\-package ignored since v12.001;
- previously supported
-.TE
.TP
.B image_dest
Set this variable to the directory in which symlinks to the
default kernel and initramfs images should be maintained. The
default value is \fI/\fR.
-.TS
-nokeep;
-l l.
-\fBPackage creator\fR \fBStatus\fR
-Debian linux source package supported
-Ubuntu linux source package supported
-kernel\-package ignored since v12.001;
- previously supported
-.TE
.TP
.B link_in_boot
If set, this has the same effect as \fIimage_dest\ =\ /boot\fR
and overrides any other setting of \fBimage_dest\fR. This
variable is unset by default.
-.TS
-nokeep;
-l l.
-\fBPackage creator\fR \fBStatus\fR
-Debian linux source package supported
-Ubuntu linux source package supported
-kernel\-package ignored since v12.001;
- previously supported
-.TE
-.TP
-.B postinst_hook
-.BR DEPRECATED :
-Set this variable to a script to be executed during installation. The
-path can be a relative path if the script lives in a safe path -- that
-is, if it lives in /bin, /sbin, /usr/bin, or /usr/sbin, or must be an
-absolute path instead. Before calling this script, the environment
-variable
-.B STEM
-shall be set to the value of the
-.I \-\-stem
-argument (or the default value, linux), and in packages created
-by kernel\-package
-.B KERNEL_PACKAGE_VERSION
-shall be set to the version of the kernel\-package that created the
-package. This script shall be called with two arguments, the first
-being the
-.I version
-of the kernel image, and the second argument being the
-.I location
-of the kernel image itself. Errors in the script shall cause the
-postinst to fail. Since debconf is in use before the script is called,
-this script should issue no diagnostic messages to stdout -- while the
-postinst does call
-.BR db_stop ,
-debconf does not restore stdout, so messages to stdout disappear.
-An example script for grub users is present in
-/usr/share/doc/kernel\-package/ directory.
-This script is run
-.I after
-the scripts in /etc/kernel/postinst.d directory.
-.TS
-nokeep;
-l l.
-\fBPackage creator\fR \fBStatus\fR
-Debian linux source package unsupported since v4.6.1-1;
- previously supported
-Ubuntu linux source package unsupported since v4.15.0-18.19;
- previously supported
-kernel\-package deprecated
-.TE
-.TP
-.B postrm_hook
-.BR DEPRECATED :
-Set this variable to a script to be executed in the postrm (that is,
-after the image has been removed) after all the remove actions have
-been performed. The path can be a relative path if the script lives in
-a safe path -- that is, if it lives in /bin, /sbin, /usr/bin, or
-/usr/sbin, or must be an absolute path instead. In packages
-created by kernel\-package, the environment variable
-.B KERNEL_PACKAGE_VERSION
-shall be set to the version of the kernel\-package that created the
-package. This script shall be called with two arguments, the first
-being the
-.I version
-of the kernel image, and the second argument being the
-.I location
-of the kernel image itself. Errors in the script shall produce a
-warning message, but shall be otherwise ignored. Since debconf is in
-use before the script is called, this script should issue no
-diagnostic messages to stdout -- while the postinst does call
-.BR db_stop ,
-debconf does not restore stdout, so messages to stdout disappear.
-This script is run
-.I after
-the scripts in /etc/kernel/postrm.d directory.
-.TS
-nokeep;
-l l.
-\fBPackage creator\fR \fBStatus\fR
-Debian linux source package unsupported since v4.6.1-1;
- previously supported
-Ubuntu linux source package unsupported since v4.15.0-18.19;
- previously supported
-kernel\-package deprecated
-.TE
-.TP
-.B preinst_hook
-.BR DEPRECATED :
-Set this variable to a script to be executed before the package is
-unpacked, and can be used to put in additional checks. The path can be
-a relative path if the script lives in a safe path -- that is, if it
-lives in /bin, /sbin, /usr/bin, or /usr/sbin, or must be an absolute
-path instead. In packages created by kernel\-package, the
-environment variable
-.B KERNEL_PACKAGE_VERSION
-shall be set to the version of the kernel\-package that created the
-package. This script shall be called with two arguments, the first
-being the
-.I version
-of the kernel image, and the second argument being the
-.I location
-of the kernel image itself.
-This script is run
-.I after
-the scripts in /etc/kernel/preinst.d directory.
-.TS
-nokeep;
-l l.
-\fBPackage creator\fR \fBStatus\fR
-Debian linux source package unsupported since v4.6.1-1;
- previously supported
-Ubuntu linux source package unsupported since v4.15.0-18.19;
- previously supported
-kernel\-package deprecated
-.TE
-.TP
-.B prerm_hook
-.BR DEPRECATED :
-Set this variable to a script to be executed before the package files
-are removed (so any added files may be removed) . The path can be a
-relative path if the script lives in a safe path -- that is, if it
-lives in /bin, /sbin, /usr/bin, or /usr/sbin, or must be an absolute
-path instead. In packages created by kernel\-package, the
-environment variable
-.B KERNEL_PACKAGE_VERSION
-shall be set to the version of the kernel\-package that created the
-package. This script shall be called with two arguments, the
-first being the
-.I version
-of the kernel image, and the second argument being the
-.I location
-of the kernel image itself. Errors in the script shall cause the prerm
-to fail. Since debconf is in use before the script is called, this
-script should issue no diagnostic messages to stdout -- while the
-postinst does call
-.BR db_stop ,
-debconf does not restore stdout, so messages to stdout disappear.
-This script is run
-.I after
-the scripts in /etc/kernel/prerm.d directory.
-.TS
-nokeep;
-l l.
-\fBPackage creator\fR \fBStatus\fR
-Debian linux source package unsupported since v4.6.1-1;
- previously supported
-Ubuntu linux source package unsupported since v4.15.0-18.19;
- previously supported
-kernel\-package deprecated
-.TE
-.TP
-.B src_postinst_hook
-.BR DEPRECATED :
-Unlike the other hook variables, this is meant for a script run during
-the post inst of a docs, headers or a source package. Using this hook
-for the headers package is now being deprecated, at some point the
-headers post install script shall only run the header_postinst_hook.
-The path can be a relative path if the script lives in a safe path --
-that is, if it lives in /bin, /sbin, /usr/bin, or /usr/sbin, or must
-be an absolute path instead. The environment variable
-.B KERNEL_PACKAGE_VERSION
-shall be set to the version of the kernel\-package that created the
-package. This script shall be called with two arguments, the first
-being the
-.I name
-of the package being installed (could be kernel source or headers),
-and the second argument being the
-.I version
-of the package being installed. Errors in the script shall cause the
-postinst to fail.
-This script is run
-.I after
-the scripts in /etc/kernel/src_postinst.d directory.
-.TS
-nokeep;
-l l.
-\fBPackage creator\fR \fBStatus\fR
-Debian linux source package unsupported
-Ubuntu linux source package unsupported
-kernel\-package deprecated
-.TE
-.TP
-.B header_postinst_hook
-.BR DEPRECATED :
-Unlike the other hook variables, this is meant for a script run during
-the post inst of a headers package only. The path can be a relative
-path if the script lives in a safe path -- that is, if it lives in
-/bin, /sbin, /usr/bin, or /usr/sbin, or must be an absolute path
-instead. In packages created by kernel\-package, the environment
-variable
-.B KERNEL_PACKAGE_VERSION
-shall be set to the version of the kernel\-package that created the
-package. This script shall be called with two arguments, the first
-being the
-.I name
-of the package being installed, and the second argument being the
-.I version
-of the package being installed. Errors in the script shall cause the
-postinst to fail.
-This script is run
-.I after
-the scripts in /etc/kernel/header_postinst.d directory.
-.TS
-nokeep;
-l l.
-\fBPackage creator\fR \fBStatus\fR
-Debian linux source package unsupported
-Ubuntu linux source package unsupported since v4.15.0-18.19;
- previously supported
-kernel\-package deprecated
-.TE
-.TP
-.B clobber_modules
-If set, the preinst shall silently try to move /lib/modules/version
-out of the way if it is the same version as the image being
-installed. Use at your own risk.
-This variable is unset by default.
-.TS
-nokeep;
-l l.
-\fBPackage creator\fR \fBStatus\fR
-Debian linux source package ignored
-Ubuntu linux source package ignored
-kernel\-package supported
-.TE
-.TP
-.B warn_reboot
-This variable can be used to turn off the warning given when
-installing a kernel image which is the same version as the currently
-running version. If the modules list is changed, the modules
-dependencies may have been changed, and the modules for the new kernel
-may not run correctly on the running kernel if the kernel ABI has
-changed in the meanwhile. It is a good idea to reboot, and this is a
-note to remind you. If you know what you are doing, you can set this
-variable to no. This variable is set by default.
-.TS
-nokeep;
-l l.
-\fBPackage creator\fR \fBStatus\fR
-Debian linux source package ignored
-Ubuntu linux source package ignored
-kernel\-package supported
-.TE
-.TP
-.B relink_build_link
-This option manipulates the build link created by recent kernels. If
-the link is a dangling link, and if a the corresponding kernel headers
-appear to have been installed on the system, a new symlink shall be
-created to point to them. The default is to relink the build link
-(YES).
-.TS
-nokeep;
-l l.
-\fBPackage creator\fR \fBStatus\fR
-Debian linux source package ignored
-Ubuntu linux source package ignored
-kernel\-package supported
-.TE
-.TP
-.B force_build_link
-This option manipulates the build link created by recent kernels. If
-the link is a dangling link, a new symlink shall be created to point
-to kernel headers data in /usr/src, whether they have been installed or
-not. The default is unset, we don't create potentially dangling
-symlinks by default.
-.TS
-nokeep;
-l l.
-\fBPackage creator\fR \fBStatus\fR
-Debian linux source package ignored
-Ubuntu linux source package ignored
-kernel\-package supported
-.TE
-.TP
-.B relink_src_link
-This option manipulates the source link created by recent kernels. If
-the link is a dangling link it is deleted at install time. The default
-is to relink (delete) the source link (YES).
-.TS
-nokeep;
-l l.
-\fBPackage creator\fR \fBStatus\fR
-Debian linux source package ignored
-Ubuntu linux source package ignored
-kernel\-package supported
-.TE
-.TP
-.B silent_modules
-This option has been put in for the people who are vastly irritated on
-being warned about preexisting modules directory
-.IR /lib/modules/$version .
-That directory may belong to an old or defunct kernel image package,
-in which case problems may arise with leftover modules in that
-directory tree, or the directory may legitimately exist due to a
-independent modules package being installed for this kernel version
-that has already been unpacked. In this latter case the existence of
-the directory is benign. If you set this variable, you shall no
-longer be given a chance to abort if a preexisting modules directory
-.I /lib/modules/$version
-is detected. This is unset by default.
-.TS
-nokeep;
-l l.
-\fBPackage creator\fR \fBStatus\fR
-Debian linux source package ignored
-Ubuntu linux source package ignored
-kernel\-package supported
-.TE
-.TP
-.B ignore_depmod_err
-If set, does not prompt to continue after a depmod problem in the
-postinst script. This facilitates automated installs, though it may
-mask a problem with the kernel image. A diagnostic is still
-issued. This is unset by default.
-.TS
-nokeep;
-l l.
-\fBPackage creator\fR \fBStatus\fR
-Debian linux source package unsupported since v4.4.1-1~exp1;
- previously supported
-Ubuntu linux source package unsupported since v4.15.0-18.19;
- previously ignored
-kernel\-package supported
-.TE
.SH FILES
The file described here is
.IR /etc/kernel\-img.conf .
-\fBkernel\-common\fR includes example scripts suitable for dropping into
-.IR /etc/kernel/*.d
-installed in
-.IR /usr/share/doc/kernel-common/examples .
-.SH "SEE ALSO"
-.BR linux\-update\-symlinks (8),
-.BR make\-kpkg (1),
-.BR kernel\-pkg.conf (5)
+.SH SEE ALSO
+.BR linux\-update\-symlinks (8)
.SH AUTHOR
This manual page was written by Manoj Srivastava <srivasta@debian.org>
and Ben Hutchings <benh@debian.org> for the Debian GNU/Linux system.
diff -Nru linux-base-4.11/man/linux-check-removal.1 linux-base-4.12/man/linux-check-removal.1
--- linux-base-4.11/man/linux-check-removal.1 2025-01-01 13:33:30.000000000 +0100
+++ linux-base-4.12/man/linux-check-removal.1 2025-05-25 21:05:02.000000000 +0200
@@ -3,15 +3,15 @@
linux\-check\-removal \- check whether removal of a kernel is safe
.SH SYNOPSIS
.HP
-.BI linux\-check\-removal \ VERSION
+.BI linux\-check\-removal \ KERNEL\-VER
.SH DESCRIPTION
\fBlinux\-check\-removal\fR is intended to be called from the prerm
maintainer scripts of Linux kernel packages.
.PP
-The \fIVERSION\fR argument must be the kernel version string as shown by
-\fBuname -r\fR and used in filenames.
+The \fIKERNEL\-VER\fR argument must be the kernel version string as shown by
+\fBuname \-r\fR and used in filenames, not the package version.
.PP
-If the currently running kernel matches \fIVERSION\fR,
+If the currently running kernel matches \fIKERNEL\-VER\fR,
\fBlinux\-check\-removal\fR normally prompts the user to confirm
this potentially dangerous action and fails if the user chooses to
abort. There are two exceptions to this behaviour:
diff -Nru linux-base-4.11/man/linux-run-hooks.1 linux-base-4.12/man/linux-run-hooks.1
--- linux-base-4.11/man/linux-run-hooks.1 1970-01-01 01:00:00.000000000 +0100
+++ linux-base-4.12/man/linux-run-hooks.1 2025-05-25 21:05:02.000000000 +0200
@@ -0,0 +1,36 @@
+.TH LINUX-RUN-HOOKS 1 "3 May 2025"
+.SH NAME
+linux\-run\-hooks \- run package installation or removal hooks
+
+.SH SYNOPSIS
+\fBlinux\-run\-hooks image\fB \fIMAINT\-SCRIPT KERNEL\-VER IMAGE\-PATH\fR
+ \fB--\fR \fIMAINT\-PARAMS\fR ...
+.PP
+\fBlinux\-run\-hooks headers\fB \fIMAINT\-SCRIPT KERNEL\-VER\fR
+ \fB--\fR \fIMAINT\-PARAMS\fR ...
+.SH DESCRPTION
+\fBlinux\-run\-hooks\fR is intended to be called from the maintainer
+scripts of Linux kernel image and headers packages. It uses the
+\fBrun-parts\fR command to execute hooks installed in the appropriate
+subdirectories of \fB/etc/kernel\fR and \fB/usr/share/kernel\fR.
+.PP
+Each maintainer script in a kernel image package should call this
+command with its script type as the first argument. The postinst
+script in a headers package should call it with \fBheaders_postinst\fR
+as the first argument.
+.PP
+The \fIMAINT\-SCRIPT\fR argument must be the name of the maintainer
+script: \fBpreinst\fR, \fBpostinst\fR, \fBprerm\fR, or \fBpostrm\fR.
+.PP
+The \fIKERNEL\-VER\fR argument must be the kernel version string as
+shown by \fBuname \-r\fR and used in filenames, not the package
+version.
+.PP
+The \fIIMAGE\-PATH\fR argument must be the absolute filename of the
+kernel image.
+.PP
+The \fIMAINT-PARAMS\fR arguments must be the parameters received by
+the maintainer script.
+.SH AUTHOR
+\fBlinux\-run\-hooks\fR and this manual page were written by Ben
+Hutchings as part of the Debian \fBlinux\-base\fR package.
diff -Nru linux-base-4.11/man/linux-update-symlinks.1 linux-base-4.12/man/linux-update-symlinks.1
--- linux-base-4.11/man/linux-update-symlinks.1 2025-01-01 13:33:30.000000000 +0100
+++ linux-base-4.12/man/linux-update-symlinks.1 2025-05-25 21:05:02.000000000 +0200
@@ -5,7 +5,7 @@
.SH SYNOPSIS
.HP
.BR linux\-update\-symlinks \ { install | upgrade | remove }
-.I VERSION IMAGE\-PATH
+.I KERNEL\-VER IMAGE\-PATH
.SH DESCRIPTION
\fBlinux\-update\-symlinks\fR is intended to be called from the
@@ -14,8 +14,8 @@
\fBupgrade\fR depending on whether a fresh installation or an upgrade
has taken place.
.PP
-The \fIVERSION\fR argument must be the kernel version string as shown by
-\fBuname -r\fR and used in filenames.
+The \fIKERNEL\-VER\fR argument must be the kernel version string as shown by
+\fBuname \-r\fR and used in filenames, not the package version.
.PP
The \fIIMAGE\-PATH\fR argument must be the absolute filename of the
kernel image.
@@ -45,7 +45,7 @@
nothing, successfully. Otherwise it makes a list of kernel versions
in decreasing order of priority:
.IP \(bu 2
-The given \fIVERSION\fR, if the first argument is \fBinstall\fR
+The given \fIKERNEL\-VER\fR, if the first argument is \fBinstall\fR
.IP \(bu 2
The current primary default version, if it exists and is not already
listed
@@ -54,7 +54,7 @@
listed
.IP \(bu 2
All other versions whose files are installed, excluding the specified
-\fIVERSION\fR if the first argument is \fBremove\fR, in decreasing
+\fIKERNEL\-VER\fR if the first argument is \fBremove\fR, in decreasing
version order
.PP
The top two entries on the list are the new primary and secondary
@@ -66,9 +66,9 @@
.SH ENVIRONMENT VARIABLES
.PD 0
.TP
-.IR INITRD
+.B INITRD
When the first argument is \fBinstall\fR or \fBupgrade\fR,
-\fBlinux\-update\-symlinks\fR assumes that the given \fIVERSION\fR
+\fBlinux\-update\-symlinks\fR assumes that the given \fIKERNEL\-VER\fR
will use an initramfs unless this variable is set to \fBNo\fR.
.SH FILES
diff -Nru linux-base-4.11/man/linux-version.1 linux-base-4.12/man/linux-version.1
--- linux-base-4.11/man/linux-version.1 2025-01-01 13:33:30.000000000 +0100
+++ linux-base-4.12/man/linux-version.1 2025-05-25 21:05:02.000000000 +0200
@@ -3,26 +3,26 @@
linux\-version \- operate on Linux kernel version strings
.SH SYNOPSIS
.HP
-.BI linux\-version\ compare \ VERSION1\ OP\ VERSION2
+.BI linux\-version\ compare \ KERNEL\-VER\-1\ OP\ KERNEL\-VER\-2
.HP
.BR linux\-version\ sort \ [ \-\-reverse ]
-.RI [ VERSION1\ VERSION2 \ ...]
+.RI [ KERNEL\-VER\-1\ KERNEL\-VER\-2 \ ...]
.HP
.BR linux\-version\ list \ [ \-\-paths ]
.SH DESCRIPTION
\fBlinux\-version\fR operates on Linux kernel version strings as
-reported by \fBuname -r\fR and used in file and directory names.
+reported by \fBuname \-r\fR and used in file and directory names.
These version strings do not follow the same rules as Debian package
version strings and should not be compared as such or as arbitrary
strings.
.TP
-.BI compare \ VERSION1\ OP\ VERSION2
+.BI compare \ KERNEL\-VER\-1\ OP\ KERNEL\-VER\-2
Compare version strings, where \fIOP\fP is a binary
operator. \fBlinux\-version\fP returns success (zero result) if the
specified condition is satisfied, and failure (nonzero result)
otherwise. The valid operators are: \fBlt le eq ne ge gt\fP
.TP
-\fBsort\fR [\fB\-\-reverse\fR] [\fIVERSION1 VERSION2\fR ...]
+\fBsort\fR [\fB\-\-reverse\fR] [\fIKERNEL\-VER\-1 KERNEL\-VER\-2\fR ...]
Sort the given version strings and print them in order from lowest to
highest. If the \fB\-\-reverse\fR option is used, print them in order
from highest to lowest.
diff -Nru linux-base-4.11/po/de.po linux-base-4.12/po/de.po
--- linux-base-4.11/po/de.po 2025-01-01 13:33:30.000000000 +0100
+++ linux-base-4.12/po/de.po 2025-05-25 21:05:02.000000000 +0200
@@ -8,8 +8,8 @@
msgstr ""
"Project-Id-Version: linux-base 4.6\n"
"Report-Msgid-Bugs-To: linux-base@packages.debian.org\n"
-"POT-Creation-Date: 2019-03-24 21:37+0000\n"
-"PO-Revision-Date: 2020-12-23 07:39+0100\n"
+"POT-Creation-Date: 2025-05-25 20:05+0200\n"
+"PO-Revision-Date: 2025-05-25 20:05+0200\n"
"Last-Translator: Ben Hutchings <ben@decadent.org.uk>\n"
"Language-Team: German <debian-l10n-german@lists.debian.org>\n"
"Language: de\n"
@@ -27,8 +27,8 @@
#. type: TH
#: man/kernel-img.conf.5:25
#, no-wrap
-msgid "24 March 2019"
-msgstr "24. März 2019"
+msgid "25 May 2025"
+msgstr "25. Mai 2025"
#. type: TH
#: man/kernel-img.conf.5:25
@@ -73,118 +73,59 @@
msgstr "BESCHREIBUNG"
#. type: Plain text
-#: man/kernel-img.conf.5:38
+#: man/kernel-img.conf.5:37
msgid ""
"The file I</etc/kernel-img.conf> is used by the kernel package installation "
"and removal process to allow local options for handling some aspects of the "
-"installation. Most configuration variables apply only to kernel image "
-"packages."
+"installation."
msgstr ""
"Die Datei I</etc/kernel-img.conf> wird von dem Kernelpaket-Installations- "
-"und -Entfernungsprozess verwandt, um lokale Optionen "
-"zu ermöglichen, die einige Aspekte der Installation behandeln. Die meisten "
-"Konfigurationsvariablen gelten nur für Kernel-Abbild-Pakete."
+"und -Entfernungsprozess verwandt, um lokale Optionen zu ermöglichen, die "
+"einige Aspekte der Installation behandeln."
#. type: Plain text
-#: man/kernel-img.conf.5:41
-msgid ""
-"Not all kernel image package creators support this file, or all the "
-"configuration variables. Support status for the file itself is:"
-msgstr ""
-"Nicht alle Erstellprogramme für Kernelabbilder unterstützen diese Datei oder "
-"alle Konfigurationsvariablen. Der Unterstützungsstatus für die Datei selbst "
-"ist wie folgt:"
+#: man/kernel-img.conf.5:39
+msgid "Not all kernel image package creators support this file:"
+msgstr "Nicht alle Erstellprogramme für Kernelabbilder unterstützen diese Datei:"
#. type: tbl table
-#: man/kernel-img.conf.5:44 man/kernel-img.conf.5:74 man/kernel-img.conf.5:88
-#: man/kernel-img.conf.5:102 man/kernel-img.conf.5:142
-#: man/kernel-img.conf.5:177 man/kernel-img.conf.5:207
-#: man/kernel-img.conf.5:242 man/kernel-img.conf.5:275
-#: man/kernel-img.conf.5:304 man/kernel-img.conf.5:319
-#: man/kernel-img.conf.5:337 man/kernel-img.conf.5:352
-#: man/kernel-img.conf.5:367 man/kernel-img.conf.5:380
-#: man/kernel-img.conf.5:402 man/kernel-img.conf.5:416
+#: man/kernel-img.conf.5:42
#, no-wrap
msgid "B<Package creator>"
msgstr "B<Paketersteller>"
#. type: tbl table
-#: man/kernel-img.conf.5:44 man/kernel-img.conf.5:74 man/kernel-img.conf.5:88
-#: man/kernel-img.conf.5:102 man/kernel-img.conf.5:142
-#: man/kernel-img.conf.5:177 man/kernel-img.conf.5:207
-#: man/kernel-img.conf.5:242 man/kernel-img.conf.5:275
-#: man/kernel-img.conf.5:304 man/kernel-img.conf.5:319
-#: man/kernel-img.conf.5:337 man/kernel-img.conf.5:352
-#: man/kernel-img.conf.5:367 man/kernel-img.conf.5:380
-#: man/kernel-img.conf.5:402 man/kernel-img.conf.5:416
+#: man/kernel-img.conf.5:42
#, no-wrap
msgid "B<Status>"
msgstr "B<Status>"
#. type: tbl table
-#: man/kernel-img.conf.5:45 man/kernel-img.conf.5:75 man/kernel-img.conf.5:89
-#: man/kernel-img.conf.5:103 man/kernel-img.conf.5:143
-#: man/kernel-img.conf.5:178 man/kernel-img.conf.5:208
-#: man/kernel-img.conf.5:243 man/kernel-img.conf.5:276
-#: man/kernel-img.conf.5:305 man/kernel-img.conf.5:320
-#: man/kernel-img.conf.5:338 man/kernel-img.conf.5:353
-#: man/kernel-img.conf.5:368 man/kernel-img.conf.5:381
-#: man/kernel-img.conf.5:403 man/kernel-img.conf.5:417
+#: man/kernel-img.conf.5:43
#, no-wrap
msgid "Debian linux source package"
msgstr "Debian-Linux-Quellpaket"
#. type: tbl table
-#: man/kernel-img.conf.5:45 man/kernel-img.conf.5:46 man/kernel-img.conf.5:47
-#: man/kernel-img.conf.5:75 man/kernel-img.conf.5:76 man/kernel-img.conf.5:89
-#: man/kernel-img.conf.5:90 man/kernel-img.conf.5:103 man/kernel-img.conf.5:104
-#: man/kernel-img.conf.5:322 man/kernel-img.conf.5:340
-#: man/kernel-img.conf.5:355 man/kernel-img.conf.5:370
-#: man/kernel-img.conf.5:383 man/kernel-img.conf.5:405
-#: man/kernel-img.conf.5:421
+#: man/kernel-img.conf.5:43 man/kernel-img.conf.5:44
#, no-wrap
msgid "supported"
msgstr "unterstützt"
#. type: tbl table
-#: man/kernel-img.conf.5:46 man/kernel-img.conf.5:76 man/kernel-img.conf.5:90
-#: man/kernel-img.conf.5:104 man/kernel-img.conf.5:145
-#: man/kernel-img.conf.5:180 man/kernel-img.conf.5:210
-#: man/kernel-img.conf.5:245 man/kernel-img.conf.5:277
-#: man/kernel-img.conf.5:306 man/kernel-img.conf.5:321
-#: man/kernel-img.conf.5:339 man/kernel-img.conf.5:354
-#: man/kernel-img.conf.5:369 man/kernel-img.conf.5:382
-#: man/kernel-img.conf.5:404 man/kernel-img.conf.5:419
+#: man/kernel-img.conf.5:44
#, no-wrap
msgid "Ubuntu linux source package"
msgstr "Ubuntu-Linux-Quellpaket"
#. type: tbl table
-#: man/kernel-img.conf.5:47 man/kernel-img.conf.5:77 man/kernel-img.conf.5:91
-#: man/kernel-img.conf.5:105 man/kernel-img.conf.5:147
-#: man/kernel-img.conf.5:182 man/kernel-img.conf.5:212
-#: man/kernel-img.conf.5:247 man/kernel-img.conf.5:278
-#: man/kernel-img.conf.5:308 man/kernel-img.conf.5:322
-#: man/kernel-img.conf.5:340 man/kernel-img.conf.5:355
-#: man/kernel-img.conf.5:370 man/kernel-img.conf.5:383
-#: man/kernel-img.conf.5:405 man/kernel-img.conf.5:421
-#, no-wrap
-msgid "kernel-package"
-msgstr "kernel-package"
-
-#. type: tbl table
-#: man/kernel-img.conf.5:48
+#: man/kernel-img.conf.5:45
#, no-wrap
msgid "make deb-pkg"
msgstr "make deb-pkg"
#. type: tbl table
-#: man/kernel-img.conf.5:48 man/kernel-img.conf.5:320 man/kernel-img.conf.5:321
-#: man/kernel-img.conf.5:338 man/kernel-img.conf.5:339
-#: man/kernel-img.conf.5:353 man/kernel-img.conf.5:354
-#: man/kernel-img.conf.5:368 man/kernel-img.conf.5:369
-#: man/kernel-img.conf.5:381 man/kernel-img.conf.5:382
-#: man/kernel-img.conf.5:403 man/kernel-img.conf.5:404
+#: man/kernel-img.conf.5:45
#, no-wrap
msgid "ignored"
msgstr "ignoriert"
@@ -192,7 +133,7 @@
# Punctuation characters at the end are included in the highlighting, see
# http://www.din-5008-richtlinien.de/hervorheben.php
#. type: Plain text
-#: man/kernel-img.conf.5:64
+#: man/kernel-img.conf.5:61
msgid ""
"The format of the file is a simple I<VAR>B<=>I<VALUE> pair. Boolean values "
"may be specified as I<Yes>, I<True>, I<1>, and I<No>, I<False>, I<0>, and "
@@ -205,19 +146,19 @@
"bestimmten Umständen automatisch durch das Installationsskript erstellt."
#. type: Plain text
-#: man/kernel-img.conf.5:66
+#: man/kernel-img.conf.5:63
msgid "At the moment, the user modifiable variables supported are:"
msgstr ""
"Momentan werden folgende vom Benutzer veränderbaren Variablen unterstützt:"
#. type: TP
-#: man/kernel-img.conf.5:66
+#: man/kernel-img.conf.5:63
#, no-wrap
msgid "B<do_symlinks>"
msgstr "B<do_symlinks>"
#. type: Plain text
-#: man/kernel-img.conf.5:71
+#: man/kernel-img.conf.5:68
msgid ""
"If set, the postinst and postrm scripts will maintain symlinks to default "
"kernel and initramfs images, as described in I<linux-update-symlinks>(8). "
@@ -228,31 +169,14 @@
"update-symlinks>(8) beschrieben ist. Diese Variable ist standardmäßig "
"gesetzt."
-#. type: tbl table
-#: man/kernel-img.conf.5:77 man/kernel-img.conf.5:91 man/kernel-img.conf.5:105
-#, no-wrap
-msgid "ignored since v12.001;"
-msgstr "seit v12.001 ignoriert;"
-
-#. type: tbl table
-#: man/kernel-img.conf.5:78 man/kernel-img.conf.5:92 man/kernel-img.conf.5:106
-#: man/kernel-img.conf.5:144 man/kernel-img.conf.5:146
-#: man/kernel-img.conf.5:179 man/kernel-img.conf.5:181
-#: man/kernel-img.conf.5:209 man/kernel-img.conf.5:211
-#: man/kernel-img.conf.5:244 man/kernel-img.conf.5:246
-#: man/kernel-img.conf.5:307 man/kernel-img.conf.5:418
-#, no-wrap
-msgid "previously supported"
-msgstr "früher unterstützt"
-
#. type: TP
-#: man/kernel-img.conf.5:80
+#: man/kernel-img.conf.5:68
#, no-wrap
msgid "B<image_dest>"
msgstr "B<image_dest>"
#. type: Plain text
-#: man/kernel-img.conf.5:85
+#: man/kernel-img.conf.5:73
msgid ""
"Set this variable to the directory in which symlinks to the default kernel "
"and initramfs images should be maintained. The default value is I</>."
@@ -262,484 +186,56 @@
"Vorgabewert ist I</>."
#. type: TP
-#: man/kernel-img.conf.5:94
+#: man/kernel-img.conf.5:73
#, no-wrap
msgid "B<link_in_boot>"
msgstr "B<link_in_boot>"
#. type: Plain text
-#: man/kernel-img.conf.5:99
+#: man/kernel-img.conf.5:78
msgid ""
"If set, this has the same effect as I<image_dest\\ =\\ /boot> and overrides "
"any other setting of B<image_dest>. This variable is unset by default."
msgstr ""
-"Falls gesetzt, hat dies den gleichen Effekt wie I<image_dest\\ =\\ /boot> und "
-"setzt jede andere Einstellung von B<image_dest> außer Kraft. Diese "
+"Falls gesetzt, hat dies den gleichen Effekt wie I<image_dest\\ =\\ /boot> "
+"und setzt jede andere Einstellung von B<image_dest> außer Kraft. Diese "
"Variable ist standardmäßig nicht gesetzt."
-#. type: TP
-#: man/kernel-img.conf.5:108
-#, no-wrap
-msgid "B<postinst_hook>"
-msgstr "B<postinst_hook>"
-
-#. type: Plain text
-#: man/kernel-img.conf.5:139
-msgid ""
-"B<DEPRECATED>: Set this variable to a script to be executed during "
-"installation. The path can be a relative path if the script lives in a safe "
-"path -- that is, if it lives in /bin, /sbin, /usr/bin, or /usr/sbin, or must "
-"be an absolute path instead. Before calling this script, the environment "
-"variable B<STEM> shall be set to the value of the I<--stem> argument (or the "
-"default value, linux), and in packages created by kernel-package "
-"B<KERNEL_PACKAGE_VERSION> shall be set to the version of the kernel-package "
-"that created the package. This script shall be called with two arguments, "
-"the first being the I<version> of the kernel image, and the second argument "
-"being the I<location> of the kernel image itself. Errors in the script shall "
-"cause the postinst to fail. Since debconf is in use before the script is "
-"called, this script should issue no diagnostic messages to stdout -- while "
-"the postinst does call B<db_stop>, debconf does not restore stdout, so "
-"messages to stdout disappear. An example script for grub users is present "
-"in /usr/share/doc/kernel-package/ directory. This script is run I<after> "
-"the scripts in /etc/kernel/postinst.d directory."
-msgstr ""
-"B<MISSBILLIGT:> Setzen Sie diese Variable auf ein Skript, das während der "
-"Installation ausgeführt werden soll. Der Pfad kann relativ sein, falls das "
-"Skript in einem sicheren Pfad liegt – dies sind /bin, /sbin, /usr/bin, oder /"
-"usr/sbin oder es muss stattdessen ein absoluter Pfad sein. Bevor Sie dieses "
-"Skript aufrufen, soll die Umgebungsvariable B<STEM> auf den Wert des "
-"Arguments I<--stem> (oder den Standardwert, linux) gesetzt werden und "
-"B<KERNEL_PACKAGE_VERSION> soll in durch Kernel-package erstellten Paketen auf die Version von kernel-package gesetzt "
-"werden, das dieses Paket erstellte. Dieses Skript soll mit zwei Argumenten "
-"aufgerufen werden. Das erste ist die I<Version> des Kernel-Images und das "
-"zweite der Speicherplatz des Kernel-Images selbst. Fehler im Skript sollen "
-"das Fehlschlagen von »postinst« verursachen. Da vor dem Aufruf des Skripts "
-"Debconf benutzt wird, sollte das Skript keine Diagnosenachrichten auf die "
-"Standardausgabe ausgeben – solange »postinst« B<db_stop> aufruft, stellt "
-"Debconf die Standardausgabe nicht wieder her, daher verschwinden Nachrichten "
-"an die Standardausgabe. Ein Beispielskript für Grub-Benutzer liegt im "
-"Verzeichnis /usr/share/doc/kernel-package/. Dieses Skript wird I<nach> den "
-"Skripten im Verzeichnis /etc/kernel/postinst.d ausgeführt."
-
-#. type: tbl table
-#: man/kernel-img.conf.5:143 man/kernel-img.conf.5:178
-#: man/kernel-img.conf.5:208 man/kernel-img.conf.5:243
-#, no-wrap
-msgid "unsupported since v4.6.1-1;"
-msgstr "seit v4.6.1-1 nicht unterstützt;"
-
-#. type: tbl table
-#: man/kernel-img.conf.5:145 man/kernel-img.conf.5:180
-#: man/kernel-img.conf.5:210 man/kernel-img.conf.5:245
-#: man/kernel-img.conf.5:306 man/kernel-img.conf.5:419
-#, no-wrap
-msgid "unsupported since v4.15.0-18.19;"
-msgstr "seit v4.15.0-18.19 nicht unterstützt;"
-
-#. type: tbl table
-#: man/kernel-img.conf.5:147 man/kernel-img.conf.5:182
-#: man/kernel-img.conf.5:212 man/kernel-img.conf.5:247
-#: man/kernel-img.conf.5:278 man/kernel-img.conf.5:308
-#, no-wrap
-msgid "deprecated"
-msgstr "missbilligt"
-
-#. type: TP
-#: man/kernel-img.conf.5:149
-#, no-wrap
-msgid "B<postrm_hook>"
-msgstr "B<postrm_hook>"
-
-#. type: Plain text
-#: man/kernel-img.conf.5:174
-msgid ""
-"B<DEPRECATED>: Set this variable to a script to be executed in the postrm "
-"(that is, after the image has been removed) after all the remove actions "
-"have been performed. The path can be a relative path if the script lives in "
-"a safe path -- that is, if it lives in /bin, /sbin, /usr/bin, or /usr/sbin, "
-"or must be an absolute path instead. In packages created by kernel-package, "
-"the environment variable B<KERNEL_PACKAGE_VERSION> shall be set to the "
-"version of the kernel-package that created the package. This script shall be "
-"called with two arguments, the first being the I<version> of the kernel "
-"image, and the second argument being the I<location> of the kernel image "
-"itself. Errors in the script shall produce a warning message, but shall be "
-"otherwise ignored. Since debconf is in use before the script is called, this "
-"script should issue no diagnostic messages to stdout -- while the postinst "
-"does call B<db_stop>, debconf does not restore stdout, so messages to stdout "
-"disappear. This script is run I<after> the scripts in /etc/kernel/postrm.d "
-"directory."
-msgstr ""
-"B<MISSBILLIGT:> Setzen Sie diese Variable auf ein Skript, das in "
-"»postrm« (das ist, nachdem das Image entfernt wurde) ausgeführt wird, "
-"nachdem all Entfernungsaktionen durchgeführt wurden. Der Pfad kann relativ "
-"sein, falls das Skript in einem sicheren Pfad liegt – dies sind /bin, /"
-"sbin, /usr/bin oder /usr/sbin oder es muss stattdessen ein absoluter Pfad "
-"sein. Die Umgebungsvariable B<KERNEL_PACKAGE_VERSION> soll in durch Kernel-package erstellten Paketen auf die Version "
-"von kernel-package gesetzt werden, das dieses Paket erstellte. Dieses Skript "
-"soll mit zwei Argumenten aufgerufen werden. Das erste ist die I<Version> des "
-"Kernel-Images und das zweite der Speicherplatz des Kernel-Images selbst. "
-"Fehler im Skript sollen ein Warnung ausgeben, aber ansonsten ignoriert "
-"werden. Da vor dem Aufruf des Skripts Debconf benutzt wird, sollte das "
-"Skript keine Diagnosenachrichten auf die Standardausgabe ausgeben – solange "
-"»postinst« B<db_stop> aufruft, stellt Debconf die Standardausgabe nicht "
-"wieder her, daher verschwinden Nachrichten an die Standardausgabe. Dieses "
-"Skript wird I<nach> den Skripten im Verzeichnis /etc/kernel/postrm.d "
-"ausgeführt."
-
-#. type: TP
-#: man/kernel-img.conf.5:184
-#, no-wrap
-msgid "B<preinst_hook>"
-msgstr "B<preinst_hook>"
-
-#. type: Plain text
-#: man/kernel-img.conf.5:204
-msgid ""
-"B<DEPRECATED>: Set this variable to a script to be executed before the "
-"package is unpacked, and can be used to put in additional checks. The path "
-"can be a relative path if the script lives in a safe path -- that is, if it "
-"lives in /bin, /sbin, /usr/bin, or /usr/sbin, or must be an absolute path "
-"instead. In packages created by kernel-package, the environment variable "
-"B<KERNEL_PACKAGE_VERSION> shall be set to the version of the kernel-package "
-"that created the package. This script shall be called with two arguments, "
-"the first being the I<version> of the kernel image, and the second argument "
-"being the I<location> of the kernel image itself. This script is run "
-"I<after> the scripts in /etc/kernel/preinst.d directory."
-msgstr ""
-"B<MISSBILLIGT:> Setzen Sie diese Variable auf ein Skript, das vor dem "
-"Entpacken des Pakets ausgeführt werden soll und benutzt werden kann, um in "
-"zusätzliche Prüfungen einzufließen. Der Pfad kann relativ sein, falls das "
-"Skript in einem sicheren Pfad liegt – dies sind /bin, /sbin, /usr/bin oder /"
-"usr/sbin oder es muss stattdessen ein absoluter Pfad sein. Die "
-"Umgebungsvariable B<KERNEL_PACKAGE_VERSION> soll in durch Kernel-package erstellten Paketen auf die Version von kernel-"
-"package gesetzt werden, das dieses Paket erstellte. Dieses Skript soll mit "
-"zwei Argumenten aufgerufen werden. Das erste ist die I<Version> des Kernel-"
-"Images und das zweite der Speicherplatz des Kernel-Images selbst. Dieses "
-"Skript wird I<nach> den Skripten im Verzeichnis /etc/kernel/preinst.d "
-"ausgeführt."
-
-#. type: TP
-#: man/kernel-img.conf.5:214
-#, no-wrap
-msgid "B<prerm_hook>"
-msgstr "B<prerm_hook>"
-
-#. type: Plain text
-#: man/kernel-img.conf.5:239
-msgid ""
-"B<DEPRECATED>: Set this variable to a script to be executed before the "
-"package files are removed (so any added files may be removed) . The path can "
-"be a relative path if the script lives in a safe path -- that is, if it "
-"lives in /bin, /sbin, /usr/bin, or /usr/sbin, or must be an absolute path "
-"instead. In packages created by kernel-package, the environment variable "
-"B<KERNEL_PACKAGE_VERSION> shall be set to the version of the kernel-package "
-"that created the package. This script shall be called with two arguments, "
-"the first being the I<version> of the kernel image, and the second argument "
-"being the I<location> of the kernel image itself. Errors in the script shall "
-"cause the prerm to fail. Since debconf is in use before the script is "
-"called, this script should issue no diagnostic messages to stdout -- while "
-"the postinst does call B<db_stop>, debconf does not restore stdout, so "
-"messages to stdout disappear. This script is run I<after> the scripts in /"
-"etc/kernel/prerm.d directory."
-msgstr ""
-"B<MISSBILLIGT:> Setzen Sie diese Variable auf ein Skript, das vor dem "
-"Entfernen der Paketdateien ausgeführt wird (falls irgendwelche hinzugefügten "
-"Dateien entfernt werden können). Der Pfad kann relativ sein, falls das "
-"Skript in einem sicheren Pfad liegt – dies sind /bin, /sbin, /usr/bin oder /"
-"usr/sbin oder es muss stattdessen ein absoluter Pfad sein. Die "
-"Umgebungsvariable B<KERNEL_PACKAGE_VERSION> soll in durch Kernel-package erstellten Paketen auf die Version von kernel-"
-"package gesetzt werden, das dieses Paket erstellte. Dieses Skript soll mit "
-"zwei Argumenten aufgerufen werden. Das erste ist die I<Version> des Kernel-"
-"Images und das zweite der Speicherplatz des Kernel-Images selbst. Fehler im "
-"Skript sollen das Fehlschlagen von »prerm« verursachen. Da vor dem Aufruf "
-"des Skripts Debconf benutzt wird, sollte das Skript keine "
-"Diagnosenachrichten auf die Standardausgabe ausgeben – solange »postinst« "
-"B<db_stop> aufruft, stellt Debconf die Standardausgabe nicht wieder her, "
-"daher verschwinden Nachrichten an die Standardausgabe. Dieses Skript wird "
-"I<nach> den Skripten im Verzeichnis /etc/kernel/prerm.d ausgeführt."
-
-#. type: TP
-#: man/kernel-img.conf.5:249
-#, no-wrap
-msgid "B<src_postinst_hook>"
-msgstr "B<src_postinst_hook>"
-
-#. type: Plain text
-#: man/kernel-img.conf.5:272
-msgid ""
-"B<DEPRECATED>: Unlike the other hook variables, this is meant for a script "
-"run during the post inst of a docs, headers or a source package. Using this "
-"hook for the headers package is now being deprecated, at some point the "
-"headers post install script shall only run the header_postinst_hook. The "
-"path can be a relative path if the script lives in a safe path -- that is, "
-"if it lives in /bin, /sbin, /usr/bin, or /usr/sbin, or must be an absolute "
-"path instead. The environment variable B<KERNEL_PACKAGE_VERSION> shall be "
-"set to the version of the kernel-package that created the package. This "
-"script shall be called with two arguments, the first being the I<name> of "
-"the package being installed (could be kernel source or headers), and the "
-"second argument being the I<version> of the package being installed. Errors "
-"in the script shall cause the postinst to fail. This script is run I<after> "
-"the scripts in /etc/kernel/src_postinst.d directory."
-msgstr ""
-"B<MISSBILLIGT:> Anders als die anderen Hook-Variablen ist dies für ein "
-"Skript gedacht, das während der Vorinstallation (»post inst«) eines "
-"Dokumentations-, Header- oder Quellpakets ausgeführt wird. Die Verwendung "
-"dieses Hooks ist nun missbilligt, das Vorinstallationsskript für das Headers-"
-"Skript soll nur den »header_postinst_hook« ausführen. Der Pfad kann relativ "
-"sein, falls das Skript in einem sicheren Pfad liegt – dies sind /bin, /"
-"sbin, /usr/bin oder /usr/sbin oder es muss stattdessen ein absoluter Pfad "
-"sein. Die Umgebungsvariable B<KERNEL_PACKAGE_VERSION> soll auf die Version "
-"von kernel-package gesetzt werden, das dieses Paket erstellte. Dieses Skript "
-"soll mit zwei Argumenten aufgerufen werden. Das erste ist die I<Version> des "
-"Kernel-Images und das zweite der Speicherplatz des Kernel-Images selbst. "
-"Fehler im Skript sollen das Fehlschlagen von »postinst« verursachen. Dieses "
-"Skript wird I<nach> den Skripten im Verzeichnis /etc/kernel/postinst.d "
-"ausgeführt."
-
-#. type: tbl table
-#: man/kernel-img.conf.5:276 man/kernel-img.conf.5:277
-#: man/kernel-img.conf.5:305
-#, no-wrap
-msgid "unsupported"
-msgstr "nicht unterstützt"
-
-#. type: TP
-#: man/kernel-img.conf.5:280
-#, no-wrap
-msgid "B<header_postinst_hook>"
-msgstr "B<header_postinst_hook>"
-
-#. type: Plain text
-#: man/kernel-img.conf.5:301
-msgid ""
-"B<DEPRECATED>: Unlike the other hook variables, this is meant for a script "
-"run during the post inst of a headers package only. The path can be a "
-"relative path if the script lives in a safe path -- that is, if it lives in /"
-"bin, /sbin, /usr/bin, or /usr/sbin, or must be an absolute path instead. In "
-"packages created by kernel-package, the environment variable "
-"B<KERNEL_PACKAGE_VERSION> shall be set to the version of the kernel-package "
-"that created the package. This script shall be called with two arguments, "
-"the first being the I<name> of the package being installed, and the second "
-"argument being the I<version> of the package being installed. Errors in the "
-"script shall cause the postinst to fail. This script is run I<after> the "
-"scripts in /etc/kernel/header_postinst.d directory."
-msgstr ""
-"B<MISSBILLIGT:> Anders als die anderen Hook-Variablen ist dies für ein "
-"Skript gedacht, das nur während der Vorinastallation (»post inst«) eines "
-"Header-Pakets ausgeführt wird. Der Pfad kann relativ sein, falls das Skript "
-"in einem sicheren Pfad liegt – dies sind /bin, /sbin, /usr/bin oder /usr/"
-"sbin oder es muss stattdessen ein absoluter Pfad sein. Die Umgebungsvariable "
-"B<KERNEL_PACKAGE_VERSION> soll in durch Kernel-package erstellten Paketen auf die Version von kernel-package gesetzt "
-"werden, das dieses Paket erstellte. Dieses Skript soll mit zwei Argumenten "
-"aufgerufen werden. Das erste ist die I<Version> des Kernel-Images und das "
-"zweite der Speicherplatz des Kernel-Images selbst. Fehler im Skript sollen "
-"das Fehlschlagen von »postinst« verursachen. Dieses Skript wird I<nach> den "
-"Skripten im Verzeichnis /etc/kernel/header_postinst.d ausgeführt."
-
-#. type: TP
-#: man/kernel-img.conf.5:310
-#, no-wrap
-msgid "B<clobber_modules>"
-msgstr "B<clobber_modules>"
-
-#. type: Plain text
-#: man/kernel-img.conf.5:316
-msgid ""
-"If set, the preinst shall silently try to move /lib/modules/version out of "
-"the way if it is the same version as the image being installed. Use at your "
-"own risk. This variable is unset by default."
-msgstr ""
-"Falls gesetzt, soll »preinst« stillschweigend versuchen, /lib/modules/"
-"version aus dem Weg zu räumen, wenn die gleiche Version wie das Image "
-"installiert wird. Benutzung auf eigene Gefahr. Diese Variable ist "
-"standardmäßig nicht gesetzt."
-
-#. type: TP
-#: man/kernel-img.conf.5:324
-#, no-wrap
-msgid "B<warn_reboot>"
-msgstr "B<warn_reboot>"
-
-#. type: Plain text
-#: man/kernel-img.conf.5:334
-msgid ""
-"This variable can be used to turn off the warning given when installing a "
-"kernel image which is the same version as the currently running version. If "
-"the modules list is changed, the modules dependencies may have been changed, "
-"and the modules for the new kernel may not run correctly on the running "
-"kernel if the kernel ABI has changed in the meanwhile. It is a good idea to "
-"reboot, and this is a note to remind you. If you know what you are doing, "
-"you can set this variable to no. This variable is set by default."
-msgstr ""
-"Diese Variable kann benutzt werden, um die Warnung abzuschalten, wenn ein "
-"Kernel-Image installiert wird, das die gleiche Version hat wie das aktuell "
-"laufende. Falls die Liste der Module geändert wurde, könnten sich die "
-"Modulabhängigkeiten geändert haben und die Module für den neuen Kernel "
-"werden möglicherweise nicht korrekt auf dem laufenden Kernel ausgeführt, "
-"falls sich das ABI in der Zwischenzeit geändert hat. Es ist empfehlenswert, "
-"den Rechner neu zu starten und dieser Hinweis soll Sie daran erinnern. Falls "
-"Sie wissen, was Sie tun, können Sie diese Variable auf »no« setzen. "
-"Standardmäßig ist diese Variable gesetzt."
-
-#. type: TP
-#: man/kernel-img.conf.5:342
-#, no-wrap
-msgid "B<relink_build_link>"
-msgstr "B<relink_build_link>"
-
-#. type: Plain text
-#: man/kernel-img.conf.5:349
-msgid ""
-"This option manipulates the build link created by recent kernels. If the "
-"link is a dangling link, and if a the corresponding kernel headers appear to "
-"have been installed on the system, a new symlink shall be created to point "
-"to them. The default is to relink the build link (YES)."
-msgstr ""
-"Diese Option manipuliert den von aktuellen Kerneln erstellten Bauverweis. "
-"Falls der Verweis defekt ist und die entsprechenden Kernel-Header auf dem "
-"System installiert zu sein scheinen, soll ein neuer symbolischer Verweis "
-"erstellt werden, der darauf zeigt. Vorgabe ist, den Bauverweis erneut zu "
-"verknüpfen (YES)."
-
-#. type: TP
-#: man/kernel-img.conf.5:357
-#, no-wrap
-msgid "B<force_build_link>"
-msgstr "B<force_build_link>"
-
-#. type: Plain text
-#: man/kernel-img.conf.5:364
-msgid ""
-"This option manipulates the build link created by recent kernels. If the "
-"link is a dangling link, a new symlink shall be created to point to kernel "
-"headers data in /usr/src, whether they have been installed or not. The "
-"default is unset, we don't create potentially dangling symlinks by default."
-msgstr ""
-"Diese Option manipuliert den durch aktuelle Kernel erstellten Bauverweis. "
-"Falls der Verweis defekt ist, soll ein neuer symbolischer Verweis erstellt "
-"werden, der auf die Kernel-Header-Daten in /usr/src verweist, unabhängig "
-"davon, ob sie installiert sind oder nicht. Standardmäßig ist sie nicht "
-"gesetzt, damit keine potentiell defekten Verweise erstellt werden."
-
-#. type: TP
-#: man/kernel-img.conf.5:372
-#, no-wrap
-msgid "B<relink_src_link>"
-msgstr "B<relink_src_link>"
-
-#. type: Plain text
-#: man/kernel-img.conf.5:377
-msgid ""
-"This option manipulates the source link created by recent kernels. If the "
-"link is a dangling link it is deleted at install time. The default is to "
-"relink (delete) the source link (YES)."
-msgstr ""
-"Diese Option manipuliert den durch aktuelle Kernel erstellten Quellverweis. "
-"Falls der Verweis defekt ist, wird er bei der Installation gelöscht. Vorgabe "
-"ist, den Quellverweis wieder zu verknüpfen (löschen) (YES)."
-
-#. type: TP
-#: man/kernel-img.conf.5:385
-#, no-wrap
-msgid "B<silent_modules>"
-msgstr "B<silent_modules>"
-
-#. type: Plain text
-#: man/kernel-img.conf.5:399
-msgid ""
-"This option has been put in for the people who are vastly irritated on being "
-"warned about preexisting modules directory I</lib/modules/$version>. That "
-"directory may belong to an old or defunct kernel image package, in which "
-"case problems may arise with leftover modules in that directory tree, or the "
-"directory may legitimately exist due to a independent modules package being "
-"installed for this kernel version that has already been unpacked. In this "
-"latter case the existence of the directory is benign. If you set this "
-"variable, you shall no longer be given a chance to abort if a preexisting "
-"modules directory I</lib/modules/$version> is detected. This is unset by "
-"default."
-msgstr ""
-"Diese Option wurde für die Leute eingebaut, die durch die Warnung über das "
-"vorher existierende Verzeichnis I</lib/modules/$version> erheblich irritiert "
-"wurden. Dieses Verzeichnis könnte zu einem alten oder nicht mehr "
-"existierenden Kernel-Image-Paket gehören. In diesem Fall können Probleme mit "
-"übriggebliebenen Modulen in diesem Verzeichnisbaum auftreten oder das "
-"Verzeichnis könnte aufgrund eines unabhängigen Modulpakets zu Recht "
-"existieren, das für diese Kernel-Version installiert wird und bereits "
-"entpackt wurde. In diesem letzeren Fall ist die Existenz des Verzeichnisses "
-"ungefährlich. Falls Sie diese Variable setzen, haben Sie nicht länger die "
-"Möglichkeit abzubrechen, falls ein vorher existierendes Modulverzeichnis I</"
-"lib/modules/$version> entdeckt wird. Dies ist standardmäßig nicht gesetzt."
-
-#. type: TP
-#: man/kernel-img.conf.5:407
-#, no-wrap
-msgid "B<ignore_depmod_err>"
-msgstr "B<ignore_depmod_err>"
-
-#. type: Plain text
-#: man/kernel-img.conf.5:413
-msgid ""
-"If set, does not prompt to continue after a depmod problem in the postinst "
-"script. This facilitates automated installs, though it may mask a problem "
-"with the kernel image. A diagnostic is still issued. This is unset by "
-"default."
-msgstr ""
-"Falls gesetzt, wird nach einem Depmod-Problem im Vorinstallationsskript "
-"nicht gefragt, ob fortgesetzt werden soll. Dies erleichtert automatische "
-"Installationen, könnte allerdings ein Problem mit dem Kernel-Image "
-"verbergen. Eine Diagnose wird immer noch ausgegeben. Dies ist standardmäßig "
-"nicht gesetzt."
-
-#. type: tbl table
-#: man/kernel-img.conf.5:417
-#, no-wrap
-msgid "unsupported since v4.4.1-1~exp1;"
-msgstr "seit v4.4.1-1~exp1 nicht unterstützt;"
-
-#. type: tbl table
-#: man/kernel-img.conf.5:420
-#, no-wrap
-msgid "previously ignored"
-msgstr "früher ignoriert"
-
#. type: SH
-#: man/kernel-img.conf.5:423
+#: man/kernel-img.conf.5:78
#, no-wrap
msgid "FILES"
msgstr "DATEIEN"
#. type: Plain text
-#: man/kernel-img.conf.5:430
-msgid ""
-"The file described here is I</etc/kernel-img.conf>. B<kernel-common> "
-"includes example scripts suitable for dropping into I</etc/kernel/*.d> "
-"installed in I</usr/share/doc/kernel-common/examples>."
-msgstr ""
-"Die hier beschriebene Datei ist I</etc/kernel-img.conf>. B<kernel-common> "
-"enthält Beispielskripte, die zur Ablage in I</etc/kernel/*.d> geeignet sind. "
-"Diese werden unter I</usr/share/doc/kernel-common/examples> installiert."
+#: man/kernel-img.conf.5:81
+msgid "The file described here is I</etc/kernel-img.conf>."
+msgstr "Die hier beschriebene Datei ist I</etc/kernel-img.conf>."
#. type: SH
-#: man/kernel-img.conf.5:430
+#: man/kernel-img.conf.5:81
#, no-wrap
msgid "SEE ALSO"
msgstr "SIEHE AUCH"
#. type: Plain text
-#: man/kernel-img.conf.5:434
-msgid "B<linux-update-symlinks>(8), B<make-kpkg>(1), B<kernel-pkg.conf>(5)"
-msgstr "B<linux-update-symlinks>(8), B<make-kpkg>(1), B<kernel-pkg.conf>(5)"
+#: man/kernel-img.conf.5:83
+msgid "B<linux-update-symlinks>(8)"
+msgstr "B<linux-update-symlinks>(8)"
#. type: SH
-#: man/kernel-img.conf.5:434
+#: man/kernel-img.conf.5:83
#, no-wrap
msgid "AUTHOR"
msgstr "AUTOR"
#. type: Plain text
-#: man/kernel-img.conf.5:436
+#: man/kernel-img.conf.5:85
msgid ""
-"This manual page was written by Manoj Srivastava E<lt>srivasta@debian."
-"orgE<gt> and Ben Hutchings E<lt>benh@debian.orgE<gt> for the Debian GNU/"
-"Linux system."
-msgstr "Diese Handbuchseite wurde von Manoj Srivastava E<lt>srivasta@debian.orgE<gt> und Ben Hutchings E<lt>benh@debian.orgE<gt> für das Debian-GNU/Linux-System geschrieben."
+"This manual page was written by Manoj Srivastava "
+"E<lt>srivasta@debian.orgE<gt> and Ben Hutchings E<lt>benh@debian.orgE<gt> "
+"for the Debian GNU/Linux system."
+msgstr ""
+"Diese Handbuchseite wurde von Manoj Srivastava E<lt>srivasta@debian.orgE<gt> "
+"und Ben Hutchings E<lt>benh@debian.orgE<gt> für das Debian-GNU/Linux-System "
+"geschrieben."
diff -Nru linux-base-4.11/po/fr.po linux-base-4.12/po/fr.po
--- linux-base-4.11/po/fr.po 2025-01-01 13:33:30.000000000 +0100
+++ linux-base-4.12/po/fr.po 2025-05-25 21:05:02.000000000 +0200
@@ -8,8 +8,8 @@
msgid ""
msgstr ""
"Project-Id-Version: linux-base\n"
-"POT-Creation-Date: 2019-03-24 21:37+0000\n"
-"PO-Revision-Date: 2021-12-06 18:01+0100\n"
+"POT-Creation-Date: 2025-05-25 20:05+0200\n"
+"PO-Revision-Date: 2025-05-25 20:03+0200\n"
"Last-Translator: bubu <bubub@no-log.org>\n"
"Language-Team: French <debian-l10n-french@lists.debian.org>\n"
"Language: fr\n"
@@ -29,8 +29,8 @@
#. type: TH
#: man/kernel-img.conf.5:25
#, no-wrap
-msgid "24 March 2019"
-msgstr "24 mars 2019"
+msgid "25 May 2025"
+msgstr "25 mai 2025"
# type: TH
#. type: TH
@@ -84,126 +84,66 @@
# type: Plain text
#. type: Plain text
-#: man/kernel-img.conf.5:38
+#: man/kernel-img.conf.5:37
msgid ""
"The file I</etc/kernel-img.conf> is used by the kernel package installation "
"and removal process to allow local options for handling some aspects of the "
-"installation. Most configuration variables apply only to kernel image "
-"packages."
+"installation."
msgstr ""
"Le fichier I</etc/kernel-img.conf> est utilisé par le processus "
"d'installation et de supression du paquet du noyau pour autoriser le "
-"traitement de quelques aspects de l'installation par des options locales. La "
-"plupart des variables de configuration ne s'appliquent qu'aux paquets de "
-"l'image du noyau."
+"traitement de quelques aspects de l'installation par des options locales."
#. type: Plain text
-#: man/kernel-img.conf.5:41
-msgid ""
-"Not all kernel image package creators support this file, or all the "
-"configuration variables. Support status for the file itself is:"
-msgstr ""
-"Tous les créateurs de paquets d'images de noyau ne prennent pas en charge ce "
-"fichier, ni toutes les variables de configuration. Le statut de prise en "
-"charge pour le fichier est :"
+#: man/kernel-img.conf.5:39
+msgid "Not all kernel image package creators support this file:"
+msgstr "Tous les créateurs de paquets d'images de noyau ne prennent pas en charge ce fichier:"
#. type: tbl table
-#: man/kernel-img.conf.5:44 man/kernel-img.conf.5:74 man/kernel-img.conf.5:88
-#: man/kernel-img.conf.5:102 man/kernel-img.conf.5:142
-#: man/kernel-img.conf.5:177 man/kernel-img.conf.5:207
-#: man/kernel-img.conf.5:242 man/kernel-img.conf.5:275
-#: man/kernel-img.conf.5:304 man/kernel-img.conf.5:319
-#: man/kernel-img.conf.5:337 man/kernel-img.conf.5:352
-#: man/kernel-img.conf.5:367 man/kernel-img.conf.5:380
-#: man/kernel-img.conf.5:402 man/kernel-img.conf.5:416
+#: man/kernel-img.conf.5:42
#, no-wrap
msgid "B<Package creator>"
msgstr "B<Package creator>"
#. type: tbl table
-#: man/kernel-img.conf.5:44 man/kernel-img.conf.5:74 man/kernel-img.conf.5:88
-#: man/kernel-img.conf.5:102 man/kernel-img.conf.5:142
-#: man/kernel-img.conf.5:177 man/kernel-img.conf.5:207
-#: man/kernel-img.conf.5:242 man/kernel-img.conf.5:275
-#: man/kernel-img.conf.5:304 man/kernel-img.conf.5:319
-#: man/kernel-img.conf.5:337 man/kernel-img.conf.5:352
-#: man/kernel-img.conf.5:367 man/kernel-img.conf.5:380
-#: man/kernel-img.conf.5:402 man/kernel-img.conf.5:416
+#: man/kernel-img.conf.5:42
#, no-wrap
msgid "B<Status>"
msgstr "B<Status>"
#. type: tbl table
-#: man/kernel-img.conf.5:45 man/kernel-img.conf.5:75 man/kernel-img.conf.5:89
-#: man/kernel-img.conf.5:103 man/kernel-img.conf.5:143
-#: man/kernel-img.conf.5:178 man/kernel-img.conf.5:208
-#: man/kernel-img.conf.5:243 man/kernel-img.conf.5:276
-#: man/kernel-img.conf.5:305 man/kernel-img.conf.5:320
-#: man/kernel-img.conf.5:338 man/kernel-img.conf.5:353
-#: man/kernel-img.conf.5:368 man/kernel-img.conf.5:381
-#: man/kernel-img.conf.5:403 man/kernel-img.conf.5:417
+#: man/kernel-img.conf.5:43
#, no-wrap
msgid "Debian linux source package"
msgstr "Paquet source linux Debian "
#. type: tbl table
-#: man/kernel-img.conf.5:45 man/kernel-img.conf.5:46 man/kernel-img.conf.5:47
-#: man/kernel-img.conf.5:75 man/kernel-img.conf.5:76 man/kernel-img.conf.5:89
-#: man/kernel-img.conf.5:90 man/kernel-img.conf.5:103 man/kernel-img.conf.5:104
-#: man/kernel-img.conf.5:322 man/kernel-img.conf.5:340
-#: man/kernel-img.conf.5:355 man/kernel-img.conf.5:370
-#: man/kernel-img.conf.5:383 man/kernel-img.conf.5:405
-#: man/kernel-img.conf.5:421
+#: man/kernel-img.conf.5:43 man/kernel-img.conf.5:44
#, no-wrap
msgid "supported"
msgstr "pris en charge"
#. type: tbl table
-#: man/kernel-img.conf.5:46 man/kernel-img.conf.5:76 man/kernel-img.conf.5:90
-#: man/kernel-img.conf.5:104 man/kernel-img.conf.5:145
-#: man/kernel-img.conf.5:180 man/kernel-img.conf.5:210
-#: man/kernel-img.conf.5:245 man/kernel-img.conf.5:277
-#: man/kernel-img.conf.5:306 man/kernel-img.conf.5:321
-#: man/kernel-img.conf.5:339 man/kernel-img.conf.5:354
-#: man/kernel-img.conf.5:369 man/kernel-img.conf.5:382
-#: man/kernel-img.conf.5:404 man/kernel-img.conf.5:419
+#: man/kernel-img.conf.5:44
#, no-wrap
msgid "Ubuntu linux source package"
msgstr "paquet source linux Ubuntu"
#. type: tbl table
-#: man/kernel-img.conf.5:47 man/kernel-img.conf.5:77 man/kernel-img.conf.5:91
-#: man/kernel-img.conf.5:105 man/kernel-img.conf.5:147
-#: man/kernel-img.conf.5:182 man/kernel-img.conf.5:212
-#: man/kernel-img.conf.5:247 man/kernel-img.conf.5:278
-#: man/kernel-img.conf.5:308 man/kernel-img.conf.5:322
-#: man/kernel-img.conf.5:340 man/kernel-img.conf.5:355
-#: man/kernel-img.conf.5:370 man/kernel-img.conf.5:383
-#: man/kernel-img.conf.5:405 man/kernel-img.conf.5:421
-#, no-wrap
-msgid "kernel-package"
-msgstr "kernel-package"
-
-#. type: tbl table
-#: man/kernel-img.conf.5:48
+#: man/kernel-img.conf.5:45
#, no-wrap
msgid "make deb-pkg"
msgstr "make deb-pkg"
#. type: tbl table
-#: man/kernel-img.conf.5:48 man/kernel-img.conf.5:320 man/kernel-img.conf.5:321
-#: man/kernel-img.conf.5:338 man/kernel-img.conf.5:339
-#: man/kernel-img.conf.5:353 man/kernel-img.conf.5:354
-#: man/kernel-img.conf.5:368 man/kernel-img.conf.5:369
-#: man/kernel-img.conf.5:381 man/kernel-img.conf.5:382
-#: man/kernel-img.conf.5:403 man/kernel-img.conf.5:404
+#: man/kernel-img.conf.5:45
#, no-wrap
msgid "ignored"
msgstr "ignoré"
# type: Plain text
#. type: Plain text
-#: man/kernel-img.conf.5:64
+#: man/kernel-img.conf.5:61
msgid ""
"The format of the file is a simple I<VAR>B<=>I<VALUE> pair. Boolean values "
"may be specified as I<Yes>, I<True>, I<1>, and I<No>, I<False>, I<0>, and "
@@ -218,20 +158,20 @@
# type: Plain text
#. type: Plain text
-#: man/kernel-img.conf.5:66
+#: man/kernel-img.conf.5:63
msgid "At the moment, the user modifiable variables supported are:"
msgstr ""
"Les variables actuellement modifiables par l'utilisateur sont les "
"suivantes\\ :"
#. type: TP
-#: man/kernel-img.conf.5:66
+#: man/kernel-img.conf.5:63
#, no-wrap
msgid "B<do_symlinks>"
msgstr "B<do_symlinks>"
#. type: Plain text
-#: man/kernel-img.conf.5:71
+#: man/kernel-img.conf.5:68
msgid ""
"If set, the postinst and postrm scripts will maintain symlinks to default "
"kernel and initramfs images, as described in I<linux-update-symlinks>(8). "
@@ -242,31 +182,14 @@
"mémoire initial par défaut, comme expliqué dans I<linux-update-symlinks>(8). "
"Cette variable est active par défaut."
-#. type: tbl table
-#: man/kernel-img.conf.5:77 man/kernel-img.conf.5:91 man/kernel-img.conf.5:105
-#, no-wrap
-msgid "ignored since v12.001;"
-msgstr "ignoré depuis la version v12.001"
-
-#. type: tbl table
-#: man/kernel-img.conf.5:78 man/kernel-img.conf.5:92 man/kernel-img.conf.5:106
-#: man/kernel-img.conf.5:144 man/kernel-img.conf.5:146
-#: man/kernel-img.conf.5:179 man/kernel-img.conf.5:181
-#: man/kernel-img.conf.5:209 man/kernel-img.conf.5:211
-#: man/kernel-img.conf.5:244 man/kernel-img.conf.5:246
-#: man/kernel-img.conf.5:307 man/kernel-img.conf.5:418
-#, no-wrap
-msgid "previously supported"
-msgstr "anciennement pris en charge"
-
#. type: TP
-#: man/kernel-img.conf.5:80
+#: man/kernel-img.conf.5:68
#, no-wrap
msgid "B<image_dest>"
msgstr "B<image_dest>"
#. type: Plain text
-#: man/kernel-img.conf.5:85
+#: man/kernel-img.conf.5:73
msgid ""
"Set this variable to the directory in which symlinks to the default kernel "
"and initramfs images should be maintained. The default value is I</>."
@@ -277,13 +200,13 @@
# type: TP
#. type: TP
-#: man/kernel-img.conf.5:94
+#: man/kernel-img.conf.5:73
#, no-wrap
msgid "B<link_in_boot>"
msgstr "B<link_in_boot>"
#. type: Plain text
-#: man/kernel-img.conf.5:99
+#: man/kernel-img.conf.5:78
msgid ""
"If set, this has the same effect as I<image_dest\\ =\\ /boot> and overrides "
"any other setting of B<image_dest>. This variable is unset by default."
@@ -292,503 +215,46 @@
"I<image_dest\\=\\ /boot> et écrase tout autre réglage de B<image_dest>. "
"Cette variable n'a pas de valeur par défaut."
-# type: TP
-#. type: TP
-#: man/kernel-img.conf.5:108
-#, no-wrap
-msgid "B<postinst_hook>"
-msgstr "B<postinst_hook>"
-
-# type: Plain text
-#. type: Plain text
-#: man/kernel-img.conf.5:139
-msgid ""
-"B<DEPRECATED>: Set this variable to a script to be executed during "
-"installation. The path can be a relative path if the script lives in a safe "
-"path -- that is, if it lives in /bin, /sbin, /usr/bin, or /usr/sbin, or must "
-"be an absolute path instead. Before calling this script, the environment "
-"variable B<STEM> shall be set to the value of the I<--stem> argument (or the "
-"default value, linux), and in packages created by kernel-package "
-"B<KERNEL_PACKAGE_VERSION> shall be set to the version of the kernel-package "
-"that created the package. This script shall be called with two arguments, "
-"the first being the I<version> of the kernel image, and the second argument "
-"being the I<location> of the kernel image itself. Errors in the script shall "
-"cause the postinst to fail. Since debconf is in use before the script is "
-"called, this script should issue no diagnostic messages to stdout -- while "
-"the postinst does call B<db_stop>, debconf does not restore stdout, so "
-"messages to stdout disappear. An example script for grub users is present "
-"in /usr/share/doc/kernel-package/ directory. This script is run I<after> "
-"the scripts in /etc/kernel/postinst.d directory."
-msgstr ""
-"B<OBSOLETE>\\ : Indiquez cette variable à un script à exécuter durant "
-"l'installation. Le chemin peut être un chemin relatif si le script est situé "
-"dans un chemin sûr (c'est à dire s'il se trouve dans /bin, /sbin, /usr/bin, "
-"ou /usr/sbin), sinon il doit être dans un chemin absolu. Avant d'appeler ce "
-"script, la variable d'environnement B<STEM> doit être définie avec la même "
-"valeur que l'argument I<--stem> (ou contenir la valeur par défaut, linux), "
-"et dans les paquets créés par kernel-package B<KERNEL_PACKAGE_VERSION> doit "
-"être défini à la version de kernel-package qui a créé le paquet. Ce script "
-"doit être appelé avec deux arguments, le premier étant la I<version> de "
-"l'image du noyau et le second étant l'I<emplacement> de l'image du noyau.Des "
-"erreurs dans le script causeront l'échec de la post-installation. Lorsqu'on "
-"utilise debconf avant l'appel du script, ce dernier ne générera pas de "
-"message de diagnostic sur la sortie standard. En effet, au moment où la "
-"postinstallation apelle B<db_stop>, debconf ne rétablit pas la sortie "
-"standard, donc tous les messages en sa direction disparaissent. Un exemple "
-"de script pour les utilisateurs de grub est présent dans le répertoire /usr/"
-"share/doc/kernel-package/ . Ce script est lancé I<après> les scripts dans le "
-"répertoire /etc/kernel/postinst.d."
-
-#. type: tbl table
-#: man/kernel-img.conf.5:143 man/kernel-img.conf.5:178
-#: man/kernel-img.conf.5:208 man/kernel-img.conf.5:243
-#, no-wrap
-msgid "unsupported since v4.6.1-1;"
-msgstr "non pris en charge depuis la version v4.6.1-1 ;"
-
-#. type: tbl table
-#: man/kernel-img.conf.5:145 man/kernel-img.conf.5:180
-#: man/kernel-img.conf.5:210 man/kernel-img.conf.5:245
-#: man/kernel-img.conf.5:306 man/kernel-img.conf.5:419
-#, no-wrap
-msgid "unsupported since v4.15.0-18.19;"
-msgstr "non pris en charge depuis la version v4.15.0-18.19 ;"
-
-#. type: tbl table
-#: man/kernel-img.conf.5:147 man/kernel-img.conf.5:182
-#: man/kernel-img.conf.5:212 man/kernel-img.conf.5:247
-#: man/kernel-img.conf.5:278 man/kernel-img.conf.5:308
-#, no-wrap
-msgid "deprecated"
-msgstr "obsolète"
-
-# type: TP
-#. type: TP
-#: man/kernel-img.conf.5:149
-#, no-wrap
-msgid "B<postrm_hook>"
-msgstr "B<postrm_hook>"
-
-# type: Plain text
-#. type: Plain text
-#: man/kernel-img.conf.5:174
-msgid ""
-"B<DEPRECATED>: Set this variable to a script to be executed in the postrm "
-"(that is, after the image has been removed) after all the remove actions "
-"have been performed. The path can be a relative path if the script lives in "
-"a safe path -- that is, if it lives in /bin, /sbin, /usr/bin, or /usr/sbin, "
-"or must be an absolute path instead. In packages created by kernel-package, "
-"the environment variable B<KERNEL_PACKAGE_VERSION> shall be set to the "
-"version of the kernel-package that created the package. This script shall be "
-"called with two arguments, the first being the I<version> of the kernel "
-"image, and the second argument being the I<location> of the kernel image "
-"itself. Errors in the script shall produce a warning message, but shall be "
-"otherwise ignored. Since debconf is in use before the script is called, this "
-"script should issue no diagnostic messages to stdout -- while the postinst "
-"does call B<db_stop>, debconf does not restore stdout, so messages to stdout "
-"disappear. This script is run I<after> the scripts in /etc/kernel/postrm.d "
-"directory."
-msgstr ""
-"B<OBSOLETE>\\ : Indiquez cette variable à un script à exécuter dans le "
-"postrm (c'est-à-dire, après que l'image a été supprimée) après que toutes "
-"les actions de suppression ont été effectuées. Le chemin peut être un chemin "
-"relatif si le script est situé dans un répertoire «\\ sûr\\ » (c'est-à-dire "
-"s'il est dans /bin, /sbin, /usr/-bin, ou /usn/sbin), sinon il doit être "
-"exprimé en absolu. Dans les paquets créés par kernel-package la variable "
-"d'environnement B<KERNEL_PACKAGE_VERSION> doit contenir la version de kernel-"
-"package qui a créé le paquet. Ce script doit être appelé avec deux "
-"arguments, le premier est la I<version> de l'image du noyau, et le second "
-"est l'I<adresse> de l'image du noyau elle-même. Des erreurs dans le script "
-"déclencheront un message d'avertissement, mais sera ignoré. Lorsqu'on "
-"utilise debconf avant l'appel du script, ce dernier ne générera pas de "
-"message de diagnostic sur la sortie standard. En effet, au moment où la "
-"postinstallation appelle B<db_stop>, debconf ne rétablit pas la sortie "
-"standard, donc tous les messages en sa direction disparaissent. Ce script "
-"est exécuté I<après> les scripts du répertoire /etc/kernel/postrm.d."
-
-# type: TP
-#. type: TP
-#: man/kernel-img.conf.5:184
-#, no-wrap
-msgid "B<preinst_hook>"
-msgstr "B<preinst_hook>"
-
-# type: Plain text
-#. type: Plain text
-#: man/kernel-img.conf.5:204
-msgid ""
-"B<DEPRECATED>: Set this variable to a script to be executed before the "
-"package is unpacked, and can be used to put in additional checks. The path "
-"can be a relative path if the script lives in a safe path -- that is, if it "
-"lives in /bin, /sbin, /usr/bin, or /usr/sbin, or must be an absolute path "
-"instead. In packages created by kernel-package, the environment variable "
-"B<KERNEL_PACKAGE_VERSION> shall be set to the version of the kernel-package "
-"that created the package. This script shall be called with two arguments, "
-"the first being the I<version> of the kernel image, and the second argument "
-"being the I<location> of the kernel image itself. This script is run "
-"I<after> the scripts in /etc/kernel/preinst.d directory."
-msgstr ""
-"B<OBSOLETE>\\ : Indiquez cette variable à un script à exécuter avant que le "
-"paquet ne soit dépaqueté\\ ; il peut servir à effectuer d'autres contrôles. "
-"Le chemin peut être un chemin relatif si le script est situé dans un "
-"répertoire «\\ sûr\\ » (c'est-à-dire s'il est dans /bin, /sbin, /usr/bin, "
-"ou /usr/sbin), sinon il doit être exprimé en absolu. Dans les paquets créés "
-"par kernel-package la variable d'environnement B<KERNEL_PACKAGE_VERSION> "
-"doit être définie à la version de kernel-package qui a créé le paquet. Ce "
-"script doit être appelé avec deux arguments, le premier est la I<version> de "
-"l'image du noyau, et le second est l'I<adresse> de l'image du noyau elle-"
-"même. Ce script est exécuté I<après> les scripts du répertoire /etc/kernel/"
-"preinst.d."
-
-# type: TP
-#. type: TP
-#: man/kernel-img.conf.5:214
-#, no-wrap
-msgid "B<prerm_hook>"
-msgstr "B<prerm_hook>"
-
-# type: Plain text
-#. type: Plain text
-#: man/kernel-img.conf.5:239
-msgid ""
-"B<DEPRECATED>: Set this variable to a script to be executed before the "
-"package files are removed (so any added files may be removed) . The path can "
-"be a relative path if the script lives in a safe path -- that is, if it "
-"lives in /bin, /sbin, /usr/bin, or /usr/sbin, or must be an absolute path "
-"instead. In packages created by kernel-package, the environment variable "
-"B<KERNEL_PACKAGE_VERSION> shall be set to the version of the kernel-package "
-"that created the package. This script shall be called with two arguments, "
-"the first being the I<version> of the kernel image, and the second argument "
-"being the I<location> of the kernel image itself. Errors in the script shall "
-"cause the prerm to fail. Since debconf is in use before the script is "
-"called, this script should issue no diagnostic messages to stdout -- while "
-"the postinst does call B<db_stop>, debconf does not restore stdout, so "
-"messages to stdout disappear. This script is run I<after> the scripts in /"
-"etc/kernel/prerm.d directory."
-msgstr ""
-"B<OBSOLETE>\\ : Indiquez cette variable à un script à exécuter avant que les "
-"fichiers du paquet ne soient supprimés (donc tout fichier ajouté peut être "
-"supprimé). Le chemin peut être un chemin relatif si le script est situé dans "
-"un répertoire «\\ sûr\\ » (c'est-à-dire s'il est dans /bin, /sbin, /usr/bin, "
-"ou /usr/sbin), sinon il doit être exprimé en absolu. Dans les paquets créés "
-"par kernel-package la variable d'environnement B<KERNEL_PACKAGE_VERSION> "
-"doit être définie à la version de kernel-package qui a créé du paquet. Ce "
-"script doit être appelé avec deux arguments, le premier est la I<version> de "
-"l'image du noyau, et le second est l'I<adresse> de l'image du noyau elle-"
-"même. Des erreurs dans le script déclencheront un échec de prerm. Lorsqu'on "
-"utilise debconf avant que le script ne soit appellé, ce dernier ne générera "
-"pas de message de diagnostic sur la sortie standard. En effet, au moment où "
-"la postinstallation appelle B<db_stop> debconf ne rétablit pas la sortie "
-"standard, donc tous les messages en sa direction disparaissent. Ce script "
-"est exécuté I<après> les scripts du répertoire /etc/kernel/prerm.d."
-
-# type: TP
-#. type: TP
-#: man/kernel-img.conf.5:249
-#, no-wrap
-msgid "B<src_postinst_hook>"
-msgstr "B<src_postinst_hook>"
-
-# type: Plain text
-#. type: Plain text
-#: man/kernel-img.conf.5:272
-msgid ""
-"B<DEPRECATED>: Unlike the other hook variables, this is meant for a script "
-"run during the post inst of a docs, headers or a source package. Using this "
-"hook for the headers package is now being deprecated, at some point the "
-"headers post install script shall only run the header_postinst_hook. The "
-"path can be a relative path if the script lives in a safe path -- that is, "
-"if it lives in /bin, /sbin, /usr/bin, or /usr/sbin, or must be an absolute "
-"path instead. The environment variable B<KERNEL_PACKAGE_VERSION> shall be "
-"set to the version of the kernel-package that created the package. This "
-"script shall be called with two arguments, the first being the I<name> of "
-"the package being installed (could be kernel source or headers), and the "
-"second argument being the I<version> of the package being installed. Errors "
-"in the script shall cause the postinst to fail. This script is run I<after> "
-"the scripts in /etc/kernel/src_postinst.d directory."
-msgstr ""
-"B<OBSOLETE>\\ : Contrairement aux autres variables de type «\\ hook\\ », "
-"cette variable est destinée à un script qui sera exécuté pendant la phase de "
-"postinstallation d'un paquet de documentation, d'en-têtes ou de sources. "
-"L'utilisation de cette possibilité pour les paquets d'en-têtes est "
-"maintenant déconseillée\\ ; le script de postinstallation des paquets d'en-"
-"têtes doit seulement lancer le script headers_postinst_hook. Le chemin peut "
-"être un chemin relatif si le script est situé dans un répertoire «\\ sûr\\ "
-"» (c'est-à-dire s'il est dans /bin, /sbin, /usr/bin, ou /usr/sbin), sinon il "
-"doit être exprimé en absolu. La variable d'environnement "
-"B<KERNEL_PACKAGE_VERSION> doit contenir la version de kernel-package qui a "
-"créé le paquet. Ce script doit être appelé avec deux arguments, le premier "
-"est le I<nom> du paquet à installer (ce peut être les sources noyau, ou les "
-"entêtes), et le second est la I<version> du paquet à installer. Des erreurs "
-"dans le script déclencheront un échec de postinst. Ce script est exécuté "
-"I<après> les scripts du répertoire /etc/kernel/src_postinst.d."
-
-#. type: tbl table
-#: man/kernel-img.conf.5:276 man/kernel-img.conf.5:277
-#: man/kernel-img.conf.5:305
-#, no-wrap
-msgid "unsupported"
-msgstr "non pris en charge"
-
-# type: TP
-#. type: TP
-#: man/kernel-img.conf.5:280
-#, no-wrap
-msgid "B<header_postinst_hook>"
-msgstr "B<header_postinst_hook>"
-
-# type: Plain text
-#. type: Plain text
-#: man/kernel-img.conf.5:301
-msgid ""
-"B<DEPRECATED>: Unlike the other hook variables, this is meant for a script "
-"run during the post inst of a headers package only. The path can be a "
-"relative path if the script lives in a safe path -- that is, if it lives in /"
-"bin, /sbin, /usr/bin, or /usr/sbin, or must be an absolute path instead. In "
-"packages created by kernel-package, the environment variable "
-"B<KERNEL_PACKAGE_VERSION> shall be set to the version of the kernel-package "
-"that created the package. This script shall be called with two arguments, "
-"the first being the I<name> of the package being installed, and the second "
-"argument being the I<version> of the package being installed. Errors in the "
-"script shall cause the postinst to fail. This script is run I<after> the "
-"scripts in /etc/kernel/header_postinst.d directory."
-msgstr ""
-"B<OBSOLETE>\\ : Contrairement aux autres variables de type «\\ hook\\ », "
-"cette variable est destinée à un script qui sera exécuté pendant la phase de "
-"postinstallation d'un paquet d'en-têtes seulement. Le chemin peut être un "
-"chemin relatif si le script est situé dans un répertoire «\\ sûr\\ » (c'est-"
-"à-dire s'il est dans /bin, /sbin, /usr/bin ou /usr/sbin), sinon il doit être "
-"exprimé en absolu. Dans les paquets créés par kernel-package la variable "
-"d'environnement B<KERNEL_PACKAGE_VERSION> doit être définie à la version de "
-"kernel-package qui a créé le paquet. Ce script sera appelé avec deux "
-"arguments, le premier étant le I<nom> du paquet à installer, le second étant "
-"la I<version> du paquet à être installé. Des erreurs dans le script "
-"déclencheront un échec de la postinstallation. Ce script est exécuté "
-"I<après> les scripts du répertoire /etc/kernel/src_postinst.d."
-
-# type: TP
-#. type: TP
-#: man/kernel-img.conf.5:310
-#, no-wrap
-msgid "B<clobber_modules>"
-msgstr "B<clobber_modules>"
-
-# type: Plain text
-#. type: Plain text
-#: man/kernel-img.conf.5:316
-msgid ""
-"If set, the preinst shall silently try to move /lib/modules/version out of "
-"the way if it is the same version as the image being installed. Use at your "
-"own risk. This variable is unset by default."
-msgstr ""
-"Quand cette variable est déclarée, le script de préinstallation cherchera à "
-"déplacer silencieusement /lib/modules/version, si cette version est la même "
-"que celle de l'image à installer. Utilisez-la à vos risques et périls. Cette "
-"variable n'a pas de valeur par défaut."
-
-# type: TP
-#. type: TP
-#: man/kernel-img.conf.5:324
-#, no-wrap
-msgid "B<warn_reboot>"
-msgstr "B<warn_reboot>"
-
-# type: Plain text
-#. type: Plain text
-#: man/kernel-img.conf.5:334
-msgid ""
-"This variable can be used to turn off the warning given when installing a "
-"kernel image which is the same version as the currently running version. If "
-"the modules list is changed, the modules dependencies may have been changed, "
-"and the modules for the new kernel may not run correctly on the running "
-"kernel if the kernel ABI has changed in the meanwhile. It is a good idea to "
-"reboot, and this is a note to remind you. If you know what you are doing, "
-"you can set this variable to no. This variable is set by default."
-msgstr ""
-"Cette variable peut être utilisée pour désactiver l'émission des alertes "
-"(«\\ warnings\\ ») lors de l'installation d'une image du noyau qui est de la "
-"même version que celle actuellement lancée. Si la liste des modules a "
-"changé, les dépendances entre modules ont peut-être été modifiées et les "
-"modules du nouveau noyau pourraient ne pas fonctionner correctement avec le "
-"noyau actuel, notamment si la liste des ABI du noyau a changé entre les "
-"deux. C'est une bonne idée de redémarrer la machine et un message vous le "
-"précisera. Si vous savez ce que vous faites, vous pouvez définir cette "
-"variable à «\\ no\\ ». Cette variable est active par défaut."
-
-# type: TP
-#. type: TP
-#: man/kernel-img.conf.5:342
-#, no-wrap
-msgid "B<relink_build_link>"
-msgstr "B<relink_build_link>"
-
-# type: Plain text
-#. type: Plain text
-#: man/kernel-img.conf.5:349
-msgid ""
-"This option manipulates the build link created by recent kernels. If the "
-"link is a dangling link, and if a the corresponding kernel headers appear to "
-"have been installed on the system, a new symlink shall be created to point "
-"to them. The default is to relink the build link (YES)."
-msgstr ""
-"Cette option manipule le lien de construction («\\ build link\\ ») créé par "
-"les noyaux récents. Si le lien est un lien ballant et si les en-têtes du "
-"noyau correspondants semblent avoir été installés sur le système, un nouveau "
-"lien symbolique sera créé et pointera sur eux. La valeur par défaut est de "
-"recréer le lien de construction («\\ YES\\ »)."
-
-# type: TP
-#. type: TP
-#: man/kernel-img.conf.5:357
-#, no-wrap
-msgid "B<force_build_link>"
-msgstr "B<force_build_link>"
-
-# type: Plain text
-#. type: Plain text
-#: man/kernel-img.conf.5:364
-msgid ""
-"This option manipulates the build link created by recent kernels. If the "
-"link is a dangling link, a new symlink shall be created to point to kernel "
-"headers data in /usr/src, whether they have been installed or not. The "
-"default is unset, we don't create potentially dangling symlinks by default."
-msgstr ""
-"Cette option manipule le lien de construction créé par les noyaux récents. "
-"Si le lien est un lien ballant, un nouveau lien symbolique sera créé et "
-"pointera sur /usr/src/, que ces en-têtes aient été installés ou non. Il n'y "
-"a pas de valeur par défaut, les liens symboliques potentiellement pendants "
-"ne sont pas créés par défaut."
-
-# type: TP
-#. type: TP
-#: man/kernel-img.conf.5:372
-#, no-wrap
-msgid "B<relink_src_link>"
-msgstr "B<relink_src_link>"
-
-# type: Plain text
-#. type: Plain text
-#: man/kernel-img.conf.5:377
-msgid ""
-"This option manipulates the source link created by recent kernels. If the "
-"link is a dangling link it is deleted at install time. The default is to "
-"relink (delete) the source link (YES)."
-msgstr ""
-"Cette option manipule le «\\ source link\\ » créé par les noyaux récents. Si "
-"le lien est un lien pendant, il sera effacé au moment de l'installation. La "
-"valeur par défaut est de recréer (effacer) le lien des sources («\\ YES\\ »)."
-
-# type: TP
-#. type: TP
-#: man/kernel-img.conf.5:385
-#, no-wrap
-msgid "B<silent_modules>"
-msgstr "B<silent_modules>"
-
-# type: Plain text
-#. type: Plain text
-#: man/kernel-img.conf.5:399
-msgid ""
-"This option has been put in for the people who are vastly irritated on being "
-"warned about preexisting modules directory I</lib/modules/$version>. That "
-"directory may belong to an old or defunct kernel image package, in which "
-"case problems may arise with leftover modules in that directory tree, or the "
-"directory may legitimately exist due to a independent modules package being "
-"installed for this kernel version that has already been unpacked. In this "
-"latter case the existence of the directory is benign. If you set this "
-"variable, you shall no longer be given a chance to abort if a preexisting "
-"modules directory I</lib/modules/$version> is detected. This is unset by "
-"default."
-msgstr ""
-"Cette option est là pour ceux qui sont excédés par les avertissements "
-"concernant l'existence d'un répertoire de modules I</lib/modules/$version>. "
-"Ce répertoire peut appartenir à un ancien paquet image du noyau, qui a peut-"
-"être même disparu, auquel cas les modules restant dans ce répertoire peuvent "
-"poser problème\\ ; ou bien, ce répertoire a le droit d'exister parce qu'on "
-"installe un paquet indépendant des modules d'une version du noyau qui a déjà "
-"été dépaquetée. Dans ce dernier cas, l'existence de ce répertoire est "
-"bénigne. Si vous utilisez cette variable, vous n'aurez plus la possibilité "
-"d'interrompre l'installation si un répertoire I</lib/modules/$version> est "
-"détecté. Cette variable n'a pas de valeur par défaut."
-
-# type: TP
-#. type: TP
-#: man/kernel-img.conf.5:407
-#, no-wrap
-msgid "B<ignore_depmod_err>"
-msgstr "B<ignore_depmod_err>"
-
-# type: Plain text
-#. type: Plain text
-#: man/kernel-img.conf.5:413
-msgid ""
-"If set, does not prompt to continue after a depmod problem in the postinst "
-"script. This facilitates automated installs, though it may mask a problem "
-"with the kernel image. A diagnostic is still issued. This is unset by "
-"default."
-msgstr ""
-"Quand cette variable est déclarée, ne demande pas de continuer après un "
-"problème depmod dans le script postinst. Cela facilite les installations "
-"automatisées, bien que cela pourrait masquer un problème avec l'image du "
-"noyau. Un diagnostic est encore émis. Cela n'est pas activé par défaut."
-
-#. type: tbl table
-#: man/kernel-img.conf.5:417
-#, no-wrap
-msgid "unsupported since v4.4.1-1~exp1;"
-msgstr "non pris en charge depuis la version v4.4.1-1~exp1 ;"
-
-#. type: tbl table
-#: man/kernel-img.conf.5:420
-#, no-wrap
-msgid "previously ignored"
-msgstr "anciennement ignoré"
-
# type: SH
#. type: SH
-#: man/kernel-img.conf.5:423
+#: man/kernel-img.conf.5:78
#, no-wrap
msgid "FILES"
msgstr "FICHIERS"
+# type: Plain text
#. type: Plain text
-#: man/kernel-img.conf.5:430
-msgid ""
-"The file described here is I</etc/kernel-img.conf>. B<kernel-common> "
-"includes example scripts suitable for dropping into I</etc/kernel/*.d> "
-"installed in I</usr/share/doc/kernel-common/examples>."
-msgstr ""
-"Le fichier décrit ici est I</etc/kernel-img.conf>. B<kernel-common> contient "
-"des scripts d’exemple pouvant être placés dans I</etc/kernel/*.d>, installés "
-"dans I</usr/share/doc/kernel-common/examples>."
+#: man/kernel-img.conf.5:81
+msgid "The file described here is I</etc/kernel-img.conf>."
+msgstr "Le fichier décrit ici est I</etc/kernel-img.conf>."
# type: SH
#. type: SH
-#: man/kernel-img.conf.5:430
+#: man/kernel-img.conf.5:81
#, no-wrap
msgid "SEE ALSO"
msgstr "VOIR AUSSI"
# type: Plain text
#. type: Plain text
-#: man/kernel-img.conf.5:434
-msgid "B<linux-update-symlinks>(8), B<make-kpkg>(1), B<kernel-pkg.conf>(5)"
-msgstr "B<linux-update-symlinks>(8), B<make-kpkg>(1), B<kernel-pkg.conf>(5)"
+#: man/kernel-img.conf.5:83
+msgid "B<linux-update-symlinks>(8)"
+msgstr "B<linux-update-symlinks>(8)"
# type: SH
#. type: SH
-#: man/kernel-img.conf.5:434
+#: man/kernel-img.conf.5:83
#, no-wrap
msgid "AUTHOR"
msgstr "AUTEUR"
#. type: Plain text
-#: man/kernel-img.conf.5:436
+#: man/kernel-img.conf.5:85
msgid ""
-"This manual page was written by Manoj Srivastava E<lt>srivasta@debian."
-"orgE<gt> and Ben Hutchings E<lt>benh@debian.orgE<gt> for the Debian GNU/"
-"Linux system."
-msgstr ""
-"Cette page de manuel a été écrite par Manoj Srivastava E<lt>srivasta@debian."
-"orgE<gt> et Ben Hutchings E<lt>benh@debian.orgE<gt> pour le système Debian "
-"GNU/Linux."
+"This manual page was written by Manoj Srivastava "
+"E<lt>srivasta@debian.orgE<gt> and Ben Hutchings E<lt>benh@debian.orgE<gt> "
+"for the Debian GNU/Linux system."
+msgstr ""
+"Cette page de manuel a été écrite par Manoj Srivastava "
+"E<lt>srivasta@debian.orgE<gt> et Ben Hutchings E<lt>benh@debian.orgE<gt> "
+"pour le système Debian GNU/Linux."
diff -Nru linux-base-4.11/po/linux-base.pot linux-base-4.12/po/linux-base.pot
--- linux-base-4.11/po/linux-base.pot 2025-01-01 13:33:30.000000000 +0100
+++ linux-base-4.12/po/linux-base.pot 2025-05-25 21:05:02.000000000 +0200
@@ -7,13 +7,13 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2019-03-24 21:37+0000\n"
+"POT-Creation-Date: 2025-05-25 20:05+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=CHARSET\n"
+"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#. type: TH
@@ -25,7 +25,7 @@
#. type: TH
#: man/kernel-img.conf.5:25
#, no-wrap
-msgid "24 March 2019"
+msgid "25 May 2025"
msgstr ""
#. type: TH
@@ -71,71 +71,62 @@
msgstr ""
#. type: Plain text
-#: man/kernel-img.conf.5:38
+#: man/kernel-img.conf.5:37
msgid ""
"The file I</etc/kernel-img.conf> is used by the kernel package installation "
"and removal process to allow local options for handling some aspects of the "
-"installation. Most configuration variables apply only to kernel image "
-"packages."
+"installation."
msgstr ""
#. type: Plain text
-#: man/kernel-img.conf.5:41
-msgid ""
-"Not all kernel image package creators support this file, or all the "
-"configuration variables. Support status for the file itself is:"
+#: man/kernel-img.conf.5:39
+msgid "Not all kernel image package creators support this file:"
msgstr ""
#. type: tbl table
-#: man/kernel-img.conf.5:44 man/kernel-img.conf.5:74 man/kernel-img.conf.5:88 man/kernel-img.conf.5:102 man/kernel-img.conf.5:142 man/kernel-img.conf.5:177 man/kernel-img.conf.5:207 man/kernel-img.conf.5:242 man/kernel-img.conf.5:275 man/kernel-img.conf.5:304 man/kernel-img.conf.5:319 man/kernel-img.conf.5:337 man/kernel-img.conf.5:352 man/kernel-img.conf.5:367 man/kernel-img.conf.5:380 man/kernel-img.conf.5:402 man/kernel-img.conf.5:416
+#: man/kernel-img.conf.5:42
#, no-wrap
msgid "B<Package creator>"
msgstr ""
#. type: tbl table
-#: man/kernel-img.conf.5:44 man/kernel-img.conf.5:74 man/kernel-img.conf.5:88 man/kernel-img.conf.5:102 man/kernel-img.conf.5:142 man/kernel-img.conf.5:177 man/kernel-img.conf.5:207 man/kernel-img.conf.5:242 man/kernel-img.conf.5:275 man/kernel-img.conf.5:304 man/kernel-img.conf.5:319 man/kernel-img.conf.5:337 man/kernel-img.conf.5:352 man/kernel-img.conf.5:367 man/kernel-img.conf.5:380 man/kernel-img.conf.5:402 man/kernel-img.conf.5:416
+#: man/kernel-img.conf.5:42
#, no-wrap
msgid "B<Status>"
msgstr ""
#. type: tbl table
-#: man/kernel-img.conf.5:45 man/kernel-img.conf.5:75 man/kernel-img.conf.5:89 man/kernel-img.conf.5:103 man/kernel-img.conf.5:143 man/kernel-img.conf.5:178 man/kernel-img.conf.5:208 man/kernel-img.conf.5:243 man/kernel-img.conf.5:276 man/kernel-img.conf.5:305 man/kernel-img.conf.5:320 man/kernel-img.conf.5:338 man/kernel-img.conf.5:353 man/kernel-img.conf.5:368 man/kernel-img.conf.5:381 man/kernel-img.conf.5:403 man/kernel-img.conf.5:417
+#: man/kernel-img.conf.5:43
#, no-wrap
msgid "Debian linux source package"
msgstr ""
#. type: tbl table
-#: man/kernel-img.conf.5:45 man/kernel-img.conf.5:46 man/kernel-img.conf.5:47 man/kernel-img.conf.5:75 man/kernel-img.conf.5:76 man/kernel-img.conf.5:89 man/kernel-img.conf.5:90 man/kernel-img.conf.5:103 man/kernel-img.conf.5:104 man/kernel-img.conf.5:322 man/kernel-img.conf.5:340 man/kernel-img.conf.5:355 man/kernel-img.conf.5:370 man/kernel-img.conf.5:383 man/kernel-img.conf.5:405 man/kernel-img.conf.5:421
+#: man/kernel-img.conf.5:43 man/kernel-img.conf.5:44
#, no-wrap
msgid "supported"
msgstr ""
#. type: tbl table
-#: man/kernel-img.conf.5:46 man/kernel-img.conf.5:76 man/kernel-img.conf.5:90 man/kernel-img.conf.5:104 man/kernel-img.conf.5:145 man/kernel-img.conf.5:180 man/kernel-img.conf.5:210 man/kernel-img.conf.5:245 man/kernel-img.conf.5:277 man/kernel-img.conf.5:306 man/kernel-img.conf.5:321 man/kernel-img.conf.5:339 man/kernel-img.conf.5:354 man/kernel-img.conf.5:369 man/kernel-img.conf.5:382 man/kernel-img.conf.5:404 man/kernel-img.conf.5:419
+#: man/kernel-img.conf.5:44
#, no-wrap
msgid "Ubuntu linux source package"
msgstr ""
#. type: tbl table
-#: man/kernel-img.conf.5:47 man/kernel-img.conf.5:77 man/kernel-img.conf.5:91 man/kernel-img.conf.5:105 man/kernel-img.conf.5:147 man/kernel-img.conf.5:182 man/kernel-img.conf.5:212 man/kernel-img.conf.5:247 man/kernel-img.conf.5:278 man/kernel-img.conf.5:308 man/kernel-img.conf.5:322 man/kernel-img.conf.5:340 man/kernel-img.conf.5:355 man/kernel-img.conf.5:370 man/kernel-img.conf.5:383 man/kernel-img.conf.5:405 man/kernel-img.conf.5:421
-#, no-wrap
-msgid "kernel-package"
-msgstr ""
-
-#. type: tbl table
-#: man/kernel-img.conf.5:48
+#: man/kernel-img.conf.5:45
#, no-wrap
msgid "make deb-pkg"
msgstr ""
#. type: tbl table
-#: man/kernel-img.conf.5:48 man/kernel-img.conf.5:320 man/kernel-img.conf.5:321 man/kernel-img.conf.5:338 man/kernel-img.conf.5:339 man/kernel-img.conf.5:353 man/kernel-img.conf.5:354 man/kernel-img.conf.5:368 man/kernel-img.conf.5:369 man/kernel-img.conf.5:381 man/kernel-img.conf.5:382 man/kernel-img.conf.5:403 man/kernel-img.conf.5:404
+#: man/kernel-img.conf.5:45
#, no-wrap
msgid "ignored"
msgstr ""
#. type: Plain text
-#: man/kernel-img.conf.5:64
+#: man/kernel-img.conf.5:61
msgid ""
"The format of the file is a simple I<VAR>B<=>I<VALUE> pair. Boolean values "
"may be specified as I<Yes>, I<True>, I<1>, and I<No>, I<False>, I<0>, and "
@@ -144,388 +135,80 @@
msgstr ""
#. type: Plain text
-#: man/kernel-img.conf.5:66
+#: man/kernel-img.conf.5:63
msgid "At the moment, the user modifiable variables supported are:"
msgstr ""
#. type: TP
-#: man/kernel-img.conf.5:66
+#: man/kernel-img.conf.5:63
#, no-wrap
msgid "B<do_symlinks>"
msgstr ""
#. type: Plain text
-#: man/kernel-img.conf.5:71
+#: man/kernel-img.conf.5:68
msgid ""
"If set, the postinst and postrm scripts will maintain symlinks to default "
"kernel and initramfs images, as described in I<linux-update-symlinks>(8). "
"This variable is set by default."
msgstr ""
-#. type: tbl table
-#: man/kernel-img.conf.5:77 man/kernel-img.conf.5:91 man/kernel-img.conf.5:105
-#, no-wrap
-msgid "ignored since v12.001;"
-msgstr ""
-
-#. type: tbl table
-#: man/kernel-img.conf.5:78 man/kernel-img.conf.5:92 man/kernel-img.conf.5:106 man/kernel-img.conf.5:144 man/kernel-img.conf.5:146 man/kernel-img.conf.5:179 man/kernel-img.conf.5:181 man/kernel-img.conf.5:209 man/kernel-img.conf.5:211 man/kernel-img.conf.5:244 man/kernel-img.conf.5:246 man/kernel-img.conf.5:307 man/kernel-img.conf.5:418
-#, no-wrap
-msgid "previously supported"
-msgstr ""
-
#. type: TP
-#: man/kernel-img.conf.5:80
+#: man/kernel-img.conf.5:68
#, no-wrap
msgid "B<image_dest>"
msgstr ""
#. type: Plain text
-#: man/kernel-img.conf.5:85
+#: man/kernel-img.conf.5:73
msgid ""
"Set this variable to the directory in which symlinks to the default kernel "
"and initramfs images should be maintained. The default value is I</>."
msgstr ""
#. type: TP
-#: man/kernel-img.conf.5:94
+#: man/kernel-img.conf.5:73
#, no-wrap
msgid "B<link_in_boot>"
msgstr ""
#. type: Plain text
-#: man/kernel-img.conf.5:99
+#: man/kernel-img.conf.5:78
msgid ""
"If set, this has the same effect as I<image_dest\\ =\\ /boot> and overrides "
"any other setting of B<image_dest>. This variable is unset by default."
msgstr ""
-#. type: TP
-#: man/kernel-img.conf.5:108
-#, no-wrap
-msgid "B<postinst_hook>"
-msgstr ""
-
-#. type: Plain text
-#: man/kernel-img.conf.5:139
-msgid ""
-"B<DEPRECATED>: Set this variable to a script to be executed during "
-"installation. The path can be a relative path if the script lives in a safe "
-"path -- that is, if it lives in /bin, /sbin, /usr/bin, or /usr/sbin, or must "
-"be an absolute path instead. Before calling this script, the environment "
-"variable B<STEM> shall be set to the value of the I<--stem> argument (or the "
-"default value, linux), and in packages created by kernel-package "
-"B<KERNEL_PACKAGE_VERSION> shall be set to the version of the kernel-package "
-"that created the package. This script shall be called with two arguments, "
-"the first being the I<version> of the kernel image, and the second argument "
-"being the I<location> of the kernel image itself. Errors in the script shall "
-"cause the postinst to fail. Since debconf is in use before the script is "
-"called, this script should issue no diagnostic messages to stdout -- while "
-"the postinst does call B<db_stop>, debconf does not restore stdout, so "
-"messages to stdout disappear. An example script for grub users is present "
-"in /usr/share/doc/kernel-package/ directory. This script is run I<after> "
-"the scripts in /etc/kernel/postinst.d directory."
-msgstr ""
-
-#. type: tbl table
-#: man/kernel-img.conf.5:143 man/kernel-img.conf.5:178 man/kernel-img.conf.5:208 man/kernel-img.conf.5:243
-#, no-wrap
-msgid "unsupported since v4.6.1-1;"
-msgstr ""
-
-#. type: tbl table
-#: man/kernel-img.conf.5:145 man/kernel-img.conf.5:180 man/kernel-img.conf.5:210 man/kernel-img.conf.5:245 man/kernel-img.conf.5:306 man/kernel-img.conf.5:419
-#, no-wrap
-msgid "unsupported since v4.15.0-18.19;"
-msgstr ""
-
-#. type: tbl table
-#: man/kernel-img.conf.5:147 man/kernel-img.conf.5:182 man/kernel-img.conf.5:212 man/kernel-img.conf.5:247 man/kernel-img.conf.5:278 man/kernel-img.conf.5:308
-#, no-wrap
-msgid "deprecated"
-msgstr ""
-
-#. type: TP
-#: man/kernel-img.conf.5:149
-#, no-wrap
-msgid "B<postrm_hook>"
-msgstr ""
-
-#. type: Plain text
-#: man/kernel-img.conf.5:174
-msgid ""
-"B<DEPRECATED>: Set this variable to a script to be executed in the postrm "
-"(that is, after the image has been removed) after all the remove actions "
-"have been performed. The path can be a relative path if the script lives in "
-"a safe path -- that is, if it lives in /bin, /sbin, /usr/bin, or /usr/sbin, "
-"or must be an absolute path instead. In packages created by kernel-package, "
-"the environment variable B<KERNEL_PACKAGE_VERSION> shall be set to the "
-"version of the kernel-package that created the package. This script shall be "
-"called with two arguments, the first being the I<version> of the kernel "
-"image, and the second argument being the I<location> of the kernel image "
-"itself. Errors in the script shall produce a warning message, but shall be "
-"otherwise ignored. Since debconf is in use before the script is called, this "
-"script should issue no diagnostic messages to stdout -- while the postinst "
-"does call B<db_stop>, debconf does not restore stdout, so messages to stdout "
-"disappear. This script is run I<after> the scripts in /etc/kernel/postrm.d "
-"directory."
-msgstr ""
-
-#. type: TP
-#: man/kernel-img.conf.5:184
-#, no-wrap
-msgid "B<preinst_hook>"
-msgstr ""
-
-#. type: Plain text
-#: man/kernel-img.conf.5:204
-msgid ""
-"B<DEPRECATED>: Set this variable to a script to be executed before the "
-"package is unpacked, and can be used to put in additional checks. The path "
-"can be a relative path if the script lives in a safe path -- that is, if it "
-"lives in /bin, /sbin, /usr/bin, or /usr/sbin, or must be an absolute path "
-"instead. In packages created by kernel-package, the environment variable "
-"B<KERNEL_PACKAGE_VERSION> shall be set to the version of the kernel-package "
-"that created the package. This script shall be called with two arguments, "
-"the first being the I<version> of the kernel image, and the second argument "
-"being the I<location> of the kernel image itself. This script is run "
-"I<after> the scripts in /etc/kernel/preinst.d directory."
-msgstr ""
-
-#. type: TP
-#: man/kernel-img.conf.5:214
-#, no-wrap
-msgid "B<prerm_hook>"
-msgstr ""
-
-#. type: Plain text
-#: man/kernel-img.conf.5:239
-msgid ""
-"B<DEPRECATED>: Set this variable to a script to be executed before the "
-"package files are removed (so any added files may be removed) . The path can "
-"be a relative path if the script lives in a safe path -- that is, if it "
-"lives in /bin, /sbin, /usr/bin, or /usr/sbin, or must be an absolute path "
-"instead. In packages created by kernel-package, the environment variable "
-"B<KERNEL_PACKAGE_VERSION> shall be set to the version of the kernel-package "
-"that created the package. This script shall be called with two arguments, "
-"the first being the I<version> of the kernel image, and the second argument "
-"being the I<location> of the kernel image itself. Errors in the script shall "
-"cause the prerm to fail. Since debconf is in use before the script is "
-"called, this script should issue no diagnostic messages to stdout -- while "
-"the postinst does call B<db_stop>, debconf does not restore stdout, so "
-"messages to stdout disappear. This script is run I<after> the scripts in "
-"/etc/kernel/prerm.d directory."
-msgstr ""
-
-#. type: TP
-#: man/kernel-img.conf.5:249
-#, no-wrap
-msgid "B<src_postinst_hook>"
-msgstr ""
-
-#. type: Plain text
-#: man/kernel-img.conf.5:272
-msgid ""
-"B<DEPRECATED>: Unlike the other hook variables, this is meant for a script "
-"run during the post inst of a docs, headers or a source package. Using this "
-"hook for the headers package is now being deprecated, at some point the "
-"headers post install script shall only run the header_postinst_hook. The "
-"path can be a relative path if the script lives in a safe path -- that is, "
-"if it lives in /bin, /sbin, /usr/bin, or /usr/sbin, or must be an absolute "
-"path instead. The environment variable B<KERNEL_PACKAGE_VERSION> shall be "
-"set to the version of the kernel-package that created the package. This "
-"script shall be called with two arguments, the first being the I<name> of "
-"the package being installed (could be kernel source or headers), and the "
-"second argument being the I<version> of the package being installed. Errors "
-"in the script shall cause the postinst to fail. This script is run I<after> "
-"the scripts in /etc/kernel/src_postinst.d directory."
-msgstr ""
-
-#. type: tbl table
-#: man/kernel-img.conf.5:276 man/kernel-img.conf.5:277 man/kernel-img.conf.5:305
-#, no-wrap
-msgid "unsupported"
-msgstr ""
-
-#. type: TP
-#: man/kernel-img.conf.5:280
-#, no-wrap
-msgid "B<header_postinst_hook>"
-msgstr ""
-
-#. type: Plain text
-#: man/kernel-img.conf.5:301
-msgid ""
-"B<DEPRECATED>: Unlike the other hook variables, this is meant for a script "
-"run during the post inst of a headers package only. The path can be a "
-"relative path if the script lives in a safe path -- that is, if it lives in "
-"/bin, /sbin, /usr/bin, or /usr/sbin, or must be an absolute path instead. In "
-"packages created by kernel-package, the environment variable "
-"B<KERNEL_PACKAGE_VERSION> shall be set to the version of the kernel-package "
-"that created the package. This script shall be called with two arguments, "
-"the first being the I<name> of the package being installed, and the second "
-"argument being the I<version> of the package being installed. Errors in the "
-"script shall cause the postinst to fail. This script is run I<after> the "
-"scripts in /etc/kernel/header_postinst.d directory."
-msgstr ""
-
-#. type: TP
-#: man/kernel-img.conf.5:310
-#, no-wrap
-msgid "B<clobber_modules>"
-msgstr ""
-
-#. type: Plain text
-#: man/kernel-img.conf.5:316
-msgid ""
-"If set, the preinst shall silently try to move /lib/modules/version out of "
-"the way if it is the same version as the image being installed. Use at your "
-"own risk. This variable is unset by default."
-msgstr ""
-
-#. type: TP
-#: man/kernel-img.conf.5:324
-#, no-wrap
-msgid "B<warn_reboot>"
-msgstr ""
-
-#. type: Plain text
-#: man/kernel-img.conf.5:334
-msgid ""
-"This variable can be used to turn off the warning given when installing a "
-"kernel image which is the same version as the currently running version. If "
-"the modules list is changed, the modules dependencies may have been changed, "
-"and the modules for the new kernel may not run correctly on the running "
-"kernel if the kernel ABI has changed in the meanwhile. It is a good idea to "
-"reboot, and this is a note to remind you. If you know what you are doing, "
-"you can set this variable to no. This variable is set by default."
-msgstr ""
-
-#. type: TP
-#: man/kernel-img.conf.5:342
-#, no-wrap
-msgid "B<relink_build_link>"
-msgstr ""
-
-#. type: Plain text
-#: man/kernel-img.conf.5:349
-msgid ""
-"This option manipulates the build link created by recent kernels. If the "
-"link is a dangling link, and if a the corresponding kernel headers appear to "
-"have been installed on the system, a new symlink shall be created to point "
-"to them. The default is to relink the build link (YES)."
-msgstr ""
-
-#. type: TP
-#: man/kernel-img.conf.5:357
-#, no-wrap
-msgid "B<force_build_link>"
-msgstr ""
-
-#. type: Plain text
-#: man/kernel-img.conf.5:364
-msgid ""
-"This option manipulates the build link created by recent kernels. If the "
-"link is a dangling link, a new symlink shall be created to point to kernel "
-"headers data in /usr/src, whether they have been installed or not. The "
-"default is unset, we don't create potentially dangling symlinks by default."
-msgstr ""
-
-#. type: TP
-#: man/kernel-img.conf.5:372
-#, no-wrap
-msgid "B<relink_src_link>"
-msgstr ""
-
-#. type: Plain text
-#: man/kernel-img.conf.5:377
-msgid ""
-"This option manipulates the source link created by recent kernels. If the "
-"link is a dangling link it is deleted at install time. The default is to "
-"relink (delete) the source link (YES)."
-msgstr ""
-
-#. type: TP
-#: man/kernel-img.conf.5:385
-#, no-wrap
-msgid "B<silent_modules>"
-msgstr ""
-
-#. type: Plain text
-#: man/kernel-img.conf.5:399
-msgid ""
-"This option has been put in for the people who are vastly irritated on being "
-"warned about preexisting modules directory I</lib/modules/$version>. That "
-"directory may belong to an old or defunct kernel image package, in which "
-"case problems may arise with leftover modules in that directory tree, or the "
-"directory may legitimately exist due to a independent modules package being "
-"installed for this kernel version that has already been unpacked. In this "
-"latter case the existence of the directory is benign. If you set this "
-"variable, you shall no longer be given a chance to abort if a preexisting "
-"modules directory I</lib/modules/$version> is detected. This is unset by "
-"default."
-msgstr ""
-
-#. type: TP
-#: man/kernel-img.conf.5:407
-#, no-wrap
-msgid "B<ignore_depmod_err>"
-msgstr ""
-
-#. type: Plain text
-#: man/kernel-img.conf.5:413
-msgid ""
-"If set, does not prompt to continue after a depmod problem in the postinst "
-"script. This facilitates automated installs, though it may mask a problem "
-"with the kernel image. A diagnostic is still issued. This is unset by "
-"default."
-msgstr ""
-
-#. type: tbl table
-#: man/kernel-img.conf.5:417
-#, no-wrap
-msgid "unsupported since v4.4.1-1~exp1;"
-msgstr ""
-
-#. type: tbl table
-#: man/kernel-img.conf.5:420
-#, no-wrap
-msgid "previously ignored"
-msgstr ""
-
#. type: SH
-#: man/kernel-img.conf.5:423
+#: man/kernel-img.conf.5:78
#, no-wrap
msgid "FILES"
msgstr ""
#. type: Plain text
-#: man/kernel-img.conf.5:430
-msgid ""
-"The file described here is I</etc/kernel-img.conf>. B<kernel-common> "
-"includes example scripts suitable for dropping into I</etc/kernel/*.d> "
-"installed in I</usr/share/doc/kernel-common/examples>."
+#: man/kernel-img.conf.5:81
+msgid "The file described here is I</etc/kernel-img.conf>."
msgstr ""
#. type: SH
-#: man/kernel-img.conf.5:430
+#: man/kernel-img.conf.5:81
#, no-wrap
msgid "SEE ALSO"
msgstr ""
#. type: Plain text
-#: man/kernel-img.conf.5:434
-msgid "B<linux-update-symlinks>(8), B<make-kpkg>(1), B<kernel-pkg.conf>(5)"
+#: man/kernel-img.conf.5:83
+msgid "B<linux-update-symlinks>(8)"
msgstr ""
#. type: SH
-#: man/kernel-img.conf.5:434
+#: man/kernel-img.conf.5:83
#, no-wrap
msgid "AUTHOR"
msgstr ""
#. type: Plain text
-#: man/kernel-img.conf.5:436
+#: man/kernel-img.conf.5:85
msgid ""
"This manual page was written by Manoj Srivastava "
"E<lt>srivasta@debian.orgE<gt> and Ben Hutchings E<lt>benh@debian.orgE<gt> "
diff -Nru linux-base-4.11/sysctl.d/50-default.conf linux-base-4.12/sysctl.d/50-default.conf
--- linux-base-4.11/sysctl.d/50-default.conf 2025-01-01 13:33:30.000000000 +0100
+++ linux-base-4.12/sysctl.d/50-default.conf 2025-05-25 21:16:31.000000000 +0200
@@ -54,3 +54,9 @@
# Enable regular file and FIFO protection
fs.protected_regular = 2
fs.protected_fifos = 1
+
+# Increase maximum number of memory mappings per process. This is
+# neeed by some memory allocators and for emulation of some Windows
+# games. Core dumps with > 65530 mappings will use extended section
+# numbering.
+vm.max_map_count = 1048576
Reply to: