summaryrefslogtreecommitdiffstats
path: root/helper
diff options
context:
space:
mode:
authorRichard W.M. Jones <rjones@redhat.com>2011-09-23 09:51:25 +0100
committerRichard W.M. Jones <rjones@redhat.com>2011-09-23 09:51:25 +0100
commitbdd7c861768637bbcafdf3f4474944bd4680e13f (patch)
tree5564258d4a2d05a54c4279b58578bae2b4d65806 /helper
parent8ad45af9d37eeed9797e955f75200a244d675f7d (diff)
downloadfebootstrap-bdd7c861768637bbcafdf3f4474944bd4680e13f.tar.gz
febootstrap-bdd7c861768637bbcafdf3f4474944bd4680e13f.tar.xz
febootstrap-bdd7c861768637bbcafdf3f4474944bd4680e13f.zip
Verbose message when adding kernel modules.
This step takes a considerable amount of time (about half of the total construction time), so separately display a timestamped message for it.
Diffstat (limited to 'helper')
-rw-r--r--helper/appliance.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/helper/appliance.c b/helper/appliance.c
index 50d1d78..b2cc840 100644
--- a/helper/appliance.c
+++ b/helper/appliance.c
@@ -197,6 +197,9 @@ static void
add_kernel_modules (const char *whitelist_file, const char *modpath,
struct writer *writer)
{
+ if (verbose)
+ print_timestamped_message ("adding kernel modules");
+
char **whitelist = NULL;
if (whitelist_file != NULL)
whitelist = load_file (whitelist_file);