aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--toys/other/modinfo.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/toys/other/modinfo.c b/toys/other/modinfo.c
index 33140370..ef457aea 100644
--- a/toys/other/modinfo.c
+++ b/toys/other/modinfo.c
@@ -37,7 +37,8 @@ static void modinfo_file(char *full_name)
int fd, len, i;
char *buf = 0, *pos, *modinfo_tags[] = {
"alias", "license", "description", "author", "firmware",
- "vermagic", "srcversion", "intree", "parm", "depends",
+ "vermagic", "srcversion", "intree", "depends", "parm",
+ "parmtype",
};
if (-1 != (fd = open(full_name, O_RDONLY))) {