[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <CAK7LNATOSOy=FgmTqH-ymt34T7+iE93Uu4DTzHjH6m90E83Vng@mail.gmail.com>
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