[완료]커널 모듈 컴파일(다중파일) 문제 입니다.
안녕하세요? 커널 모듈 테스트 중 이상이 있어 고수님들의 조언을 받고자 이렇게 글을 남깁니다.
다음과 같이 하면 로그를 이상 없이 남깁니다.
1. hello.c
#include
#include
#include
int __init init_hello(void)
{
printk(KERN_ALERT "[Module Message] Hello, Module.\n");
return 0;
}
void __exit exit_hello(void)
{
printk(KERN_ALERT "[Module Message] Do you really want to break up with me?\n");
}
module_init(init_hello);
module_exit(exit_hello);
MODULE_LICENSE("GPL");
2. Makefile
KERNELDIR = /lib/modules/$(shell uname -r)/build
obj-m = hello.o
TARGETS =
KDIR := /lib/modules/$(shell uname -r)/build
PWD := $(shell pwd)
default: ${TARGETS}
$(MAKE) -C $(KDIR) SUBDIRS=$(PWD) modules
CC := /usr/bin/gcc
%.c%:
${CC} -o $@ $^
clean:
rm -rf *.ko
rm -rf *.mod.*
rm -rf .*.cmd
rm -rf *.o
rm -rf .tmp_versions
3. 결과
Apr 20 21:16:15 fc6 kernel: [Module Message] Hello, Module.
Apr 20 21:16:31 fc6 kernel: [Module Message] Do you really want to break up with me?
그런데 다중 파일로 만들면 컴파일 까지는 이상이 없이 되는데 로그가 남지 않네요 ㅠ.ㅠ;
1. hello.c
#include
#include
#include
#include "hello1.h"
int __init init_hello(void)
{
printk(KERN_ALERT "[Module Message] Hello, Module.\n");
return 0;
}
//void __exit exit_hello(void)
//{
// printk(KERN_ALERT "[Module Message] Do you really want to break up with me?\n");
//}
module_init(init_hello);
module_exit(exit_hello);
MODULE_LICENSE("GPL");
2. hello1.c
//#define __NO_VERSION__
#include
#include
#include
#include "hello1.h"
void __exit exit_hello(void)
{
printk(KERN_ALERT "[Module Message] Do you really want to break up with me?\n");
}
3. hello1.h
#ifndef __HELLO1_H__
#define __HELLO1_H__
void __exit exit_hello(void);
#endif
4. Makefile
KERNELDIR = /lib/modules/$(shell uname -r)/build
obj-m += hello.o
hello-objs := hello1.o
TARGETS =
KDIR := /lib/modules/$(shell uname -r)/build
PWD := $(shell pwd)
default: ${TARGETS}
$(MAKE) -C $(KDIR) SUBDIRS=$(PWD) modules
CC := /usr/bin/gcc
%.c%:
${CC} -o $@ $^
clean:
rm -rf *.ko
rm -rf *.mod.*
rm -rf .*.cmd
rm -rf *.o
rm -rf .tmp_versions
참으로 멀고도 험난하군요. 도움부탁드립니다. 감사합니다.
[자답]새로운 모듈 오브젝트 명을 해주니 되는군요.
nm으로 심벌을 확인해 보니 이상이 있음을 확인 했네요.
두 파일 중 하나의 파일에 대한 심벌만 존재하는 ㅠ.ㅠ;
그래서 makefile을 다음과 같이 변경하니 이상없이 되는군요
-- Makefile
KERNELDIR = /lib/modules/$(shell uname -r)/build
obj-m += test.o
test-objs := hello.o hello1.o
TARGETS =
KDIR := /lib/modules/$(shell uname -r)/build
PWD := $(shell pwd)
default: ${TARGETS}
$(MAKE) -C $(KDIR) SUBDIRS=$(PWD) modules
CC := /usr/bin/gcc
%.c%:
${CC} -o $@ $^
clean:
rm -rf *.ko
rm -rf *.mod.*
rm -rf .*.cmd
rm -rf *.o
rm -rf .tmp_versions
KDIR = /lib/modules/$(shell
OTL
댓글 달기