|
下载了公社上s90的驱动(里面说支持MX200),执行make,提示
Makefile:122: No Aureal Vortex soundcard detected!
Makefile:123: *** See the "Troubleshooting" of the README file for help
屏蔽掉Makefile中的检测部分
#ifneq ($(shell /sbin/lspci -d '12eb:3'),)
#NAME = au8810
#ASP_OBJ = asp10.o
#endif
i#fneq ($(shell /sbin/lspci -d '12eb:1'),)
NAME = au8820
ASP_OBJ = asp20.o
#endif
#ifneq ($(shell /sbin/lspci -d '12eb:2'),)
#NAME = au8830
#ASP_OBJ = asp30.o
#endif
之后安装au8820的驱动成功,但此后加载模块失败并且出现如下提示
Installing module au8820. If the device isn't there, or isn't configured correctly, this could cause your system to pause for up to a minute.
/lib/modules/2.4.22/drivers/sound/au8820.o: unresolved symbol unregister_sound_mixer_R7afc9d8a
/lib/modules/2.4.22/drivers/sound/au8820.o: unresolved symbol register_sound_midi_Ref06b757
/lib/modules/2.4.22/drivers/sound/au8820.o: unresolved symbol register_sound_mixer_R6151997b
/lib/modules/2.4.22/drivers/sound/au8820.o: unresolved symbol register_sound_dsp_R254ac652
/lib/modules/2.4.22/drivers/sound/au8820.o: unresolved symbol register_sound_special_Rf192c863
/lib/modules/2.4.22/drivers/sound/au8820.o: unresolved symbol unregister_sound_dsp_Rcd083b10
/lib/modules/2.4.22/drivers/sound/au8820.o: unresolved symbol unregister_sound_special_R99c95fa5
/lib/modules/2.4.22/drivers/sound/au8820.o: unresolved symbol unregister_sound_midi_Rfdab6de3
/lib/modules/2.4.22/drivers/sound/au8820.o:
Hint: You are trying to load a module without a GPL compatible license
and it has unresolved symbols. Contact the module supplier for
assistance, only they can help you.
/lib/modules/2.4.22/drivers/sound/au8820.o: insmod /lib/modules/2.4.22/drivers/sound/au8820.o failed
/lib/modules/2.4.22/drivers/sound/au8820.o: insmod au8820 failed
Installation failed.
depmod: *** Unresolved symbols in /lib/modules/2.4.22/drivers/sound/au8820.o
我的系统是Debian 3.0,内核是今天编译的2.4.22
请各位大虾帮忙看看 |
|