> i have running stabel. I installed kernel-headers-2.2.17, > kernel-source-2.2.17 and kernel-package. Then i
(Off-topic -- kernel-package isn't needed since you're compiling kernels the "old" way or the "non-debian" way) > made my own kernel ( make dep clean bzImage; > make modules; make modules_install) > > After running lilo and a reboot i get lots of unresolved symbol > in module blablabla. > > Why is this ? What have i done wrong or what have i forgoten ? > How can this be fixed ? There's likely a module or modules that were in your stock kernel still in /lib/modules/2.2.17. Running "make modules_install" just adds the modules you compiled to that dir. It doesn't remove existing or obsolete ones. Do a "mv /lib/modules/2.2.17 /lib/modules/2.2.17-backup" and then re-run "make modules_install". Regards Hall