chiark / gitweb /
df057735d786105b526521fc7e1b6bf92ecfe77b
[elogind.git] / udev / udev-builtin-kmod.c
1 /*
2  * probe disks for filesystems and partitions
3  *
4  * Copyright (C) 2011 Kay Sievers <kay.sievers@vrfy.org>
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation, either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 #include <stdio.h>
21 #include <stdlib.h>
22 #include <stdarg.h>
23 #include <unistd.h>
24 #include <string.h>
25 #include <errno.h>
26 #include <fcntl.h>
27 #include <sys/stat.h>
28
29 #include "udev.h"
30
31 static int builtin_kmod(struct udev_device *dev, const char *command, bool test)
32 {
33         printf("soon we load a module here: '%s'\n", command);
34         return EXIT_SUCCESS;
35 }
36
37 const struct udev_builtin udev_builtin_kmod = {
38         .name = "kmod",
39         .cmd = builtin_kmod,
40         .help = "kernel module loader",
41         .run_once = false,
42 };