当前位置:  技术问答>linux和unix

内核模块hello.c编译通不过……

    来源: 互联网  发布时间:2016-09-04

    本文导语:  #include  #if defined(CONFIG_SMP) #define __SMP__ #endif #if defined(CONFIG_MODVERSIONS) #define MODVERSIONS #include  #endif #include  static __init int init_modules(void) { printk(KERN_DEBUG "Hello, kernel!n"); return 0; } static __exit void cleanup_modules(void) { pri...


#include 

#if defined(CONFIG_SMP)
#define __SMP__
#endif

#if defined(CONFIG_MODVERSIONS)
#define MODVERSIONS
#include 
#endif

#include 

static __init int init_modules(void) {
printk(KERN_DEBUG "Hello, kernel!n");
return 0;
}

static __exit void cleanup_modules(void) {
printk(KERN_DEBUG "Good-bye, kernel!n");
}


操作系统:debian 5.04/gcc-4.3
命令:gcc -D__KERNEL__ -I/usr/src/linnux-headers-$(uname -r)/include -DMODULE -Wall -O2 -c kernel.c -o kernel.o

错误提示:

double@DES:~$ gcc -D__KERNEL__ -I/usr/src/linux-headers-$(uname -r)/include -DMODULE -Wall -O2 -c kernel.c -o kernel.o
In file included from /usr/src/linux-headers-2.6.26-2-686/include/linux/cache.h:4,
                 from /usr/src/linux-headers-2.6.26-2-686/include/asm/pda.h:7,
                 from /usr/src/linux-headers-2.6.26-2-686/include/asm/current_64.h:7,
                 from /usr/src/linux-headers-2.6.26-2-686/include/asm/current.h:4,
                 from /usr/src/linux-headers-2.6.26-2-686/include/asm/processor.h:15,
                 from /usr/src/linux-headers-2.6.26-2-686/include/linux/prefetch.h:14,
                 from /usr/src/linux-headers-2.6.26-2-686/include/linux/list.h:6,
                 from /usr/src/linux-headers-2.6.26-2-686/include/linux/module.h:9,
                 from kernel.c:1:
/usr/src/linux-headers-2.6.26-2-686/include/linux/kernel.h: In function ‘printk_needs_cpu’:
/usr/src/linux-headers-2.6.26-2-686/include/linux/kernel.h:220: error: parameter name omitted
In file included from /usr/src/linux-headers-2.6.26-2-686/include/linux/prefetch.h:14,
                 from /usr/src/linux-headers-2.6.26-2-686/include/linux/list.h:6,
                 from /usr/src/linux-headers-2.6.26-2-686/include/linux/module.h:9,
                 from kernel.c:1:
/usr/src/linux-headers-2.6.26-2-686/include/asm/processor.h: At top level:
/usr/src/linux-headers-2.6.26-2-686/include/asm/processor.h:112: error: ‘CONFIG_X86_L1_CACHE_SHIFT’ undeclared here (not in a function)
/usr/src/linux-headers-2.6.26-2-686/include/asm/processor.h:112: error: requested alignment is not a constant
In file included from /usr/src/linux-headers-2.6.26-2-686/include/linux/prefetch.h:14,
                 from /usr/src/linux-headers-2.6.26-2-686/include/linux/list.h:6,
                 from /usr/src/linux-headers-2.6.26-2-686/include/linux/module.h:9,
                 from kernel.c:1:
/usr/src/linux-headers-2.6.26-2-686/include/asm/processor.h:155:1: warning: "cache_line_size" redefined
In file included from /usr/src/linux-headers-2.6.26-2-686/include/asm/pda.h:7,
                 from /usr/src/linux-headers-2.6.26-2-686/include/asm/current_64.h:7,
                 from /usr/src/linux-headers-2.6.26-2-686/include/asm/current.h:4,
                 from /usr/src/linux-headers-2.6.26-2-686/include/asm/processor.h:15,
                 from /usr/src/linux-headers-2.6.26-2-686/include/linux/prefetch.h:14,
                 from /usr/src/linux-headers-2.6.26-2-686/include/linux/list.h:6,
                 from /usr/src/linux-headers-2.6.26-2-686/include/linux/module.h:9,
                 from kernel.c:1:
