디바이스 드라이버 예제 실행중에...printk 문제점..

gnoygnas의 이미지

아주 기초적인 질문이 될 수 있지만 이쪽 분야는 생소하기에 부딪히는 일이 많네요..

아래는 커널 2.6에서 실행한 내용입니다..(얼핏 듯기로 2.4버전대하고 모듈 프로그래밍하는 방식이 틀리다고 하는데, 어떤 점에서 다른지 궁금합니다.)

      1 #define MODULE

      2 #include <linux/module.h>

      3 #include <linux/init.h>

      4 #include <linux/kernel.h>

      5 

      6 int moduleInit(void)

      7 {

      8     printk("<1>Hello, world\n");

      9     return 0;

     10 }

     11 

     12 void moduleCleanup(void)

     13 {

     14     printk("<1>Goodbye\n");

     15 }

     16 

     17 module_init(moduleInit);

     18 module_exit(moduleCleanup);

[root@venus embedded]# gcc -c hello.cc 

hello.cc: In function `int moduleInit()':

hello.cc:8: error: `printk' undeclared (first use this function)

hello.cc:8: error: (Each undeclared identifier is reported only once for each function it appears in.)

hello.cc: In function `void moduleCleanup()':

hello.cc:14: error: `printk' undeclared (first use this function)

[root@venus embedded]#

분명히 <linux/kernel.h>를 포함해 주었는데 printk가 선언이 안되었다고 나오네요...뭐가 잘못되었는지...

해결책 부탁드립니다...^^

pastime의 이미지

확장자가 cc 니까 gcc 가 C++ 파일로 가정하고 처리하는 과정에서

함수 이름을 인식하지 못하는 것으로 보입니다.

파일의 확장자를 cc 가 아니라 c 로 고쳐서 해보시기 바랍니다.

그리고 2.6 에서 모듈 프로그래밍을 하려면

Makefile 파일을 작성하시는 것이 좋습니다.

자세한 내용은 flyduck 님의 글을 검색해 보세요.. ^^

ganadist의 이미지

-D__KERNEL__ 을 컴파일 옵션에 넣어야 합니다.

그리고 커널 2.6에서는 커널 모듈에 여러가지 정보(컴파일러 버젼, 커널의 중요 설정 등등)이 포함되기 때문에 단순히 .o파일로 만들어서는 모듈이 로딩되지 않습니다.

http://pain.mizi.com/wikix/index.php?display=MyDocKernel26DeviceDriver#wikiXheading_27 에 있는대로 Makefile을 만들고 실행하여야 올바른 커널 모듈이 만들어집니다.

----
데스크탑 프로그래머를 꿈꾸는 임베디드 삽질러

gnoygnas의 이미지

위에 답변 주신 덕분에 잘 해결했습니다...^^
일반 프로그래밍하고는 약간 틀려서 애먹네요...

아무쪼록 감사합니다..

아래는 이래 저래 참조해서 만든 Makefile인데, 혹시 저 같은 분들이 있을까 첨부합니다..

      1 # Makefile
      2 
      3 obj-m   :=  hello.o
      4 
      5 KDIR    := /lib/modules/$(shell uname -r)/build
      6 PWD     := $(shell pwd)
      7 
      8 default:
      9     $(MAKE) -C $(KDIR) SUBDIRS=$(PWD) modules
     10 
     11 clean:
     12     rm -rf *.ko
     13     rm -rf *.mod.*
     14     rm -rf .*.cmd
     15     rm -rf *.o

One must, In fact, Love your pursuit
My home is below...Well, just go own your gait!

댓글 달기

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
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.