X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=src%2Fkmod-setup.c;h=e614295f3792fca76143ff2999a4852321deac0b;hp=3ce6fcc77b4734b6b4b9a23fb7b68aad6a8af6bc;hb=ef639c5f9e9ed397424b50b14e2160993c7841d1;hpb=1e3ad081efda42dd1cc737ce7e98be8889c78340 diff --git a/src/kmod-setup.c b/src/kmod-setup.c index 3ce6fcc77..e614295f3 100644 --- a/src/kmod-setup.c +++ b/src/kmod-setup.c @@ -1,4 +1,4 @@ -/*-*- Mode: C; c-basic-offset: 8 -*-*/ +/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/ /*** This file is part of systemd. @@ -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]; } @@ -99,7 +99,7 @@ int kmod_setup(void) { } if (WIFSIGNALED(status)) { - log_warning("/sbin/modprobe terminated by signal %s.", strsignal(WTERMSIG(status))); + log_warning("/sbin/modprobe terminated by signal %s.", signal_to_string(WTERMSIG(status))); return -EPROTO; }