On Sat, Jan 27, 2007 at 04:45:09PM +0100, Joris Piepers wrote: > Hi, > > I executed the steps like this:
Please, trim what you are replying to, and reply below the quote you are referring to. Yes, I know that gmail encourages you to reply as if it was outlook, but please fight that temptation. Thanks. > make[2]: Entering directory `/lib/modules/2.6.19.2/build' > > WARNING: Symbol version dump /lib/modules/2.6.19.2/build/Module.symvers > is missing; modules will have no dependencies and modversions. > > what does this warning mean? > Probably, you didn't select CONFIG_MODVERSIONS in your kernel .config. > CC [M] /sources/open-iscsi-2.0-754/kernel/scsi_transport_iscsi.o > CC [M] /sources/open-iscsi-2.0-754/kernel/libiscsi.o > CC [M] /sources/open-iscsi-2.0-754/kernel/iscsi_tcp.o > /sources/open-iscsi-2.0-754/kernel/iscsi_tcp.c: In function > 'iscsi_hdr_digest': > /sources/open-iscsi-2.0-754/kernel/iscsi_tcp.c:111: warning: > 'crypto_digest_dige st' is deprecated > (declared at include/linux/crypto.h:718) These 'deprecated' warnings just mean that this external project isn't up to speed with how things should be done now. Probably nothing to worry about, I guess the extraneous spaces before "st'" crept in when you reformatted this for the mail. [...] > 'crypto_digest_fin al' is deprecated > (declared at include/linux/crypto.h:715) > Building modules, stage 2. > MODPOST 3 modules > /bin/sh: scripts/mod/modpost: No such file or directory > make[3]: *** [__modpost] Error 127 > make[2]: *** [modules] Error 2 This is probably caused by the missing MODVERSIONS. It's really an option for people who supply binaries of the modules (e.g. distros), but it seems as if the open-iscsi build process has been written to require it. You might even need CONFIG_MODULE_SRCVERSION_ALL. Alternatively, you are trying to build against a clean kernel source tree, or even a kernel configured not to support modules. The file scripts/mod/modpost is actually a binary (from modpost.c) which gets built during the kernel build. ĸen -- das eine Mal als Tragödie, das andere Mal als Farce -- http://linuxfromscratch.org/mailman/listinfo/blfs-support FAQ: http://www.linuxfromscratch.org/blfs/faq.html Unsubscribe: See the above information page
