Kernel configuration is invalid. include/linux/autoconf.h or include/config/auto.conf are m

[cpp]  view plain copy
  1. #include <linux/init.h>  
  2. #include <linux/module.h>  
  3. MODULE_LICENSE("Dual BSD/GPL");  
  4.   
  5. static int hello_init(void)  
  6. {  
  7.    printk(KERN_ALERT "Hello, world\n");  
  8.    return 0;  
  9. }  
  10.    
  11. static void hello_exit(void)  
  12. {  
  13.    printk(KERN_ALERT "Goodbye, cruel world\n");  
  14.    return 0;  
  15. }  
  16.   
  17. module_init(hello_init);  
  18. module_exit(hello_exit);  

Makefile:

[plain]  view plain copy
  1. KERNELDIR=/opt/EmbedSky/linux-2.6.30.4     
  2. PWD:=$(shell pwd)     
  3. INSTALLDIR=$(PWD)      
  4. CC=arm-linux-gcc    
  5. obj-m := hello.o     
  6. modules:     
  7.     $(MAKE) -C $(KERNELDIR) M=$(PWD) modules     
  8. clean:     
  9.     rm -rf *.o *.ko *.mod.c *.markers *.order *.symvers     
  10. .PHONY:modules clean    

make的时候出现如下错误:

[plain]  view plain copy print ?
  1. make[1]: Entering directory `/opt/EmbedSky/linux-2.6.30.4'  
  2.   
  3.   ERROR: Kernel configuration is invalid.  
  4.          include/linux/autoconf.h or include/config/auto.conf are missing.  
  5.          Run 'make oldconfig && make prepare' on kernel src to fix it.  
  6.   
  7.   
  8.   WARNING: Symbol version dump /opt/EmbedSky/linux-2.6.30.4/Module.symvers  
  9.            is missing; modules will have no dependencies and modversions.  

原来是内核没有编译, 果断配置内核, 然后make

内核编译完之后, 再到hello模块那里make


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值