summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2010-08-19 03:30:36 +0200
committerLennart Poettering <lennart@poettering.net>2010-08-19 03:30:36 +0200
commitbe11c12e49d39a0f1f0f83a67a212c3ff0e98b3d (patch)
treed246d838f9123db8ce250bbfe304ecf89f9ead3c
parent28695e0facfa14d54223f2805df19e44a17f3a7e (diff)
downloadsystemd-be11c12e49d39a0f1f0f83a67a212c3ff0e98b3d.tar.gz
kmod: downgrade modprobe log message for since ipv6 might be compiled as module for blacklisting
-rw-r--r--src/kmod-setup.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/kmod-setup.c b/src/kmod-setup.c
index 6ac0c9ff8d..e614295f37 100644
--- a/src/kmod-setup.c
+++ b/src/kmod-setup.c
@@ -48,9 +48,9 @@ int kmod_setup(void) {
if (access(kmod_table[i+1], F_OK) >= 0)
continue;
- log_info("Your kernel apparently lacks built-in %s support. Please fix that. "
- "We'll now try to work around this by calling '/sbin/modprobe %s'...",
- kmod_table[i], kmod_table[i]);
+ log_debug("Your kernel apparently lacks built-in %s support. Might be a good idea to compile it in. "
+ "We'll now try to work around this by calling '/sbin/modprobe %s'...",
+ kmod_table[i], kmod_table[i]);
cmdline[3 + n++] = kmod_table[i];
}