From 4d4f8879e379038c6d43377a176ece95f07bdae1 Mon Sep 17 00:00:00 2001 From: lxsameer Date: Wed, 23 Feb 2011 11:05:54 +0330 Subject: [PATCH] some change in the kernel module main file template --- src/templates/c/kernel_module/__project__.c.tmpl | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/templates/c/kernel_module/__project__.c.tmpl b/src/templates/c/kernel_module/__project__.c.tmpl index b7d38de..d45686b 100644 --- a/src/templates/c/kernel_module/__project__.c.tmpl +++ b/src/templates/c/kernel_module/__project__.c.tmpl @@ -3,7 +3,11 @@ */ #include #include -MODULE_LICENSE("Dual BSD/GPL"); + +MODULE_LICENSE("GPL"); +MODULE_AUTHOR("::author:: <::email::>""); +MODULE_DESCRIPTION("::desc::"); + static int module_init(void) { printk(KERN_ALERT "Hello, world\n");