From fc904d83655bda4abfc9011b1e5723470f7ae326 Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Sat, 17 Dec 2011 13:17:23 +0000 Subject: helper: Print /modules when verbose >= 2 --- helper/ext2initrd.c | 3 +++ 1 file changed, 3 insertions(+) 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); } -- cgit