시스템 콜 작성과 커널 컴파일.. 삽질 그만 하고 싶네여..ㅡㅜ

익명 사용자의 이미지

시스템 콜작성하는 과제가 있어서.. 열심히 하는데.. 아무리해도 커널 컴
파일.. bzImage 작성에서 계속 arch/i386/kernel/kernel.o In
function 'sys_call_table'
arch/i386/kernel/kernel.o(.data+0x3d8) undefined reference
to 'sys_testcall' 이렇게 되면서 이미지 작성이 멈춰버리거덩여..
분명.. usr/src/linux/include/asm/unistd.h 에 새로운 시스템 콜 번호
넣었구여.. entry.S 에도 시스템콜 등록하고 /usr/src/linux/kernel 의
Makefile 에 제가 작성한 시스템콜 작성파일 등록해줬는데.. 계속 위 부
분에서 멈춰버리네여.. 무슨 방법 없을까요??
참고로 제가 작성한 시스템 콜입니다.
/* 새로운 시스템 호출 */
#include
#include
#include
#include
#include
asmlinkage int sys_testcall(int x, int y, int *res)
{
int error, compute;
...
...
..
compute = x*y;
return(0);
}
이런식이구여.. 파일명은 시스템 콜 명과 같은. testcall.c 입니다.
정말. 몇일간.. 리눅스.. 몇번을 다시 깔고 해봤는데.. 계속 막히네여..
이젠.. 포기 단계에여. 제발.. 조금이라도 도움을 주세요..

익명 사용자의 이미지

허접이지만 몇 자 적습니다.
참고로 커널 2.4대이구요.

"/usr/src/linux/include/asm/unistd.h"
<2.4대에서는 asm-i386이 asm으로 링크가 걸려있더라구요>
---------------------------------------------------
#define __NR_testcall 알맞은번호 -_-;;;
---------------------------------------------------

"/usr/src/linux/arch/i386/kernel/entry.S"
---------------------------------------------------
.long SYMBOL_NAME(sys_testcall) /* 주석달린 번호가 위에 번호와 일
치*/

/* 요 밑에거 바로위에 넣으심 됩니다...라인이 670번대네요 -_-;; */
/* 물론 밑에꺼는 안 쓰십니다 기본으로 있을것이기에 -_-;;; */

.rept NR_syscalls-(.-sys_call_table)/4
.long SYMBOL_NAME(sys_ni_syscall)
---------------------------------------------------

"/usr/src/linux/kernel/testcall.c" 수정할게 없을듯 합니다.
----------------------------------------------------
#include
#include
#include
#include
#include
asmlinkage int sys_testcall(int x, int y, int *res)
{
int error, compute;
...
...
..
compute = x*y;
return(0);
}
----------------------------------------------------

"/usr/src/linux/kernel/Makefile"
----------------------------------------------------
obj-y = sched.o dma.o fork.o exec_domain.o panic.o printk.o \
module.o exit.o itimer.o info.o time.o softirq.o ource.o \
sysctl.o acct.o capability.o ptrace.o timer.o user.o \
signal.o sys.o kmod.o context.o \
testcall.o /* <----요 부분만 추가.. */
----------------------------------------------------

이상입니다.

아마도 이렇게 하시면 될듯 싶네요.
그럼 건투를 ^___________^

댓글 달기

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