kmod-setup.c revision f271dd97622b656c1c013d181ea615c671cc2438
/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
/***
This file is part of systemd.
Copyright 2010 Lennart Poettering
under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or
(at your option) any later version.
systemd is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with systemd; If not, see <http://www.gnu.org/licenses/>.
***/
#include <unistd.h>
#include <string.h>
#include <errno.h>
#include <libkmod.h>
#include "macro.h"
#include "execute.h"
#include "kmod-setup.h"
static const char * const kmod_table[] = {
};
{
}
int kmod_setup(void) {
unsigned i;
struct kmod_module *mod;
int err;
continue;
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 loading the module...",
kmod_table[i]);
if (!ctx) {
if (!ctx) {
log_error("Failed to allocate memory for kmod");
return -ENOMEM;
}
}
if (err < 0) {
continue;
}
if (err == 0)
else if (err == KMOD_PROBE_APPLY_BLACKLIST)
else
}
if (ctx)
return 0;
}