DM9000编译进内核,CS8900编译为模块,
运行以下命令加载cs8900.ko
insmod cs8900.ko
出现如下提示
Using cs8900.ko
insmod: kernel-module version mismatch
cs8900.ko was compiled for kernel version
while this kernel is version 2.6.13.
运行命令强制加载cs8900.ko
imsmod -f cs8900.ko
出现如下提示
Using cs8900.ko
insmod: Warning: kernel-module version mismatch
cs8900.ko was compiled for kernel version
while this kernel is version 2.6.13
insmod: Not configured to support old kernels
我在内核配置时Loadable module support 设置如下
[*] Enable loadable module support
[*] Module unloading
[*] Forced module unloading
[*] Module versioning support
[*] Source checksum for all modules
[*] Automatic kernel module loading
不知为何?