diff options
author | Isaac Dunham <idunham@lavabit.com> | 2013-07-10 21:26:49 -0500 |
---|---|---|
committer | Isaac Dunham <idunham@lavabit.com> | 2013-07-10 21:26:49 -0500 |
commit | a2168e74516c41a6c6f0a22f9bffce4578c9c546 (patch) | |
tree | 41f44ba5f3faf4137224f5dca1824762739c273f /toys/other/modinfo.c | |
parent | c810f9f80b9db62de09b6cf4c6ca770eed72ce53 (diff) | |
download | toybox-a2168e74516c41a6c6f0a22f9bffce4578c9c546.tar.gz |
add paramtype in to the list of tags
Diffstat (limited to 'toys/other/modinfo.c')
-rw-r--r-- | toys/other/modinfo.c | 3 |
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))) { |