linux设备驱动程序开发环境的建立(编译嵌入式内核)

时间:2021-08-25 18:45:37
开发环境的建立:  内核:tq2440提供的内核linux-2.6.30.4_20091030.tar.bz2
arm-linux-gcc -v :4.3.3
我的环境是: pc:            thinkpa sl400

linux操作系统:   ubuntu 8.04
参考文档:天嵌科技出品-Linux移植之Step By Step_V4.2_20100125.pdf    P24~P29
$ cp -f config_EmbedSky_W35_256MB .config

$  make menuconfig  $  make $  make bzImage $  make modules
$  sudo  make modules_install

================================================================================
在此基础上去编译hello.c
make
dengwei@dw:~/arm_2010/ldd3_dw/hello$ make
make -C /lib/modules/2.6.30.4/build/lib M=/home/dengwei/arm_2010/ldd3_dw/hello
make[1]: 正在进入目录 `/home/dengwei/tq2440/linux-2.6.30.4/lib'
make[1]: *** 没有规则可以创建“/crc32table.h”需要的目标“/gen_crc32table”。 停止。
make[1]:正在离开目录 `/home/dengwei/tq2440/linux-2.6.30.4/lib'
make: *** [all] 错误 2
dengwei@dw:~/arm_2010/ldd3_dw/hello$

改正后的结果:
[root@(none) hello]# insmod hello.ko
hello: module license 'DUal BSD/GPL' taints kernel.
Disabling lock debugging due to kernel taint
Hello, world
[root@(none) hello]#