2011-11-25 10:25:18 +07:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <inttypes.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <libkmod.h>
|
|
|
|
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
const char *path;
|
|
|
|
struct kmod_ctx *ctx;
|
|
|
|
struct kmod_module *mod;
|
|
|
|
int err;
|
|
|
|
|
|
|
|
if (argc < 2) {
|
|
|
|
fprintf(stderr, "Provide a path to a module\n");
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
path = argv[1];
|
|
|
|
|
2011-12-12 05:37:01 +07:00
|
|
|
ctx = kmod_new(NULL, NULL);
|
2011-11-25 10:25:18 +07:00
|
|
|
if (ctx == NULL)
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
|
|
|
|
printf("libkmod version %s\n", VERSION);
|
|
|
|
|
|
|
|
err = kmod_module_new_from_path(ctx, path, &mod);
|
2011-12-05 06:18:21 +07:00
|
|
|
if (err < 0) {
|
|
|
|
kmod_unref(ctx);
|
2011-11-25 10:25:18 +07:00
|
|
|
exit(EXIT_FAILURE);
|
2011-12-05 06:18:21 +07:00
|
|
|
}
|
2011-11-25 10:25:18 +07:00
|
|
|
|
2011-12-08 19:57:50 +07:00
|
|
|
printf("Trying insmod '%s' (%s)\n", kmod_module_get_name(mod),
|
|
|
|
kmod_module_get_path(mod));
|
2011-12-11 06:02:39 +07:00
|
|
|
err = kmod_module_insert_module(mod, 0, NULL);
|
2011-11-25 10:25:18 +07:00
|
|
|
if (err < 0) {
|
|
|
|
fprintf(stderr, "%s\n", strerror(-err));
|
|
|
|
|
|
|
|
kmod_module_unref(mod);
|
|
|
|
kmod_unref(ctx);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
kmod_module_unref(mod);
|
|
|
|
kmod_unref(ctx);
|
|
|
|
|
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|