*** ERROR IN MY PREVIOUS POST ***
*** THIS POST IS THE GOOD ONE :) ***

  Hello

 I got headaches with this problem too and finally found how to resolve it by 
myself...at least, this solution worked with my config (had a pre-compiled 
2.4.22-10mdk kernel and I upgraded it with a 2.4.22-28 one compiled on my PC)

Here's how to do:
In your kernel configuration file ".config" there's 2 features you MUST set as 
module (=m) and not resident (=y).
These features are:
                                        zlib_deflate
                                        zlib_inflate

"isofs" module need them to be compiled as modules too; this way, symbol 
references can be rsolved in it (don't ask me why).

The problem is they are not displayed in the menu when you use "make 
menuconfig"..... so you need to edit the file using "vi" or an other text 
editor...

To find involved lines and see their number you can first type this:
->      cd /usr/src/linux
->      cat -n .config | grep 'ZLIB_'

In my case I get this result:
        2028  CONFIG_ZLIB_INFLATE=y
        2029  CONFIG_ZLIB_DEFLATE=y

Just edit the file:
->      vi .config

Go to concerned lines and change them to:
        CONFIG_ZLIB_INFLATE=m
        CONFIG_ZLIB_DEFLATE=m

Now re-run the compilation for modules only:
->      make modules modules_install

The iso9660 file system should works now :)
Good luck!


     Philippe


=================================================================
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]

Reply via email to