add paramtype in to the list of tags
authorIsaac Dunham <idunham@lavabit.com>
Thu, 11 Jul 2013 02:26:49 +0000 (21:26 -0500)
committerIsaac Dunham <idunham@lavabit.com>
Thu, 11 Jul 2013 02:26:49 +0000 (21:26 -0500)
toys/other/modinfo.c

index 3314037..ef457ae 100644 (file)
@@ -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))) {