diff options
author | idunham <idunham@lavabit.com> | 2013-04-27 00:57:11 -0500 |
---|---|---|
committer | idunham <idunham@lavabit.com> | 2013-04-27 00:57:11 -0500 |
commit | b4a86ac3ab6a248b5345557a4c9f1efba7695246 (patch) | |
tree | 1cf63b42a7557dbb4eec176e77e70cb181b9d318 /toys/other | |
parent | f01534401412812bc1d904812dfb4b0a31ee8fff (diff) | |
download | toybox-b4a86ac3ab6a248b5345557a4c9f1efba7695246.tar.gz |
Add firmware field to modinfo output.
Diffstat (limited to 'toys/other')
-rw-r--r-- | toys/other/modinfo.c | 4 |
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) |