[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <CAK7LNASyrYv+pufwe4CfiNvd7NtriLw=FRdLOtu7CrbmZDSVHg@mail.gmail.com>
Date: Wed, 4 Dec 2019 12:10:25 +0900
From: Masahiro Yamada <masahiroy@...nel.org>
To: Bhaskar Chowdhury <unixbhaskar@...il.com>
Cc: Michal Marek <michal.lkml@...kovi.net>,
Randy Dunlap <rdunlap@...radead.org>,
Linux Kbuild mailing list <linux-kbuild@...r.kernel.org>,
Linux Kernel Mailing List <linux-kernel@...r.kernel.org>
Subject: Re: [PATCH 1/2] Enlist running kernel modules information
On Tue, Dec 3, 2019 at 6:49 PM Bhaskar Chowdhury <unixbhaskar@...il.com> wrote:
>
> This is new file to show running kernel modules list.One line bash
> script.
>
> Signed-off-by: Bhaskar Chowdhury <unixbhaskar@...il.com>
> ---
> scripts/kernel_modules_info.sh | 23 +++++++++++++++++++++++
> 1 file changed, 23 insertions(+)
> create mode 100755 scripts/kernel_modules_info.sh
>
> diff --git a/scripts/kernel_modules_info.sh b/scripts/kernel_modules_info.sh
> new file mode 100755
> index 000000000000..f005c47a3aa6
> --- /dev/null
> +++ b/scripts/kernel_modules_info.sh
> @@ -0,0 +1,23 @@
> +#!/bin/bash -
> +#SPDX-License-Identifier: GPL-2.0
> +#===============================================================================
> +#
> +# FILE: kernel_modules_info.sh
> +#
> +# USAGE: ./kernel_modules_info.sh
> +#
> +# DESCRIPTION: Running kernel modules information.
> +#
> +# OPTIONS: ---
> +# REQUIREMENTS: awk
> +# BUGS: ---
> +# NOTES: ---
> +# AUTHOR: Bhaskar Chowdhury (https://about.me/unixbhaskar), unixbhaskar@...il.com
> +# ORGANIZATION: Independent
> +# CREATED: 12/03/2019 13:52
> +# REVISION: ---
> +#===============================================================================
> +
> +set -o nounset # Treat unset variables as an error
> +
> +awk '{print $1}' "/proc/modules" | xargs modinfo | awk '/^(filename|desc|depends)/'
I want to see a good reason (e.g. useful for other developers) for upstreaming.
This script looks like your custom script, which you can maintain locally.
--
Best Regards
Masahiro Yamada
Powered by blists - more mailing lists