Re: [PATCH 1/2] Enlist running kernel modules information

From: Bhaskar Chowdhury
Date: Tue Dec 03 2019 - 23:22:25 EST


On 12:10 Wed 04 Dec 2019, Masahiro Yamada wrote:
On Tue, Dec 3, 2019 at 6:49 PM Bhaskar Chowdhury <unixbhaskar@xxxxxxxxx> wrote:

This is new file to show running kernel modules list.One line bash
script.

Signed-off-by: Bhaskar Chowdhury <unixbhaskar@xxxxxxxxx>
---
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@xxxxxxxxx
+# 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.

I think the usefulness comes from developers wants to see what are the
modules are using by the running kernel in formatted way.
This is very simple way to enlist all the modules with descriptions of
it.So , they can easily parse it with other scripts.

I believe you have already copy and paste the single line on your
terminal to see the output it produces, if not, I have already sent a
mail which includes the out of it.

If and only if, no other tool or mechanism(which might have skips my
eyes and knowledge) to find and display information this way.

Kindly, share me the other way , you can achieve that. This is a generic
script,and expecting stuff in common place, so everybody can use it.No,
special requirement is needed.

Here is little output,if you missed my other mail with it...

filename:/lib/modules/5.4.1-arch1-1ArchLinux-5.4.1/kernel/drivers/usb/host/xhci-pci.ko.xz
description: xHCI PCI Host Controller Driver
depends: xhci-hcd

These output can be parse by other scripts too(cliche...sorry) ..

Thanks,
Bhaskar



--
Best Regards
Masahiro Yamada

Attachment: signature.asc
Description: PGP signature