Hi
   when i try to compile kernel module it gives me following warning.
/tmp/cckX293D.s: Assember messages:
/tmp/cckX293D.s :8 Warning :Ignoring changed secton attributes for .modinfo

if i insert this modules ignoring this warning module does not works properly
   actul module is for customizing system calls.but it works sometimes and not works 
some times.
   then i tried a small sample module for debuging this too gave same message

#define MODULE
#include <linux/kernel.h>

int init_module(void)
{
   printk("staring test...");
}

void cleanup_module(void)
{
   printk("ending test");
}

now i compile this by
$gcc -c test.c

it gives me warning
/tmp/cckX293D.s: Assember messages:
/tmp/cckX293D.s :8 Warning :Ignoring changed secton attributes for .modinfo
although this sample module works if i insert it but custom system call module does 
not works properly

pls advice
---
Manish Kumar Arya







See Dave Matthews Band live or win a signed guitar
http://r.lycos.com/r/bmgfly_mail_dmb/http://win.ipromotions.com/lycos_020201/splash.asp
 

          ================================================
To subscribe, send email to [EMAIL PROTECTED] with subscribe in subject header
To unsubscribe, send email to [EMAIL PROTECTED] with unsubscribe in subject header
Archives are available at http://www.mail-archive.com/ilugd%40wpaa.org
          =================================================

Reply via email to