/usr/src/linux-headers-2.6.26-2-686/include/linux/cache.h:64:1: warning: this is the location of the previous definition
/usr/src/linux-headers-2.6.26-2-686/include/asm/processor.h: In function ‘load_cr3’:
/usr/src/linux-headers-2.6.26-2-686/include/asm/processor.h:187: error: ‘CONFIG_PAGE_OFFSETUL’ undeclared (first use in this function)
/usr/src/linux-headers-2.6.26-2-686/include/asm/processor.h:187: error: (Each undeclared identifier is reported only once
/usr/src/linux-headers-2.6.26-2-686/include/asm/processor.h:187: error: for each function it appears in.)
/usr/src/linux-headers-2.6.26-2-686/include/asm/processor.h: At top level:
/usr/src/linux-headers-2.6.26-2-686/include/asm/processor.h:236: error: requested alignment is not a constant
In file included from /usr/src/linux-headers-2.6.26-2-686/include/asm/thread_info.h:5,
                 from /usr/src/linux-headers-2.6.26-2-686/include/linux/thread_info.h:47,
                 from /usr/src/linux-headers-2.6.26-2-686/include/linux/preempt.h:9,
                 from /usr/src/linux-headers-2.6.26-2-686/include/linux/spinlock.h:49,
                 from /usr/src/linux-headers-2.6.26-2-686/include/linux/seqlock.h:29,
                 from /usr/src/linux-headers-2.6.26-2-686/include/linux/time.h:8,
                 from /usr/src/linux-headers-2.6.26-2-686/include/linux/stat.h:60,
                 from /usr/src/linux-headers-2.6.26-2-686/include/linux/module.h:10,
                 from kernel.c:1:
/usr/src/linux-headers-2.6.26-2-686/include/asm/thread_info_64.h: In function ‘current_thread_info’:
/usr/src/linux-headers-2.6.26-2-686/include/asm/thread_info_64.h:66: error: ‘THREAD_SIZE’ undeclared (first use in this function)
/usr/src/linux-headers-2.6.26-2-686/include/asm/thread_info_64.h: In function ‘stack_thread_info’:
/usr/src/linux-headers-2.6.26-2-686/include/asm/thread_info_64.h:74: error: ‘THREAD_SIZE’ undeclared (first use in this function)
In file included from /usr/src/linux-headers-2.6.26-2-686/include/linux/elf.h:7,
                 from /usr/src/linux-headers-2.6.26-2-686/include/linux/module.h:14,
                 from kernel.c:1:
/usr/src/linux-headers-2.6.26-2-686/include/asm/elf.h: In function ‘elf_common_init’:
/usr/src/linux-headers-2.6.26-2-686/include/asm/elf.h:166: error: ‘struct pt_regs’ has no member named ‘r8’
/usr/src/linux-headers-2.6.26-2-686/include/asm/elf.h:166: error: ‘struct pt_regs’ has no member named ‘r9’
/usr/src/linux-headers-2.6.26-2-686/include/asm/elf.h:166: error: ‘struct pt_regs’ has no member named ‘r10’
/usr/src/linux-headers-2.6.26-2-686/include/asm/elf.h:166: error: ‘struct pt_regs’ has no member named ‘r11’
/usr/src/linux-headers-2.6.26-2-686/include/asm/elf.h:167: error: ‘struct pt_regs’ has no member named ‘r12’
/usr/src/linux-headers-2.6.26-2-686/include/asm/elf.h:167: error: ‘struct pt_regs’ has no member named ‘r13’
/usr/src/linux-headers-2.6.26-2-686/include/asm/elf.h:167: error: ‘struct pt_regs’ has no member named ‘r14’
/usr/src/linux-headers-2.6.26-2-686/include/asm/elf.h:167: error: ‘struct pt_regs’ has no member named ‘r15’
In file included from /usr/src/linux-headers-2.6.26-2-686/include/linux/mmzone.h:16,
                 from /usr/src/linux-headers-2.6.26-2-686/include/linux/gfp.h:4,
                 from /usr/src/linux-headers-2.6.26-2-686/include/linux/slab.h:12,
                 from /usr/src/linux-headers-2.6.26-2-686/include/linux/percpu.h:5,
                 from /usr/src/linux-headers-2.6.26-2-686/include/asm/local.h:4,
                 from /usr/src/linux-headers-2.6.26-2-686/include/linux/module.h:19,
                 from kernel.c:1:
/usr/src/linux-headers-2.6.26-2-686/include/linux/nodemask.h: In function ‘__first_node’:
/usr/src/linux-headers-2.6.26-2-686/include/linux/nodemask.h:233: warning: implicit declaration of function ‘find_first_bit’
/usr/src/linux-headers-2.6.26-2-686/include/linux/nodemask.h: In function ‘__next_node’:
/usr/src/linux-headers-2.6.26-2-686/include/linux/nodemask.h:239: warning: implicit declaration of function ‘find_next_bit’
/usr/src/linux-headers-2.6.26-2-686/include/linux/nodemask.h: In function ‘__first_unset_node’:
/usr/src/linux-headers-2.6.26-2-686/include/linux/nodemask.h:257: warning: implicit declaration of function ‘find_first_zero_bit’
In file included from /usr/src/linux-headers-2.6.26-2-686/include/linux/module.h:21,
                 from kernel.c:1:
/usr/src/linux-headers-2.6.26-2-686/include/asm/module.h:70:2: error: #error unknown processor family

|
http://blog.csdn.net/pottichu/archive/2007/11/19/1892245.aspx
你的内核是2.6的, 写个 Makefile.

