From: Richard W.M. Jones Date: Sat, 17 Dec 2011 13:17:23 +0000 (+0000) Subject: helper: Print /modules when verbose >= 2 X-Git-Url: http://git.annexia.org/?p=febootstrap.git;a=commitdiff_plain;h=fc904d83655bda4abfc9011b1e5723470f7ae326 helper: Print /modules when verbose >= 2 --- diff --git a/helper/ext2initrd.c b/helper/ext2initrd.c index bb00c72..dedc1e8 100644 --- a/helper/ext2initrd.c +++ b/helper/ext2initrd.c @@ -268,4 +268,7 @@ print_module_load_order (FILE *pipe, FILE *list, struct module *m) fputs (basename, list); fputc ('\n', list); m->visited = 1; + + if (verbose >= 2) + fprintf (stderr, "print_module_load_order: %s %s\n", m->name, basename); }