From d5258b43a2f6795cb49203d67deefd78588dedd7 Mon Sep 17 00:00:00 2001 From: Isaac Dunham Date: Tue, 4 Aug 2015 22:15:56 -0700 Subject: modprobe: use -q to silence --- toys/pending/modprobe.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'toys/pending/modprobe.c') diff --git a/toys/pending/modprobe.c b/toys/pending/modprobe.c index 10bd5780..07c53fc2 100644 --- a/toys/pending/modprobe.c +++ b/toys/pending/modprobe.c @@ -275,7 +275,8 @@ static int config_action(struct dirtree *node) get_mod(tokens[1], 1)->flags |= MOD_BLACKLIST; else if (!strcmp(tokens[0], "install")) continue; else if (!strcmp(tokens[0], "remove")) continue; - else error_msg("Invalid option %s found in file %s", tokens[0], filename); + else if (toys.optflags & FLAG_q) + error_msg("Invalid option %s found in file %s", tokens[0], filename); } fclose(fc); free(filename); @@ -425,7 +426,7 @@ static int go_probe(struct module_s *m) int rc = 0, first = 1; if (!(m->flags & MOD_FNDDEPMOD)) { - if (!(toys.optflags & FLAG_s)) + if (!(toys.optflags & FLAG_q)) error_msg("module %s not found in modules.dep", m->name); return -ENOENT; } -- cgit v1.2.3