jyh
jyh

Reputation: 1

kernel module problem in commercial software

The security software I'm building contains a kernel module. because the kernel must process the packet.

Do not use DKMS because it is commercial software.

If the kernel version goes up, insmod doesn't work.

What should I do? Do you have a good idea?

Upvotes: -3

Views: 92

Answers (1)

Vikas Vijayan
Vikas Vijayan

Reputation: 61

If you can't load the modules dynamically then another option to load the modules is making it as part of the kernel. Refer the following link :

http://newbiedoc.sourceforge.net/system/kernel-pkg.html

Upvotes: 0

Related Questions