summaryrefslogtreecommitdiffstats
path: root/helper
diff options
context:
space:
mode:
authorRichard W.M. Jones <rjones@redhat.com>2011-12-17 13:17:23 +0000
committerRichard W.M. Jones <rjones@redhat.com>2011-12-17 13:17:23 +0000
commitfc904d83655bda4abfc9011b1e5723470f7ae326 (patch)
treebdd8ff15ff6ff623a748502e25fe156669562e34 /helper
parent61c565bc06a83da75b57f8568fe76f393e665d70 (diff)
downloadfebootstrap-fc904d83655bda4abfc9011b1e5723470f7ae326.tar.gz
febootstrap-fc904d83655bda4abfc9011b1e5723470f7ae326.tar.xz
febootstrap-fc904d83655bda4abfc9011b1e5723470f7ae326.zip
helper: Print /modules when verbose >= 2
Diffstat (limited to 'helper')
-rw-r--r--helper/ext2initrd.c3
1 files changed, 3 insertions, 0 deletions
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);
}