aboutsummaryrefslogtreecommitdiff
path: root/toys/other/modinfo.c
diff options
context:
space:
mode:
authoridunham <idunham@lavabit.com>2013-04-27 00:57:11 -0500
committeridunham <idunham@lavabit.com>2013-04-27 00:57:11 -0500
commitb4a86ac3ab6a248b5345557a4c9f1efba7695246 (patch)
tree1cf63b42a7557dbb4eec176e77e70cb181b9d318 /toys/other/modinfo.c
parentf01534401412812bc1d904812dfb4b0a31ee8fff (diff)
downloadtoybox-b4a86ac3ab6a248b5345557a4c9f1efba7695246.tar.gz
Add firmware field to modinfo output.
Diffstat (limited to 'toys/other/modinfo.c')
-rw-r--r--toys/other/modinfo.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/toys/other/modinfo.c b/toys/other/modinfo.c
index 66cd09fe..da510a1d 100644
--- a/toys/other/modinfo.c
+++ b/toys/other/modinfo.c
@@ -19,8 +19,8 @@ GLOBALS(
)
static char *modinfo_tags[] = {
- "alias", "license", "description", "author", "vermagic",
- "srcversion", "intree", "parm", "depends",
+ "alias", "license", "description", "author", "firmware",
+ "vermagic", "srcversion", "intree", "parm", "depends",
};
static void output_field(char *field, char *value)