Hello there, I had the problem compiling 2.5.3-dj1 with zisofs included as other people on that list - same problem, undefined reference in fs/fs.o . I tried to use the EXPORTS_SYMBOL macro from modules.h and export the zisofs_cleanup in fs/isofs/compress.c and also added export-objs := compress.o in the Makefile. Didn't help. Searching for hints in other Makefiles which list objects exporting symbols, i noticed that all such objects are linked first into the target obj, which is not the case with compress.o. When I moved compress.o first in the obj-y list, the compile error was gone and this even without EXPORT_SYMBOL(zisofs_cleanup); in compress.c Next to say is: I don't know anything about the linux kernel, so I'm not sure if this is the correct way to fix this issue. It just seems to work. So use at your own risk until the maintainer fixes it properly. Cheers, Todor