Hi ,
How to specify LICENSE tag in a driver module so that module is marked
as tainted while loading.
Regards
Shafa.hidee
>Hi ,
> How to specify LICENSE tag in a driver module so that module is marked
>as tainted while loading.
#include <linux/module.h>
MODULE_LICENSE("GPL");
Note that tained == (a license != GPL/BSD/similar)
Jan Engelhardt
--