Re: Error in kernel module

2007-05-24 Thread Sam Ravnborg
On Thu, May 24, 2007 at 05:24:21AM +0100, ajay parashar wrote: > Hi, > I am using fedora 6. i write a simple hello world kernel module > i write following makefile for building this module. > ### > > obj-m+=hello.o > all: > make -c /lib/modules/ $(sh

Re: Error in kernel module

2007-05-24 Thread Mike Shal
On 5/24/07, ajay parashar <[EMAIL PROTECTED]> wrote: Hi, I am using fedora 6. i write a simple hello world kernel module i write following makefile for building this module. ### obj-m+=hello.o all: make -c /lib/modules/ $(shell uname -r)/ build M=$(PWD) modules cl

Re: Error in kernel module

2007-05-24 Thread Jon Grant
Hi Ajay, " This program is built for i686-redhat-linux-gnu report bugs to Isn't that just the standard output ? You can see that text on "make --help" make *** [all] Error2 " This is the actual error. As you've not included the full output it is not clear what the problem is with your se

Error in kernel module

2007-05-24 Thread ajay parashar
Hi, I am using fedora 6. i write a simple hello world kernel module i write following makefile for building this module. ### obj-m+=hello.o all: make -c /lib/modules/ $(shell uname -r)/ build M=$(PWD) modules clean: make -c /lib/modules/