Hi
Is it possible to insert a kernel module from C application without calling system (" insmod ...") ?
I found some routine init_module, create_module
but it seems that these routine does not work with kernel 2.6
Any comment is welcome
Why don't you check insmod source code? [1]
The code uses the init_module call. modprobe's man page confirms that.
[1] http://www.kernel.org/pub/linux/utils/kernel/module-init-tools/
insmod source code
Why don't you check insmod source code? [1]
The code uses the init_module call. modprobe's man page confirms that.
[1] http://www.kernel.org/pub/linux/utils/kernel/module-init-tools/