public inbox for linux-newbie@vger.kernel.org
 help / color / mirror / Atom feed
* Error building 'Hello,World' kernel Module
@ 2004-08-04 22:43 Lei Yang
  2004-08-05  5:17 ` Shine Mohamed Jabbar
  0 siblings, 1 reply; 5+ messages in thread
From: Lei Yang @ 2004-08-04 22:43 UTC (permalink / raw)
  To: kernelnewbies, linux-newbie

Hello,

I am learning about module programming and just tried to build a
simplest module, Hello World.

The code is as follows:
/* hello.c
#include <linux/module.h>       
#include <linux/kernel.h>      

int init_module(void)
{
        printk("Hello world!\n");
        return 0;
}

void cleanup_module(void)
{
        printk(KERN_ALERT "Goodbye world!\n");
}


The makefile is just one line:
 obj-m += hello.o

Then as root, I did in the HelloWorld directory:

make -C /usr/src/linux-`uname -r` SUBDIRS=$PWD modules

There is such an error:
make: Entering directory `/usr/src/linux-2.6.5-7.104-default'

WARNING: Symbol version dump
/usr/src/linux-2.6.5-7.104-default/Module.symvers is  missing, modules
will have CONFIG_MODVERSIONS disabled.

make[1]: *** No rule to make target `/home/lei/HelloWorld/hello.c',
needed by `/home/lei/HelloWorld/hello.o'.  Stop.
make: *** [_module_/home/lei/HelloWorld] Error 2
make: Leaving directory `/usr/src/linux-2.6.5-7.104-default'


Appreciate any comments and help!

TIA
Lei


-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.linux-learn.org/faqs

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2004-08-06  5:59 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-08-04 22:43 Error building 'Hello,World' kernel Module Lei Yang
2004-08-05  5:17 ` Shine Mohamed Jabbar
2004-08-05 22:44   ` Lei Yang
2004-08-06  5:20     ` Shine Mohamed Jabbar
2004-08-06  5:59       ` pa3gcu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox