ALSA driver compilation
The problem:
compilation of the alsa-driver-0.9.2 fails because of a failed dependency (on the second make ('make install')). This didn't happen when I was still using the 2.4.18 kernel...
The other problem:
i am a newbie
The question:
how do i get this in working order?
The output:
the last bit of output from 'make install', all output from lsmod and modprobe of the snd-emu10k1 kernel module
[root@hh301 alsa-driver-0.9.2]#make install
[...]
/sbin/depmod -a 2.4.20-8
depmod: *** Unresolved symbols in /lib/modules/2.4.20-8/kernel/sound/acore/snd.o
if [ -L /usr/include/sound ]; then \
rm -f /usr/include/sound; \
ln -sf /usr/src/alsa/alsa-driver-0.9.2/include/sound /usr/include/sound; \
else \
rm -rf /usr/include/sound; \
install -d -m 755 -g root -o root /usr/include/sound; \
for f in include/sound/*.h; do \
install -m 644 -g root -o root $f /usr/include/sound; \
done \
fi
if [ -d /sbin/init.d ]; then \
install -m 755 -g root -o root utils/alsasound /sbin/init.d/alsasound; \
elif [ -d /etc/rc.d/init.d ]; then \
install -m 755 -g root -o root utils/alsasound /etc/rc.d/init.d/alsasound; \
elif [ -d /etc/init.d ]; then \
install -m 755 -g root -o root utils/alsasound /etc/init.d/alsasound; \
fi
cat WARNING
[root@hh301 alsa-driver-0.9.2]# lsmod
Module Size Used by Not tainted
soundcore 6276 0 (autoclean)
3c59x 30416 2
ipt_LOG 4120 13 (autoclean)
ipt_limit 1528 13 (autoclean)
ipt_state 1048 4 (autoclean)
ipt_TOS 1592 40 (autoclean)
iptable_mangle 2776 1 (autoclean)
iptable_nat 21208 1 (autoclean)
ip_conntrack 26528 2 (autoclean) [ipt_state iptable_nat]
iptable_filter 2380 1 (autoclean)
ip_tables 14648 9 [ipt_LOG ipt_limit ipt_state ipt_TOS iptable_mangle iptable_nat iptable_filter]
nls_cp437 5116 1 (autoclean)
vfat 12844 1 (autoclean)
fat 38328 0 (autoclean) [vfat]
nls_iso8859-1 3484 3 (autoclean)
ntfs 58304 2 (autoclean)
loop 11928 0 (autoclean)
lvm-mod 63456 0
keybdev 2880 0 (unused)
mousedev 5428 1
hid 21700 0 (unused)
input 5792 0 [keybdev mousedev hid]
usb-uhci 25868 0 (unused)
usbcore 77696 1 [hid usb-uhci]
ext3 69984 2
jbd 51220 2 [ext3]
[root@hh301 alsa-driver-0.9.2]# modprobe snd-emu10k1
/lib/modules/2.4.20-8/kernel/sound/acore/snd.o: unresolved symbol schedule_work
/lib/modules/2.4.20-8/kernel/sound/acore/snd.o: insmod /lib/modules/2.4.20-8/kernel/sound/acore/snd.o failed
/lib/modules/2.4.20-8/kernel/sound/acore/snd.o: insmod snd-emu10k1 failed
|