cd /root/Desktop/r8101-1.016.00/src
make
提示ERROR: Kernel configuration is invalid!
解决方法:
bt ~# make oldconfig && make prepare
或
把.config(/proc/config.gz)文件复制到/usr/src/linux-xxx/
bt ~#ll /proc/config.gz -r–r–r– 1 root root 15192 Sep 27 01:12 /proc/config.gz
bt ~#file /proc/config.gz
/proc/config.gz: gzip compressed data, from Unix, max compression
bt ~#cat /proc/config.gz |gzip -d > /tmp/config
cp/tmp/config/usr/src/linux-xxx/.config
提示ERROR:
make -C /lib/modules/2.6.21.5/build SUBDIRS=/root/Desktop/r8101-1.016.00/src/src modules
make[1]: Entering directory `/usr/src/linux-2.6.21.5′
WARNING: Symbol version dump /usr/src/linux-2.6.21.5/Module.symvers
is missing; modules will have no dependencies and modversions.
scripts/Makefile.build:17: /root/Desktop/r8101-1.016.00/src/src/Makefile: No such file or directory
make[2]: *** No rule to make target `/root/Desktop/r8101-1.016.00/src/src/Makefile’. Stop.
make[1]: *** [_module_/root/Desktop/r8101-1.016.00/src/src] Error 2
make[1]: Leaving directory `/usr/src/linux-2.6.21.5′
make: *** [modules] Error 2
解决方法:
modpos这个文件缺少了,直接导致驱动编译失败,这个文件的作用:从编译的过程日志中可以看到,他的作用应该是就爱嗯.o文件转成.ko文件的,这样我们用.ko文件才能去内核里insmod。
bt ~#make modules_prepare
Slackware Linux 编译r8101驱动问题
转载请注明出处:服务器评测 » Slackware Linux 编译r8101驱动问题