aboutsummaryrefslogtreecommitdiff
path: root/toys/other/modinfo.c
diff options
context:
space:
mode:
authorIsaac Dunham <idunham@lavabit.com>2013-07-10 21:26:49 -0500
committerIsaac Dunham <idunham@lavabit.com>2013-07-10 21:26:49 -0500
commita2168e74516c41a6c6f0a22f9bffce4578c9c546 (patch)
tree41f44ba5f3faf4137224f5dca1824762739c273f /toys/other/modinfo.c
parentc810f9f80b9db62de09b6cf4c6ca770eed72ce53 (diff)
downloadtoybox-a2168e74516c41a6c6f0a22f9bffce4578c9c546.tar.gz
add paramtype in to the list of tags
Diffstat (limited to 'toys/other/modinfo.c')
-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))) {