[완료]커널 모듈 컴파일(다중파일) 문제 입니다.

daemon7474의 이미지

안녕하세요? 커널 모듈 테스트 중 이상이 있어 고수님들의 조언을 받고자 이렇게 글을 남깁니다.

다음과 같이 하면 로그를 이상 없이 남깁니다.

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

참으로 멀고도 험난하군요. 도움부탁드립니다. 감사합니다.

daemon7474의 이미지

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

bushi의 이미지

KDIR = /lib/modules/$(shell uname -r)/build
MDIR = $(shell pwd)
 
obj-m += test.o 
test-objs := hello.o hello1.o
 
# /tmp/lib/modules/X.X.X-X/extra/
INSTALL_PATH ?= /tmp
 
# trick
M ?= $(MDIR)
ccflags-y += -I${M)
 
modules modules_install clean:
        @$(MAKE) -C "$(KDIR)" M="$(MDIR)" \
                INSTALL_MOD_PATH=$(INSTALL_PATH) INSTALL_MOD_STRIP=1 $@

OTL

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.