lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Date:   Sun, 8 May 2022 03:23:00 +0900
From:   Masahiro Yamada <masahiroy@...nel.org>
To:     Reza Arbab <arbab@...ux.ibm.com>
Cc:     Michal Marek <michal.lkml@...kovi.net>,
        Nick Desaulniers <ndesaulniers@...gle.com>,
        Linux Kbuild mailing list <linux-kbuild@...r.kernel.org>,
        "J . Bruce Fields" <bfields@...ldses.org>,
        Linux Kernel Mailing List <linux-kernel@...r.kernel.org>
Subject: Re: [PATCH] scripts/prune-kernel: Use kernel-install if available

On Thu, May 5, 2022 at 6:27 AM Reza Arbab <arbab@...ux.ibm.com> wrote:
>
> If the new-kernel-pkg utility isn't present, try using kernel-install.
> This is what the %preun scriptlet in scripts/package/mkspec does too.
>
> Signed-off-by: Reza Arbab <arbab@...ux.ibm.com>
> ---
> Hope I've sent this to the right people. get_maintainer.pl came up
> blank, but kbuild seems like the nearest match in MAINTAINERS.
>

Applied to linux-kbuild. Thanks.


>  scripts/prune-kernel | 6 +++++-
>  1 file changed, 5 insertions(+), 1 deletion(-)
>
> diff --git a/scripts/prune-kernel b/scripts/prune-kernel
> index e8aa940bc0a9..dadfd0e47f89 100755
> --- a/scripts/prune-kernel
> +++ b/scripts/prune-kernel
> @@ -16,6 +16,10 @@ do
>                  rm -f "/boot/initramfs-$f.img" "/boot/System.map-$f"
>                  rm -f "/boot/vmlinuz-$f"   "/boot/config-$f"
>                  rm -rf "/lib/modules/$f"
> -                new-kernel-pkg --remove $f
> +                if [ -x "$(command -v new-kernel-pkg)" ]; then
> +                        new-kernel-pkg --remove $f
> +                elif [ -x "$(command -v kernel-install)" ]; then
> +                        kernel-install remove $f
> +                fi
>          fi
>  done
> --
> 2.27.0
>


-- 
Best Regards
Masahiro Yamada

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