[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20191203094845.610692-1-unixbhaskar@gmail.com>
Date: Tue, 3 Dec 2019 15:18:45 +0530
From: Bhaskar Chowdhury <unixbhaskar@...il.com>
To: yamada.masahiro@...ionext.com, michal.lkml@...kovi.net,
rdunlap@...radead.org
Cc: linux-kbuild@...r.kernel.org, linux-kernel@...r.kernel.org,
Bhaskar Chowdhury <unixbhaskar@...il.com>
Subject: [PATCH 1/2] Enlist running kernel modules information
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)/'
--
2.24.0
Powered by blists - more mailing lists