kmod-setup.c revision 97c4a07df982ee967705022feaba9be33947abf0
/*-*- 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 General Public License as published by
the Free Software Foundation; either version 2 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
General Public License for more details.
You should have received a copy of the GNU General Public License
along with systemd; If not, see <http://www.gnu.org/licenses/>.
***/
#include <unistd.h>
#include <string.h>
#include <errno.h>
#include "macro.h"
#include "execute.h"
#include "kmod-setup.h"
static const char * const kmod_table[] = {
};
int kmod_setup(void) {
unsigned i, n = 0;
int r;
continue;
log_debug("Your kernel apparently lacks built-in %s support. Might be a good idea to compile it in. "
kmod_table[i], kmod_table[i]);
}
if (n <= 0)
return 0;
if (r < 0) {
return r;
}
}