Version in base suite: 4.9 Base version: linux-base_4.9 Target version: linux-base_4.12.1~deb12u1 Base file: /srv/ftp-master.debian.org/ftp/pool/main/l/linux-base/linux-base_4.9.dsc Target file: /srv/ftp-master.debian.org/policy/pool/main/l/linux-base/linux-base_4.12.1~deb12u1.dsc bin/linux-check-removal | 8 bin/linux-run-hooks | 118 ++++++ bin/linux-update-symlinks | 11 bin/linux-version | 8 debian/changelog | 97 +++++ debian/control | 11 debian/copyright | 153 +++++++- debian/linux-base.install | 1 debian/linux-base.lintian-overrides | 4 debian/linux-base.manpages | 1 debian/linux-sysctl-defaults.install | 1 debian/po/ca.po | 8 debian/po/es.po | 9 debian/po/ro.po | 72 ++++ debian/po/tr.po | 36 +- debian/salsa-ci.yml | 2 man/kernel-img.conf.5 | 361 -------------------- man/linux-check-removal.1 | 8 man/linux-run-hooks.1 | 34 + man/linux-update-symlinks.1 | 14 man/linux-version.1 | 10 po/de.po | 594 ++------------------------------- po/fr.po | 620 ++--------------------------------- po/linux-base.pot | 377 +-------------------- sysctl.d/50-default.conf | 62 +++ 25 files changed, 719 insertions(+), 1901 deletions(-) dpkg-source: warning: cannot verify inline signature for /srv/release.debian.org/tmp/tmp80u9tzlf/linux-base_4.9.dsc: no acceptable signature found dpkg-source: warning: cannot verify inline signature for /srv/release.debian.org/tmp/tmp80u9tzlf/linux-base_4.12.1~deb12u1.dsc: no acceptable signature found diff -Nru linux-base-4.9/bin/linux-check-removal linux-base-4.12.1~deb12u1/bin/linux-check-removal --- linux-base-4.9/bin/linux-check-removal 2018-09-05 17:52:35.000000000 +0000 +++ linux-base-4.12.1~deb12u1/bin/linux-check-removal 2025-05-25 15:54:49.000000000 +0000 @@ -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.9/bin/linux-run-hooks linux-base-4.12.1~deb12u1/bin/linux-run-hooks --- linux-base-4.9/bin/linux-run-hooks 1970-01-01 00:00:00.000000000 +0000 +++ linux-base-4.12.1~deb12u1/bin/linux-run-hooks 2026-06-08 20:53:47.000000000 +0000 @@ -0,0 +1,118 @@ +#!/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 . + +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 + # + # For bookworm or earlier, only ever pass /etc/kernel/$type.d and + # warn if /usr/share/kernel/$type.d exists. + my $dir = "/etc/kernel/$type.d"; + push @hook_dirs, $dir if -d $dir; + $dir = "/usr/share/kernel/$type.d"; + print STDERR "W: Hooks in $dir are not supported and will not be run\n" + 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 !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; +} elsif ($pkg_type eq 'headers') { + # For backward compatibility, hook directory names start with + # 'header_' not 'headers_' + $hook_type = "header_${script_type}"; + $n_hook_args = 1; +} else { + usage_error(); +} +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.9/bin/linux-update-symlinks linux-base-4.12.1~deb12u1/bin/linux-update-symlinks --- linux-base-4.9/bin/linux-update-symlinks 2016-06-05 01:13:24.000000000 +0000 +++ linux-base-4.12.1~deb12u1/bin/linux-update-symlinks 2025-05-25 15:54:49.000000000 +0000 @@ -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. @@ -65,6 +65,11 @@ } } + # Try to apply SELinux label + if (-x "/sbin/restorecon" && system("/sbin/restorecon", "$dest.$rand")) { + print STDERR "W: Failed to set SELinux label for $dest\n"; + } + # Move it into place atomically if (!rename("$dest.$rand", $dest)) { my $err = "$!"; diff -Nru linux-base-4.9/bin/linux-version linux-base-4.12.1~deb12u1/bin/linux-version --- linux-base-4.9/bin/linux-version 2022-02-11 02:17:38.000000000 +0000 +++ linux-base-4.12.1~deb12u1/bin/linux-version 2025-05-25 15:54:49.000000000 +0000 @@ -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.9/debian/changelog linux-base-4.12.1~deb12u1/debian/changelog --- linux-base-4.9/debian/changelog 2022-05-19 02:05:24.000000000 +0000 +++ linux-base-4.12.1~deb12u1/debian/changelog 2026-06-11 20:53:44.000000000 +0000 @@ -1,3 +1,100 @@ +linux-base (4.12.1~deb12u1) bookworm-security; urgency=high + + * Rebuild for bookworm: + - Do not build linux-sysctl-defaults + - d/salsa-ci.yml: Set RELEASE to bookworm + + -- Ben Hutchings Thu, 11 Jun 2026 22:53:44 +0200 + +linux-base (4.12.1~bpo12+1) bookworm-backports; urgency=medium + + * Rebuild for bookworm-backports: + - d/salsa-ci.yml: Set RELEASE to bookworm-backports + + -- Ben Hutchings Sat, 14 Mar 2026 16:36:44 +0100 + +linux-base (4.12.1) trixie; urgency=medium + + * d/salsa-ci.yml: Set RELEASE to trixie + * linux-run-hooks(1): Fix description of the first argument + * linux-run-hooks: Use compatible hook dir names for headers packages + (Closes: #1121366) + + -- Ben Hutchings Tue, 20 Jan 2026 13:44:51 +0100 + +linux-base (4.12~bpo12+1) bookworm-backports; urgency=medium + + * Rebuild for bookworm-backports: + - linux-run-hooks: Never try to run hooks from /usr/share/kernel + - d/salsa-ci.yml: Set RELEASE to bookworm-backports + + -- Ben Hutchings Sun, 01 Jun 2025 18:46:23 +0200 + +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 Sun, 25 May 2025 21:16:36 +0200 + +linux-base (4.11) unstable; urgency=medium + + [ Carles Pina i Estany ] + * Update Catalan debconf template translations (poc senderi) + (Closes: #1091708) + + [ Noah Meyerhans ] + * 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) + + [ Salvatore Bonaccorso ] + * Declare compliance with Debian policy 4.7.0 + * Update copyright years for debian/* packaging files + * linux-sysctl-defaults: dh_install: Make target path relative to package + build directory + + -- Salvatore Bonaccorso Wed, 01 Jan 2025 13:33:30 +0100 + +linux-base (4.10.1) unstable; urgency=medium + + * No-change source upload for testing migration + + -- Ben Hutchings Tue, 25 Jun 2024 00:48:43 +0200 + +linux-base (4.10) unstable; urgency=medium + + [ Gioele Barabucci ] + * d/control: Bump Standards-Version to 4.6.2 (no changes needed) + * d/lintian-overrides: Update syntax + * d/lintian-overrides: Ignore templates used by linux-check-removal + * d/copyright: Fix spelling of Portuguese + + [ Ben Hutchings ] + * Add linux-sysctl-defaults package for sysctl default configuration + * d/copyright: Split out translation copyrights by filename + * d/copyright: Correct copyright holder for debian/po/vi.po + * d/copyright: Add missing copyright holders and dates + * linux-update-symlinks: Run restorecon on symlinks if possible + (Closes: #906729) + * Update debconf template translations: + - Update Spanish (Camaleón) (Closes: #1029025) + - Update Turkish (Mert Dirik) (Closes: #1030837) + - Add Romanian (Remus-Gabriel Chelu) (Closes: #1032336) + + -- Ben Hutchings Sun, 23 Jun 2024 21:03:28 +0200 + linux-base (4.9) unstable; urgency=medium [ Ben Hutchings ] diff -Nru linux-base-4.9/debian/control linux-base-4.12.1~deb12u1/debian/control --- linux-base-4.9/debian/control 2022-05-19 01:09:12.000000000 +0000 +++ linux-base-4.12.1~deb12u1/debian/control 2026-06-08 20:58:20.000000000 +0000 @@ -3,7 +3,7 @@ Priority: optional Maintainer: Debian Kernel Team Uploaders: Ben Hutchings , Salvatore Bonaccorso -Standards-Version: 4.6.0 +Standards-Version: 4.7.0 Build-Depends: debhelper-compat (= 13), libtext-glob-perl , po4a Vcs-Git: https://salsa.debian.org/kernel-team/linux-base.git Vcs-Browser: https://salsa.debian.org/kernel-team/linux-base @@ -18,3 +18,12 @@ Description: Linux image base package This package contains files and support scripts for all Linux images. + +#Package: linux-sysctl-defaults +#Architecture: all +#Priority: important +#Depends: ${misc:Depends} +#Multi-Arch: foreign +#Description: default sysctl configuration for Linux +# This package contains a sysctl configuration file setting some +# sensible defaults for Linux. diff -Nru linux-base-4.9/debian/copyright linux-base-4.12.1~deb12u1/debian/copyright --- linux-base-4.9/debian/copyright 2022-01-18 01:10:44.000000000 +0000 +++ linux-base-4.12.1~deb12u1/debian/copyright 2025-05-03 01:29:41.000000000 +0000 @@ -3,23 +3,126 @@ Source: https://salsa.debian.org/kernel-team/linux-base Files: * -Copyright: Copyright 2010-2011 Ben Hutchings - Catalan translation: Copyright 2010 Jordi Mallach - Czech translation: Copyright 2010 Michal Simunek - Danish translation: Copyright 2010 Joe Hansen - German translation: Copyright 2010, 2011, 2012, 2020 Holger Wansing, Chris Leick, Helge Kreutzmann - Spanish translation: Copyright 2010 Omar Campagne, Javier Fernández-Sanguino - Estonian translation: Copyright 2010 mihkel - French translation: Copyright 2007, 2009, 2010, 2012, 2014, 2021, Debian French l10n team - Italian translation: Copyright 2010 Luca Bruno - Japanese translation: Copyright 2010 Kenshi Muto, Nobuhiro Iwamatsu - Portugese translation: Copyright 2010 Américo Monteiro - Brazilian Portugese translation: Copyright 2010 Flamarion Jorge - Russian translation: Copyright 2010 Yuri Kozlov - Swedish translation: Copyright 2010 Martin Bagge - Vietnamese translation: Copyright 2010 Clytie Siddall +Copyright: 2010-2024 Ben Hutchings + 2016-2025 Salvatore Bonaccorso + 2022 Gioele Barabucci License: GPL-2 +Files: debian/po/ca.po +Copyright: 2010 Jordi Mallach + 2024 poc senderi +License: GPL-2 + +Files: debian/po/cs.po +Copyright: 2010-2016 Michal Simunek +License: GPL-2 + +Files: debian/po/da.po +Copyright: 2010, 2011, 2014, 2016 Joe Hansen +License: GPL-2 + +Files: debian/po/de.po +Copyright: 2010, 2011, 2014 Holger Wansing + 2016 Markus Hiereth +License: GPL-2 + +Files: debian/po/es.po +Copyright: 2010 Omar Campagne + 2010 Javier Fernández-Sanguino + 2014 Matías Bellone + 2022 Camaleón +License: GPL-2 + +Files: debian/po/et.po +Copyright: 2010 mihkel +License: GPL-2 + +Files: debian/po/fr.po +Copyright: 2010, 2011, 2014, 2016 Debian French l10n team +License: GPL-2 + +Files: debian/po/it.po +Copyright: 2010 Luca Bruno +License: GPL-2 + +Files: debian/po/ja.po +Copyright: 2010 Kenshi Muto + 2010 Nobuhiro Iwamatsu + 2014, 2016 Victory +License: GPL-2 + +Files: debian/po/nl.po +Copyright: 2011 Willem Kuyn + 2016 Frans Spiesschaert +License: GPL-2 + +Files: debian/po/pl.po +Copyright: 2011, 2012 Michał Kułach + 2014, 2016 Łukasz Dulny +License: GPL-2 + +Files: debian/po/pt.po +Copyright: 2010, 2011, 2014, 2016 Américo Monteiro +License: GPL-2 + +Files: debian/po/pt_BR.po +Copyright: 2010 Flamarion Jorge + 2013 Fernando Ike de Oliveira + 2016 Diego Neves +License: GPL-2 + +Files: debian/po/ro.po +Copyright: 2023 Remus-Gabriel Chelu +License: GPL-2 + +Files: debian/po/ru.po +Copyright: 2010, 2011, 2014, 2016 Yuri Kozlov +License: GPL-2 + +Files: debian/po/sk.po +Copyright: 2011, 2014 Slavko +License: GPL-2 + +Files: debian/po/sv.po +Copyright: 2010, 2014, 2016 Martin Bagge +License: GPL-2 + +Files: debian/po/tr.po +Copyright: 2012, 2014, 2023 Mert Dirik +License: GPL-2 + +Files: debian/po/vi.po +Copyright: 2010 Free Software Foundation, Inc. +License: GPL-2 + +Files: man/kernel-img.conf.5 +Copyright: 1996-2009 Manoj Srivastava + 2019 Ben Hutchings +License: GPL-2 + +Files: po/de.po +Copyright: 1996-2009 Manoj Srivastava + 2011, 2012 Chris Leick + 2020 Helge Kreutzmann +License: GPL-2 + +Files: po/fr.po +Copyright: 1996-2009 Manoj Srivastava + 2007, 2009, 2010, 2012, 2014, 2021 Debian French l10n team +License: GPL-2 + +Files: sysctl.d/50-default.conf +Copyright: 2013 Kay Sievers + 2014 Tom Gundersen + 2014, 2019 Lennart Poettering + 2014 Michal Schmidt + 2015, 2020, 2021 Zbigniew Jędrzejewski-Szmek + 2017 Peter Körner + 2018 Lubomir Rintel + 2019 Lucas Werkmeister + 2019 Debarshi Ray +License: LGPL-2.1+ + License: GPL-2 This package is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 as @@ -31,8 +134,24 @@ 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 . . On Debian systems, the complete text of the GNU General Public License version 2 can be found in `/usr/share/common-licenses/GPL-2'. + +License: LGPL-2.1+ + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + . + This library 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 + Lesser General Public License for more details. + . + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see . + . + 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.9/debian/linux-base.install linux-base-4.12.1~deb12u1/debian/linux-base.install --- linux-base-4.9/debian/linux-base.install 2022-02-09 23:25:58.000000000 +0000 +++ linux-base-4.12.1~deb12u1/debian/linux-base.install 2026-06-08 20:53:47.000000000 +0000 @@ -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.9/debian/linux-base.lintian-overrides linux-base-4.12.1~deb12u1/debian/linux-base.lintian-overrides --- linux-base-4.9/debian/linux-base.lintian-overrides 2016-06-06 16:01:48.000000000 +0000 +++ linux-base-4.12.1~deb12u1/debian/linux-base.lintian-overrides 2024-06-19 21:19:41.000000000 +0000 @@ -1,4 +1,6 @@ # The debconf templates are used by linux-check-removal linux-base: no-debconf-config +# The debconf templates are used by linux-check-removal +linux-base: unused-debconf-template linux-base/* # linux-check-removal is called from other packages' maintainer scripts -linux-base: debconf-is-not-a-registry usr/bin/linux-check-removal +linux-base: debconf-is-not-a-registry [usr/bin/linux-check-removal:*] diff -Nru linux-base-4.9/debian/linux-base.manpages linux-base-4.12.1~deb12u1/debian/linux-base.manpages --- linux-base-4.9/debian/linux-base.manpages 2022-02-09 23:25:58.000000000 +0000 +++ linux-base-4.12.1~deb12u1/debian/linux-base.manpages 2025-05-25 15:54:49.000000000 +0000 @@ -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.9/debian/linux-sysctl-defaults.install linux-base-4.12.1~deb12u1/debian/linux-sysctl-defaults.install --- linux-base-4.9/debian/linux-sysctl-defaults.install 1970-01-01 00:00:00.000000000 +0000 +++ linux-base-4.12.1~deb12u1/debian/linux-sysctl-defaults.install 2025-05-03 00:15:46.000000000 +0000 @@ -0,0 +1 @@ +sysctl.d/50-default.conf usr/lib/sysctl.d/ diff -Nru linux-base-4.9/debian/po/ca.po linux-base-4.12.1~deb12u1/debian/po/ca.po --- linux-base-4.9/debian/po/ca.po 2016-06-06 15:37:10.000000000 +0000 +++ linux-base-4.12.1~deb12u1/debian/po/ca.po 2025-05-03 00:15:46.000000000 +0000 @@ -2,25 +2,27 @@ # Copyright © 2010 Software in the Public Interest, Inc. # This file is distributed under the same license as linux's packaging. # Jordi Mallach , 2010. +# poc senderi , 2024. # msgid "" msgstr "" "Project-Id-Version: linux-2.6 2.6.32-24\n" "Report-Msgid-Bugs-To: linux-base@packages.debian.org\n" "POT-Creation-Date: 2016-06-06 16:37+0100\n" -"PO-Revision-Date: 2013-08-15 13:20+0200\n" -"Last-Translator: Jordi Mallach \n" +"PO-Revision-Date: 2024-08-22 08:41+0200\n" +"Last-Translator: poc senderi \n" "Language-Team: Catalan \n" "Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"X-Generator: Poedit 2.4.2\n" #. Type: title #. Description #: ../linux-base.templates:2001 msgid "Removing ${package}" -msgstr "" +msgstr "S'està suprimint ${package}" #. Type: boolean #. Description diff -Nru linux-base-4.9/debian/po/es.po linux-base-4.12.1~deb12u1/debian/po/es.po --- linux-base-4.9/debian/po/es.po 2016-06-06 15:37:10.000000000 +0000 +++ linux-base-4.12.1~deb12u1/debian/po/es.po 2024-06-23 17:55:43.000000000 +0000 @@ -4,7 +4,7 @@ # Changes: # - Initial translation # Omar Campagne 2010, 2011 -# +# # - Review and update # Javier Fernandez-Sanguino, December 2010 # Matías Bellone , 2014 @@ -32,20 +32,21 @@ "Project-Id-Version: linux-2.6 2.6.32+5\n" "Report-Msgid-Bugs-To: linux-base@packages.debian.org\n" "POT-Creation-Date: 2016-06-06 16:37+0100\n" -"PO-Revision-Date: 2014-07-24 17:59-0300\n" -"Last-Translator: Matías Bellone \n" +"PO-Revision-Date: 2022-12-29 18:55+0100\n" +"Last-Translator: Camaleón \n" "Language-Team: Debian l10n Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 2.4.2\n" #. Type: title #. Description #: ../linux-base.templates:2001 msgid "Removing ${package}" -msgstr "" +msgstr "Eliminando ${package}" #. Type: boolean #. Description diff -Nru linux-base-4.9/debian/po/ro.po linux-base-4.12.1~deb12u1/debian/po/ro.po --- linux-base-4.9/debian/po/ro.po 1970-01-01 00:00:00.000000000 +0000 +++ linux-base-4.12.1~deb12u1/debian/po/ro.po 2024-06-23 17:56:02.000000000 +0000 @@ -0,0 +1,72 @@ +# Mesajele în limba română pentru pachetul linux-base. +# Romanian translation of linux-base. +# Copyright © 2023 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the linux-base package. +# +# Remus-Gabriel Chelu , 2023. +# +# Cronologia traducerii fișierului „linux-base”: +# Traducerea inițială, făcută de R-GC, pentru versiunea linux-base 4.9(2016-06-06). +# Actualizare a traducerii pentru versiunea Y, făcută de X, Y(anul). +# +msgid "" +msgstr "" +"Project-Id-Version: linux-base 4.9\n" +"Report-Msgid-Bugs-To: linux-base@packages.debian.org\n" +"POT-Creation-Date: 2016-06-06 16:37+0100\n" +"PO-Revision-Date: 2023-02-24 12:29+0100\n" +"Last-Translator: Remus-Gabriel Chelu \n" +"Language-Team: Romanian \n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n==0 || (n!=1 && n%100>=1 && " +"n%100<=19) ? 1 : 2);\n" +"X-Bugs: Report translation errors to the Language-Team address.\n" +"X-Generator: Poedit 3.2.2\n" + +#. Type: title +#. Description +#: ../linux-base.templates:2001 +msgid "Removing ${package}" +msgstr "Se elimină nucleul „${package}”" + +#. Type: boolean +#. Description +#: ../linux-base.templates:3001 +msgid "Abort kernel removal?" +msgstr "Anulați operația de eliminare a nucleului?" + +#. Type: boolean +#. Description +#: ../linux-base.templates:3001 +msgid "" +"You are running a kernel (version ${running}) and attempting to remove the same " +"version." +msgstr "" +"Rulați un nucleu cu versiunea (versiunea ${running}) și încercați să eliminați " +"aceeași versiune; exact cea pe care o folosiți în acest moment." + +#. Type: boolean +#. Description +#: ../linux-base.templates:3001 +msgid "" +"This can make the system unbootable as it will remove /boot/vmlinuz-${running} " +"and all modules under the directory /lib/modules/${running}. This can only be " +"fixed with a copy of the kernel image and the corresponding modules." +msgstr "" +"Această acțiune poate face sistemul de nepornit, deoarece va elimina „/boot/" +"vmlinuz-${running}” și toate modulele din directorul „/lib/modules/${running}”. " +"Acest lucru poate fi remediat doar cu o copie a imaginii nucleului și a " +"modulelor corespunzătoare." + +#. Type: boolean +#. Description +#: ../linux-base.templates:3001 +msgid "" +"It is highly recommended to abort the kernel removal unless you are prepared to " +"fix the system after removal." +msgstr "" +"Este foarte recomandat să renunțați la eliminarea nucleului, cu excepția " +"cazului în care sunteți pregătit să remediați sistemul după eliminare." diff -Nru linux-base-4.9/debian/po/tr.po linux-base-4.12.1~deb12u1/debian/po/tr.po --- linux-base-4.9/debian/po/tr.po 2016-06-06 15:37:10.000000000 +0000 +++ linux-base-4.12.1~deb12u1/debian/po/tr.po 2024-06-23 17:56:02.000000000 +0000 @@ -1,27 +1,27 @@ -# Turkish translation of linux debconf template. -# Copyright (C) 2012 Mert Dirik -# This file is distributed under the same license as the linux package. -# Mert Dirik , 2012. +# Turkish translation of linux-base. +# This file is distributed under the same license as the linux-base package. +# Mert Dirik , 2012, 2014. # msgid "" msgstr "" -"Project-Id-Version: linux-2.6 3.2.4-1\n" +"Project-Id-Version: linux-base\n" "Report-Msgid-Bugs-To: linux-base@packages.debian.org\n" "POT-Creation-Date: 2016-06-06 16:37+0100\n" -"PO-Revision-Date: 2014-07-19 00:28+0200\n" -"Last-Translator: Mert Dirik \n" -"Language-Team: Debian L10n Turkish \n" +"PO-Revision-Date: 2023-01-14 21:13+0300\n" +"Last-Translator: Atila KOÇ \n" "Language: tr\n" +"Language-Team: Debian L10n Turkish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.5.4\n" +"X-Generator: Poedit 2.4.2\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" #. Type: title #. Description #: ../linux-base.templates:2001 msgid "Removing ${package}" -msgstr "" +msgstr "${package} paketi kaldırılıyor" #. Type: boolean #. Description @@ -36,8 +36,8 @@ "You are running a kernel (version ${running}) and attempting to remove the " "same version." msgstr "" -"Kullandığınız çekirdekle (${running}) aynı sürümdeki çekirdeği kaldırmaya " -"çalışıyorsunuz." +"(${running}) sürümündeki çekirdeği kullanıyorsunuz ve aynı sürümdeki " +"çekirdeği kaldırmaya çalışıyorsunuz." #. Type: boolean #. Description @@ -48,10 +48,10 @@ "can only be fixed with a copy of the kernel image and the corresponding " "modules." msgstr "" -"Bu eylem sisteminizi başlatılamaz hale getirebilir ( /boot/vmlinuz-" -"${running} dosyasını ve /lib/modules/${running} dizinindeki tüm modülleri " -"kaldıracağından dolayı). Bu durum yalnızca bir çekirdek görüntüsü ve bu " -"görüntüye uygun modüller yardımıyla düzeltilebilir." +"Bu eylem /boot/vmlinuz-${running} dosyasını ve /lib/modules/${running} " +"dizinindeki tüm modülleri kaldıracağından dolayı sisteminizi başlatılamaz " +"duruma getirebilir. Bu durum yalnızca bir çekirdek görüntüsü kopyası ve bu " +"görüntüye uygun modüller ile düzeltilebilir." #. Type: boolean #. Description @@ -60,5 +60,5 @@ "It is highly recommended to abort the kernel removal unless you are prepared " "to fix the system after removal." msgstr "" -"Kaldırma işlemi sonrasında sistemi düzeltmeye hazır olmadığınız takdirde " -"kaldırma işleminden vazgeçmeniz şiddetle tavsiye edilir." +"Kaldırma işlemi sonrasında sisteminizi düzeltmeye hazırlanmadıysanız, " +"çekirdek kaldırma işleminden vazgeçmeniz şiddetle önerilir." diff -Nru linux-base-4.9/debian/salsa-ci.yml linux-base-4.12.1~deb12u1/debian/salsa-ci.yml --- linux-base-4.9/debian/salsa-ci.yml 2022-01-18 03:23:41.000000000 +0000 +++ linux-base-4.12.1~deb12u1/debian/salsa-ci.yml 2026-06-08 21:03:34.000000000 +0000 @@ -3,7 +3,7 @@ - https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/pipeline-jobs.yml variables: - RELEASE: 'unstable' + RELEASE: 'bookworm' # We only build arch:all packages SALSA_CI_DISABLE_BLHC: 'true' SALSA_CI_DISABLE_BUILD_PACKAGE_I386: 'true' diff -Nru linux-base-4.9/man/kernel-img.conf.5 linux-base-4.12.1~deb12u1/man/kernel-img.conf.5 --- linux-base-4.9/man/kernel-img.conf.5 2019-03-24 21:49:01.000000000 +0000 +++ linux-base-4.12.1~deb12u1/man/kernel-img.conf.5 2025-05-25 19:05:02.000000000 +0000 @@ -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 and Ben Hutchings for the Debian GNU/Linux system. diff -Nru linux-base-4.9/man/linux-check-removal.1 linux-base-4.12.1~deb12u1/man/linux-check-removal.1 --- linux-base-4.9/man/linux-check-removal.1 2016-06-06 16:05:15.000000000 +0000 +++ linux-base-4.12.1~deb12u1/man/linux-check-removal.1 2025-05-25 19:05:02.000000000 +0000 @@ -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.9/man/linux-run-hooks.1 linux-base-4.12.1~deb12u1/man/linux-run-hooks.1 --- linux-base-4.9/man/linux-run-hooks.1 1970-01-01 00:00:00.000000000 +0000 +++ linux-base-4.12.1~deb12u1/man/linux-run-hooks.1 2026-01-20 13:37:29.000000000 +0000 @@ -0,0 +1,34 @@ +.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 +The first argument is the package type; either \fBimage\fR or +\fBheaders\fR. +.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.9/man/linux-update-symlinks.1 linux-base-4.12.1~deb12u1/man/linux-update-symlinks.1 --- linux-base-4.9/man/linux-update-symlinks.1 2018-09-05 17:32:44.000000000 +0000 +++ linux-base-4.12.1~deb12u1/man/linux-update-symlinks.1 2025-05-25 19:05:02.000000000 +0000 @@ -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.9/man/linux-version.1 linux-base-4.12.1~deb12u1/man/linux-version.1 --- linux-base-4.9/man/linux-version.1 2015-08-11 15:45:25.000000000 +0000 +++ linux-base-4.12.1~deb12u1/man/linux-version.1 2025-05-25 19:05:02.000000000 +0000 @@ -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.9/po/de.po linux-base-4.12.1~deb12u1/po/de.po --- linux-base-4.9/po/de.po 2021-12-28 02:53:28.000000000 +0000 +++ linux-base-4.12.1~deb12u1/po/de.po 2025-05-25 19:05:02.000000000 +0000 @@ -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 \n" "Language-Team: German \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 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 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" msgstr "B" #. 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" msgstr "B" #. 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 IB<=>I pair. Boolean values " "may be specified as I, I, I<1>, and I, I, 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" msgstr "B" #. 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(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" msgstr "B" #. 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" msgstr "B" #. 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 and overrides " "any other setting of B. This variable is unset by default." msgstr "" -"Falls gesetzt, hat dies den gleichen Effekt wie I und " -"setzt jede andere Einstellung von B außer Kraft. Diese " +"Falls gesetzt, hat dies den gleichen Effekt wie I " +"und setzt jede andere Einstellung von B außer Kraft. Diese " "Variable ist standardmäßig nicht gesetzt." -#. type: TP -#: man/kernel-img.conf.5:108 -#, no-wrap -msgid "B" -msgstr "B" - -#. type: Plain text -#: man/kernel-img.conf.5:139 -msgid "" -"B: 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 shall be set to the value of the I<--stem> argument (or the " -"default value, linux), and in packages created by kernel-package " -"B 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 of the kernel image, and the second argument " -"being the I 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, 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 " -"the scripts in /etc/kernel/postinst.d directory." -msgstr "" -"B 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 auf den Wert des " -"Arguments I<--stem> (oder den Standardwert, linux) gesetzt werden und " -"B 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 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 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 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" -msgstr "B" - -#. type: Plain text -#: man/kernel-img.conf.5:174 -msgid "" -"B: 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 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 of the kernel " -"image, and the second argument being the I 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, debconf does not restore stdout, so messages to stdout " -"disappear. This script is run I the scripts in /etc/kernel/postrm.d " -"directory." -msgstr "" -"B 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 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 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 aufruft, stellt Debconf die Standardausgabe nicht " -"wieder her, daher verschwinden Nachrichten an die Standardausgabe. Dieses " -"Skript wird I den Skripten im Verzeichnis /etc/kernel/postrm.d " -"ausgeführt." - -#. type: TP -#: man/kernel-img.conf.5:184 -#, no-wrap -msgid "B" -msgstr "B" - -#. type: Plain text -#: man/kernel-img.conf.5:204 -msgid "" -"B: 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 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 of the kernel image, and the second argument " -"being the I of the kernel image itself. This script is run " -"I the scripts in /etc/kernel/preinst.d directory." -msgstr "" -"B 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 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 des Kernel-" -"Images und das zweite der Speicherplatz des Kernel-Images selbst. Dieses " -"Skript wird I den Skripten im Verzeichnis /etc/kernel/preinst.d " -"ausgeführt." - -#. type: TP -#: man/kernel-img.conf.5:214 -#, no-wrap -msgid "B" -msgstr "B" - -#. type: Plain text -#: man/kernel-img.conf.5:239 -msgid "" -"B: 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 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 of the kernel image, and the second argument " -"being the I 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, debconf does not restore stdout, so " -"messages to stdout disappear. This script is run I the scripts in /" -"etc/kernel/prerm.d directory." -msgstr "" -"B 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 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 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 aufruft, stellt Debconf die Standardausgabe nicht wieder her, " -"daher verschwinden Nachrichten an die Standardausgabe. Dieses Skript wird " -"I den Skripten im Verzeichnis /etc/kernel/prerm.d ausgeführt." - -#. type: TP -#: man/kernel-img.conf.5:249 -#, no-wrap -msgid "B" -msgstr "B" - -#. type: Plain text -#: man/kernel-img.conf.5:272 -msgid "" -"B: 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 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 of " -"the package being installed (could be kernel source or headers), and the " -"second argument being the I of the package being installed. Errors " -"in the script shall cause the postinst to fail. This script is run I " -"the scripts in /etc/kernel/src_postinst.d directory." -msgstr "" -"B 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 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 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 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" -msgstr "B" - -#. type: Plain text -#: man/kernel-img.conf.5:301 -msgid "" -"B: 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 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 of the package being installed, and the second " -"argument being the I of the package being installed. Errors in the " -"script shall cause the postinst to fail. This script is run I the " -"scripts in /etc/kernel/header_postinst.d directory." -msgstr "" -"B 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 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 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 den " -"Skripten im Verzeichnis /etc/kernel/header_postinst.d ausgeführt." - -#. type: TP -#: man/kernel-img.conf.5:310 -#, no-wrap -msgid "B" -msgstr "B" - -#. 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" -msgstr "B" - -#. 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" -msgstr "B" - -#. 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" -msgstr "B" - -#. 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" -msgstr "B" - -#. 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" -msgstr "B" - -#. 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. 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 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 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 entdeckt wird. Dies ist standardmäßig nicht gesetzt." - -#. type: TP -#: man/kernel-img.conf.5:407 -#, no-wrap -msgid "B" -msgstr "B" - -#. 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. B " -"includes example scripts suitable for dropping into I " -"installed in I." -msgstr "" -"Die hier beschriebene Datei ist I. B " -"enthält Beispielskripte, die zur Ablage in I geeignet sind. " -"Diese werden unter I installiert." +#: man/kernel-img.conf.5:81 +msgid "The file described here is I." +msgstr "Die hier beschriebene Datei ist I." #. 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(8), B(1), B(5)" -msgstr "B(8), B(1), B(5)" +#: man/kernel-img.conf.5:83 +msgid "B(8)" +msgstr "B(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 Esrivasta@debian." -"orgE and Ben Hutchings Ebenh@debian.orgE for the Debian GNU/" -"Linux system." -msgstr "Diese Handbuchseite wurde von Manoj Srivastava Esrivasta@debian.orgE und Ben Hutchings Ebenh@debian.orgE für das Debian-GNU/Linux-System geschrieben." +"This manual page was written by Manoj Srivastava " +"Esrivasta@debian.orgE and Ben Hutchings Ebenh@debian.orgE " +"for the Debian GNU/Linux system." +msgstr "" +"Diese Handbuchseite wurde von Manoj Srivastava Esrivasta@debian.orgE " +"und Ben Hutchings Ebenh@debian.orgE für das Debian-GNU/Linux-System " +"geschrieben." diff -Nru linux-base-4.9/po/fr.po linux-base-4.12.1~deb12u1/po/fr.po --- linux-base-4.9/po/fr.po 2022-05-19 01:24:46.000000000 +0000 +++ linux-base-4.12.1~deb12u1/po/fr.po 2025-05-25 19:05:02.000000000 +0000 @@ -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 \n" "Language-Team: French \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 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 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" msgstr "B" #. 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" msgstr "B" #. 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 IB<=>I pair. Boolean values " "may be specified as I, I, I<1>, and I, I, 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" msgstr "B" #. 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(8). " @@ -242,31 +182,14 @@ "mémoire initial par défaut, comme expliqué dans I(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" msgstr "B" #. 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" msgstr "B" #. 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 and overrides " "any other setting of B. This variable is unset by default." @@ -292,503 +215,46 @@ "I et écrase tout autre réglage de B. " "Cette variable n'a pas de valeur par défaut." -# type: TP -#. type: TP -#: man/kernel-img.conf.5:108 -#, no-wrap -msgid "B" -msgstr "B" - -# type: Plain text -#. type: Plain text -#: man/kernel-img.conf.5:139 -msgid "" -"B: 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 shall be set to the value of the I<--stem> argument (or the " -"default value, linux), and in packages created by kernel-package " -"B 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 of the kernel image, and the second argument " -"being the I 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, 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 " -"the scripts in /etc/kernel/postinst.d directory." -msgstr "" -"B\\ : 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 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 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 de " -"l'image du noyau et le second étant l'I 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, 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 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" -msgstr "B" - -# type: Plain text -#. type: Plain text -#: man/kernel-img.conf.5:174 -msgid "" -"B: 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 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 of the kernel " -"image, and the second argument being the I 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, debconf does not restore stdout, so messages to stdout " -"disappear. This script is run I the scripts in /etc/kernel/postrm.d " -"directory." -msgstr "" -"B\\ : 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 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 de l'image du noyau, et le second " -"est l'I 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, debconf ne rétablit pas la sortie " -"standard, donc tous les messages en sa direction disparaissent. Ce script " -"est exécuté I les scripts du répertoire /etc/kernel/postrm.d." - -# type: TP -#. type: TP -#: man/kernel-img.conf.5:184 -#, no-wrap -msgid "B" -msgstr "B" - -# type: Plain text -#. type: Plain text -#: man/kernel-img.conf.5:204 -msgid "" -"B: 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 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 of the kernel image, and the second argument " -"being the I of the kernel image itself. This script is run " -"I the scripts in /etc/kernel/preinst.d directory." -msgstr "" -"B\\ : 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 " -"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 de " -"l'image du noyau, et le second est l'I de l'image du noyau elle-" -"même. Ce script est exécuté I les scripts du répertoire /etc/kernel/" -"preinst.d." - -# type: TP -#. type: TP -#: man/kernel-img.conf.5:214 -#, no-wrap -msgid "B" -msgstr "B" - -# type: Plain text -#. type: Plain text -#: man/kernel-img.conf.5:239 -msgid "" -"B: 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 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 of the kernel image, and the second argument " -"being the I 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, debconf does not restore stdout, so " -"messages to stdout disappear. This script is run I the scripts in /" -"etc/kernel/prerm.d directory." -msgstr "" -"B\\ : 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 " -"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 de " -"l'image du noyau, et le second est l'I 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 debconf ne rétablit pas la sortie " -"standard, donc tous les messages en sa direction disparaissent. Ce script " -"est exécuté I les scripts du répertoire /etc/kernel/prerm.d." - -# type: TP -#. type: TP -#: man/kernel-img.conf.5:249 -#, no-wrap -msgid "B" -msgstr "B" - -# type: Plain text -#. type: Plain text -#: man/kernel-img.conf.5:272 -msgid "" -"B: 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 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 of " -"the package being installed (could be kernel source or headers), and the " -"second argument being the I of the package being installed. Errors " -"in the script shall cause the postinst to fail. This script is run I " -"the scripts in /etc/kernel/src_postinst.d directory." -msgstr "" -"B\\ : 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 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 du paquet à installer (ce peut être les sources noyau, ou les " -"entêtes), et le second est la I du paquet à installer. Des erreurs " -"dans le script déclencheront un échec de postinst. Ce script est exécuté " -"I 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" -msgstr "B" - -# type: Plain text -#. type: Plain text -#: man/kernel-img.conf.5:301 -msgid "" -"B: 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 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 of the package being installed, and the second " -"argument being the I of the package being installed. Errors in the " -"script shall cause the postinst to fail. This script is run I the " -"scripts in /etc/kernel/header_postinst.d directory." -msgstr "" -"B\\ : 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 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 du paquet à installer, le second étant " -"la I du paquet à être installé. Des erreurs dans le script " -"déclencheront un échec de la postinstallation. Ce script est exécuté " -"I les scripts du répertoire /etc/kernel/src_postinst.d." - -# type: TP -#. type: TP -#: man/kernel-img.conf.5:310 -#, no-wrap -msgid "B" -msgstr "B" - -# 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" -msgstr "B" - -# 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" -msgstr "B" - -# 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" -msgstr "B" - -# 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" -msgstr "B" - -# 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" -msgstr "B" - -# 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. 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 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. " -"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 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" -msgstr "B" - -# 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. B " -"includes example scripts suitable for dropping into I " -"installed in I." -msgstr "" -"Le fichier décrit ici est I. B contient " -"des scripts d’exemple pouvant être placés dans I, installés " -"dans I." +#: man/kernel-img.conf.5:81 +msgid "The file described here is I." +msgstr "Le fichier décrit ici est I." # 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(8), B(1), B(5)" -msgstr "B(8), B(1), B(5)" +#: man/kernel-img.conf.5:83 +msgid "B(8)" +msgstr "B(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 Esrivasta@debian." -"orgE and Ben Hutchings Ebenh@debian.orgE for the Debian GNU/" -"Linux system." -msgstr "" -"Cette page de manuel a été écrite par Manoj Srivastava Esrivasta@debian." -"orgE et Ben Hutchings Ebenh@debian.orgE pour le système Debian " -"GNU/Linux." +"This manual page was written by Manoj Srivastava " +"Esrivasta@debian.orgE and Ben Hutchings Ebenh@debian.orgE " +"for the Debian GNU/Linux system." +msgstr "" +"Cette page de manuel a été écrite par Manoj Srivastava " +"Esrivasta@debian.orgE et Ben Hutchings Ebenh@debian.orgE " +"pour le système Debian GNU/Linux." diff -Nru linux-base-4.9/po/linux-base.pot linux-base-4.12.1~deb12u1/po/linux-base.pot --- linux-base-4.9/po/linux-base.pot 2019-03-24 21:49:26.000000000 +0000 +++ linux-base-4.12.1~deb12u1/po/linux-base.pot 2026-03-14 15:39:22.000000000 +0000 @@ -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 \n" "Language-Team: LANGUAGE \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 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" 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" 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 IB<=>I pair. Boolean values " "may be specified as I, I, I<1>, and I, I, 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" 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(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" 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" 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 and overrides " "any other setting of B. This variable is unset by default." msgstr "" -#. type: TP -#: man/kernel-img.conf.5:108 -#, no-wrap -msgid "B" -msgstr "" - -#. type: Plain text -#: man/kernel-img.conf.5:139 -msgid "" -"B: 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 shall be set to the value of the I<--stem> argument (or the " -"default value, linux), and in packages created by kernel-package " -"B 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 of the kernel image, and the second argument " -"being the I 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, 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 " -"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" -msgstr "" - -#. type: Plain text -#: man/kernel-img.conf.5:174 -msgid "" -"B: 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 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 of the kernel " -"image, and the second argument being the I 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, debconf does not restore stdout, so messages to stdout " -"disappear. This script is run I the scripts in /etc/kernel/postrm.d " -"directory." -msgstr "" - -#. type: TP -#: man/kernel-img.conf.5:184 -#, no-wrap -msgid "B" -msgstr "" - -#. type: Plain text -#: man/kernel-img.conf.5:204 -msgid "" -"B: 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 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 of the kernel image, and the second argument " -"being the I of the kernel image itself. This script is run " -"I the scripts in /etc/kernel/preinst.d directory." -msgstr "" - -#. type: TP -#: man/kernel-img.conf.5:214 -#, no-wrap -msgid "B" -msgstr "" - -#. type: Plain text -#: man/kernel-img.conf.5:239 -msgid "" -"B: 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 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 of the kernel image, and the second argument " -"being the I 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, debconf does not restore stdout, so " -"messages to stdout disappear. This script is run I the scripts in " -"/etc/kernel/prerm.d directory." -msgstr "" - -#. type: TP -#: man/kernel-img.conf.5:249 -#, no-wrap -msgid "B" -msgstr "" - -#. type: Plain text -#: man/kernel-img.conf.5:272 -msgid "" -"B: 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 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 of " -"the package being installed (could be kernel source or headers), and the " -"second argument being the I of the package being installed. Errors " -"in the script shall cause the postinst to fail. This script is run I " -"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" -msgstr "" - -#. type: Plain text -#: man/kernel-img.conf.5:301 -msgid "" -"B: 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 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 of the package being installed, and the second " -"argument being the I of the package being installed. Errors in the " -"script shall cause the postinst to fail. This script is run I the " -"scripts in /etc/kernel/header_postinst.d directory." -msgstr "" - -#. type: TP -#: man/kernel-img.conf.5:310 -#, no-wrap -msgid "B" -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" -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" -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" -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" -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" -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. 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 is detected. This is unset by " -"default." -msgstr "" - -#. type: TP -#: man/kernel-img.conf.5:407 -#, no-wrap -msgid "B" -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. B " -"includes example scripts suitable for dropping into I " -"installed in I." +#: man/kernel-img.conf.5:81 +msgid "The file described here is I." 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(8), B(1), B(5)" +#: man/kernel-img.conf.5:83 +msgid "B(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 " "Esrivasta@debian.orgE and Ben Hutchings Ebenh@debian.orgE " diff -Nru linux-base-4.9/sysctl.d/50-default.conf linux-base-4.12.1~deb12u1/sysctl.d/50-default.conf --- linux-base-4.9/sysctl.d/50-default.conf 1970-01-01 00:00:00.000000000 +0000 +++ linux-base-4.12.1~deb12u1/sysctl.d/50-default.conf 2025-05-25 19:16:31.000000000 +0000 @@ -0,0 +1,62 @@ +# This file originated from systemd. +# +# This is free software; you can redistribute it and/or modify it +# under the terms of the GNU Lesser General Public License as published by +# the Free Software Foundation; either version 2.1 of the License, or +# (at your option) any later version. + +# See sysctl.d(5) and core(5) for documentation. + +# To override settings in this file, create a local file in /etc +# (e.g. /etc/sysctl.d/90-override.conf), and put any assignments +# there. + +# System Request functionality of the kernel (SYNC) +# +# Use kernel.sysrq = 1 to allow all keys. +# See https://docs.kernel.org/admin-guide/sysrq.html for a list +# of values and keys. +kernel.sysrq = 0x01b6 + +# Append the PID to the core filename +kernel.core_uses_pid = 1 + +# Source route verification +net.ipv4.conf.default.rp_filter = 2 +net.ipv4.conf.*.rp_filter = 2 +-net.ipv4.conf.all.rp_filter + +# Do not accept source routing +net.ipv4.conf.default.accept_source_route = 0 +net.ipv4.conf.*.accept_source_route = 0 +-net.ipv4.conf.all.accept_source_route + +# Promote secondary addresses when the primary address is removed +net.ipv4.conf.default.promote_secondaries = 1 +net.ipv4.conf.*.promote_secondaries = 1 +-net.ipv4.conf.all.promote_secondaries + +# ping(8) without CAP_NET_ADMIN and CAP_NET_RAW +# The upper limit is set to 2^31-1. Values greater than that get rejected by +# the kernel because of this definition in linux/include/net/ping.h: +# #define GID_T_MAX (((gid_t)~0U) >> 1) +# That's not so bad because values between 2^31 and 2^32-1 are reserved on +# systemd-based systems anyway: https://systemd.io/UIDS-GIDS#summary +-net.ipv4.ping_group_range = 0 2147483647 + +# Fair Queue CoDel packet scheduler to fight bufferbloat +-net.core.default_qdisc = fq_codel + +# Enable hard and soft link protection +fs.protected_hardlinks = 1 +fs.protected_symlinks = 1 + +# 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