I've just installed my gentoo-sources-r5, then I installed alsa 0.9.4... After that I installed lm-sensors 2.7.0-r1, it works, but modules-update gives me errors. Reproducible: Always Steps to Reproduce: Actual Results: goliath root # modules-update depmod: *** Unresolved symbols in /lib/modules/2.4.20-gentoo-r5/misc/i2c-hydra.o depmod: *** Unresolved symbols in /lib/modules/2.4.20-gentoo-r5/misc/i2c-i810.o depmod: *** Unresolved symbols in /lib/modules/2.4.20-gentoo-r5/misc/i2c-savage4.o depmod: *** Unresolved symbols in /lib/modules/2.4.20-gentoo-r5/misc/i2c-via.o depmod: *** Unresolved symbols in /lib/modules/2.4.20-gentoo-r5/misc/i2c-voodoo3.o goliath root # goliath root # depmod -ae depmod: *** Unresolved symbols in /lib/modules/2.4.20-gentoo-r5/misc/i2c-hydra.o depmod: i2c_bit_del_bus_Rdd11c972 depmod: i2c_bit_add_bus_R8ca8253b depmod: *** Unresolved symbols in /lib/modules/2.4.20-gentoo-r5/misc/i2c-i810.o depmod: i2c_bit_del_bus_Rdd11c972 depmod: i2c_bit_add_bus_R8ca8253b depmod: *** Unresolved symbols in /lib/modules/2.4.20-gentoo-r5/misc/i2c-savage4.o depmod: i2c_bit_del_bus_Rdd11c972 depmod: i2c_bit_add_bus_R8ca8253b depmod: *** Unresolved symbols in /lib/modules/2.4.20-gentoo-r5/misc/i2c-via.o depmod: i2c_bit_del_bus_Rdd11c972 depmod: i2c_bit_add_bus_R8ca8253b depmod: *** Unresolved symbols in /lib/modules/2.4.20-gentoo-r5/misc/i2c-voodoo3.o depmod: i2c_bit_del_bus_Rdd11c972 depmod: i2c_bit_add_bus_R8ca8253b goliath root # emerge -p lm-sensors Expected Results: goliath root # modules-update goliath root # depmod -ae I did not have this trouble with my 2.4.21-ck3 kernel.
this is not a gentoo-sources bug. follow the steps below and it will fix your unresolved symbols. save your .config rm -rf /usr/src/linux-2.4.20-gentoo-r5/ rm -rf /lib/modules/2.4.20-gentoo-r5/ emerge gentoo-sources cp .config /usr/src/linux-2.4.20-gentoo-r5/ cd /usr/src/linux-2.4.20-gentoo-r5/ make oldconfig make menuconfig (just check you really have the options you'd like) make dep && make clean && make bzImage && make modules modules_install put ${KV}/arch/i386/boot/bzImage in /boot (make sure /boot is mounted) if using lilo... run it :) reboot to ensure all is ok... emerge lm-sensors enjoy.