From bdd7c861768637bbcafdf3f4474944bd4680e13f Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Fri, 23 Sep 2011 09:51:25 +0100 Subject: [PATCH] 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. --- helper/appliance.c | 3 +++ 1 file changed, 3 insertions(+) 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); -- 1.8.3.1