lkml.org 
[lkml]   [2012]   [Apr]   [5]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
Subject[RFC]Module problem
From
Hi list,

When i write an easy module for testing, it happens to me a problem, which
is like this "Building modules, stage 2. MODPOST 0 modules". I can not
find the *.ko file.

My Module file is like this:

hello.c

#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/init.h>

static int __init hello_init(void) {
printk("<1> Hello World\n");
return 0; }

static void __exit hello_exit(void) {
printk("<1> Goodbey\n");
return ; }

MODULE_LICENSE("GPL");
module_init(hello_init);
module_exit(hello_exit);

Makefile is like this:

obj-m += hello.o

all:
make -C /usr/src/linux-headers-3.0.0-12-generic
M=/home/sel/homeworl modules

clean:
make -C /usr/src/linux-headers-3.0.0-12-generic
M=/home/sel/homeworl clean


When i compile my modules as up Makefile, i cannot get my hello.ko
file. However, when
i change the Makefile like following it is ok for me.

obj-m :=hello.o
ifneq ($( KERNELRELEASE),)

else

KERNELDIR ?= /lib/modules/$(shell uname -r)/build

PWD :=$(shell pwd)
default:

$(MAKE) -C $(KERNELDIR) M=$(PWD) modules
endif

I cannot understand this well Makefile clearly. Cloud anyone give
me a help ;-)

My kernel version is 2.6. Ubuntu 10.04. x86 32bits.

--
Thanks
Harry Wei


\
 
 \ /
  Last update: 2012-04-05 10:23    [W:1.266 / U:0.008 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site