编译环境:虚拟机+ubuntu12.04
开发板:OK6410 交叉编译器arm-linux-gcc 4.3.2
情况如下:
将s3c6410_leds.c(飞凌提供的 应该没问题) Makefile 放在linux共享文件夹(文件夹满权限),Makefile内容如下:ifneq ($(KERNELRELEASE),)
obj-m :=s3c6410_leds.o
else
KDIR := /hypc/linux-3.0.1
all:
make -C $(KDIR) M=$(PWD) modules ARCH=arm CROSS_COMPILE=arm-linux-
clean:
rm -f *.ko *.o *.mod.o *.mod.c *.symvers
endif
#make 过后出现如下错误:
root@ubuntu:/mnt/hgfs/linux_share/module_test# make
make -C /hypc/linux-3.0.1 M=/mnt/hgfs/linux_share/module_test modules ARCH=arm CROSS_COMPILE=arm-linux-
make[1]: arm-linux-gcc: Command not found
make[1]: Entering directory `/hypc/linux-3.0.1'
mkdir: cannot create directory `/mnt/hgfs/linux_share/module_test/.tmp_versions': File exists
CC [M] /mnt/hgfs/linux_share/module_test/s3c6410_leds.o
/bin/sh: 1: arm-linux-gcc: not found
make[2]: *** [/mnt/hgfs/linux_share/module_test/s3c6410_leds.o] Error 127
make[1]: *** [_module_/mnt/hgfs/linux_share/module_test] Error 2
make[1]: Leaving directory `/hypc/linux-3.0.1'
make: *** [all] Error 2
root@ubuntu:/mnt/hgfs/linux_share/module_test#
生成不了.ko文件。
linux3.0.1内核自带的leds驱动我用应用程序可以控制 说明驱动是没问题的,我怀疑是哪里设置不对?
求高手解决!!! |