# Makefile2.6
ifneq ($(KERNELRELEASE),)
 #kbuild syntax. dependency relationshsip of files and target modules are listed here.
 mymodule-objs := hello.o
 obj-m := hello.o   
else
PWD  := $(shell pwd)
KVER ?= $(shell uname -r)
KDIR := /lib/modules/$(KVER)/build
all:
 $(MAKE) -C $(KDIR) M=$(PWD)
clean:
rm -rf .*.cmd *.o *.mod.c *.ko .tmp_versions
endif

|
是不是因为没有写许可证GPL

|
看这个网址:http://topic.csdn.net/u/20100205/16/ea8080df-b284-4dd6-9f92-c6bcff33c497.html。2.6版本的linux驱动程序编译和2.4的不一样。

    
 
 

您可能感兴趣的文章:

  • CentOS 6内核升级:下载编译启用新内核版本详细过程
  • GCC3.4可以编译2.4内核吗 如何查看某版本内核是用哪个版本gcc编译的
  • Fedora Core 2自带的内核升级程序下载下来内核后,要不要再编译一遍内核?
  • [求教]内核加载模块后,这部分内容编译在内核里的吗?
  • 编译新内核后怎么进入原来内核
  • 关于如何把编译进内核的编译成模块
  • 不重新编译内核能修改内核函数吗?
  • 为什么我自己编译的内核比系统自带的内核大了10倍左右?
  • Linux 编译内核之后 没办法选择内核版本
  • 内核编译出现:没有编译规则/driver/pci/devlist.h。
  • *******是不是对内核模块编程然后再重新编译内核就可以把此模块整合到linux系统中
  • 修改内核代码问题:如何编译修改的单个文件而不用重建整个内核?
  • 想问一下,编译LINUX内核时,是否可以只编译其中的一个模块?
  • 新手的菜鸟问题:不同内核版本下编译的程序能否互相调用,是否需要在同一内核下重新编译.
  • 请问重新编译LINUX内核是否能将没有用的外设的驱动程序删除并减少内核占有内存的资源?请好心人仕指教! iis7站长之家
  • 问一个小白问题,在交叉编译时,系统内核和开发板的内核有没有相关性?
  • 我现在要重新编译内核,要怎样才能保留原来的内核
  • 【求助】基于2.6.29内核编译的驱动程序能否应用于2.6.32内核的系统?
  • 何处有 Linux 内核编译配置详细的中文介绍? 我在重新配置编译时老是出错:-(
  • intel e1000网卡无法加载,内核是2.4.28,想重新编译内核,应该注意哪些步骤!
  • 请问重新编译LINUX内核是否能将没有用的外设的驱动程序删除并减少内核占有内存的资源?请好心人仕指教!
  • 内核模块跟内核版本不匹配????????
  • 谁能提供kgdb内核补丁内核模块的下载
  • 驱动模块可以编入内核,想单独编译成模块,makefile怎么写?
  • 大侠帮忙!模块调试(非内核模块)
  • 想删除内核中的一个模块,输入命令后,系统提示该模块不存在。但是我lsmod时,它在/proc/modules中。求解。
  • 求内核和用户态简单易行的通信方法,用户态只需得到一个内核模块参数
  • 内核模块是什么东西,怎么理解呢
  • Linux 内核模块编程问题!!!!
  • 内核模块和设备驱动的区别?
  • 怎么给内核加载自己编写的模块
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • Linux内核中影响tcp三次握手的一些协议配置
  • 进程内核栈和操作系统内核栈的关系
  • TCP协议四次断连过程介绍及Linux内核协议栈中相关设置项
  • Linux中内核线程不访问内核态地址空间?
  • Linux进程的内核栈和用户栈概念,相互关系及切换过程
  • 2.6内核下编译2.4内核
  • linux内核中的likely宏和unlikely宏介绍及用法
  • 请问linux中如何判断内核是否已经启动。(在内核中写程序)
  • CentOS 6.5 下载地址及如何升级内核(kernel)版本到 3.10.28
  • 请教:如何安装新内核(rpm包)而不同原来得内核冲突?? 在线等待!!
  • Linux下c/c++开发之程序崩溃(Segment fault)时内核转储文件(core dump)生成设置方法
  • linux为什么要升级内核?升级内核有何作用?
  • docker使用的技术之Container内核原理介绍
  • 内核升级后,如何在新的内核中加载显卡驱动?
  • 内核源码和结果make过的内核源码有什么区别
  • 如何学好内核?学了内核能应用于哪方面?
  • 请问在2.6的内核环境下编译2.4的内核有没有什么特殊的要求
  • 内核进程间发送信号用哪个函数,如果没有这东西,那内核里异步通知用哪个东西
  • 初学内核编程,在内核态下怎么用socket通信?
  • 有没有大牛能谈一下UNIX和Windnt哪个是强内核,哪个是微内核,以及他们的优劣,多谢
  • 内核栈~ 内核线程 ~用户线程 之间关系 问题


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3