-3

簡単な質問があります。次のcファイルをコンパイルしたい:

#include <linux/kernel.h>
#include <linux/module.h>
#include <sys/syscall.h>

extern void *sys_call_table[];


asmlinkage int (*original_sys_open)(int);

asmlinkage int our_fake_open_function(int error_code)
{

        /*print message on console every time we
 *          *are called*/
        printk("HEY! sys_open called with error_code=%d\n",error_code);

        /*call the original sys_exit*/
        return original_sys_open(error_code);
}

/*this function is called when the module is
*  *loaded (initialization)*/
int init_module()
{
        /*store reference to the original sys_exit*/
        original_sys_open=sys_call_table[__NR_open];

        /*manipulate sys_call_table to call our
 *          *fake exit function instead
 *                   *of sys_exit*/
        sys_call_table[__NR_open]=our_fake_open_function;
}


/*this function is called when the module is
 *  *unloaded*/
void cleanup_module()
{

        /*make __NR_exit point to the original
 *          *sys_exit when our module
 *                   *is unloaded*/
        sys_call_table[__NR_open]=original_sys_open;

}

問題は、gcc -I/usr/src/kernels/2.6.32-279.el6.x86_64/include myfile.c が未解決のインクルード依存関係を生成することです。今日遭遇した gcc コンパイラの問題を修正する方法を教えてください。ご覧いただきありがとうございます。

4

1 に答える 1

1

外部モジュールのビルド方法はドキュメントに記載されています:

$ make -C <path_to_kernel_src> M=$PWD
于 2013-10-22T19:56:04.280 に答える