aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--modutils/modinfo.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/modutils/modinfo.c b/modutils/modinfo.c
index 731fc0553..cc501825c 100644
--- a/modutils/modinfo.c
+++ b/modutils/modinfo.c
@@ -23,9 +23,9 @@
enum {
- OPT_TAGS = (1 << 6) - 1,
- OPT_F = (1 << 6), /* field name */
- OPT_0 = (1 << 7), /* \0 as separator */
+ OPT_TAGS = (1 << 8) - 1,
+ OPT_F = (1 << 8), /* field name */
+ OPT_0 = (1 << 9), /* \0 as separator */
};
struct modinfo_env {
@@ -53,6 +53,8 @@ static void modinfo(const char *path, const char *version,
"license",
"vermagic",
"parm",
+ "firmware",
+ "depends",
};
size_t len;
int j, length;