helper: Print /modules when verbose >= 2 master
authorRichard W.M. Jones <rjones@redhat.com>
Sat, 17 Dec 2011 13:17:23 +0000 (13:17 +0000)
committerRichard W.M. Jones <rjones@redhat.com>
Sat, 17 Dec 2011 13:17:23 +0000 (13:17 +0000)
helper/ext2initrd.c

index bb00c72..dedc1e8 100644 (file)
@@ -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);
 }