Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 24184 - lmsensors unresolved symbol with gentoo-sources-r5
Summary: lmsensors unresolved symbol with gentoo-sources-r5
Status: RESOLVED INVALID
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: x86 Linux
: High normal (vote)
Assignee: x86-kernel@gentoo.org (DEPRECATED)
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2003-07-09 09:04 UTC by Pascal de Bruijn
Modified: 2003-07-09 16:21 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Pascal de Bruijn 2003-07-09 09:04:30 UTC
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.
Comment 1 Jay Pfeifer (RETIRED) gentoo-dev 2003-07-09 16:21:02 UTC
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.