我在uClinux下想写一个简单的hello驱动,可是老是编译不通过。我用得是华邦nuc_7100开发板。
hello.c
#incldue <linux/init.h>
#include <linux/module.h>
MODULE_LICENSE("GPL");
static int hello_init(void)
{
printk(KERN_ALERT "hello, linux kernel world\n");
return 0;
}
static void hello_exit(void)
{
printk(KERN_ALERT "Goodbye, linux kernel\n");
}
module_init(hello_init);
module_exit(hello_exit);
Makefile
ifneq($(KERNELRRELEASE),)
obj-m := hello.o
else
KERNELDIR = /root/uClinux-dist/linux-2.4.x
PWD :=$(shell pwd)
default:
$(MAKE) -C $(KERNELDIR) M=$(PWD) modules
clean:
$(MAKE) -C $(KERNELDIR) M=$(PWD) clean
执行make后,提示:arch/i386/Makefiel:没有该文件或目录 停止。
我不知道是不是因为我的Makefile写的有问题,请大家看看。 |