>
> Hi Chmouel and all,
>
> i've tested the new initscripts "initscripts-5.60-3mdk".
> They always disable my supermount.
>
> I added "cat /proc/modules > /tmp/proc-modules" just befor the supermount
> test in "mandrake_everytime". Here the result:
>
> +---8<----------------------------------------------
> | supermount 35120 4 (autoclean)
> | nls_iso8859-1 2848 1 (autoclean)
> | nls_cp437 4368 1 (autoclean)
> | vfat 12144 1
> | fat 32640 0 [vfat]
> +---8<----------------------------------------------
>
> As you can see, supermount is already loaded. Coult you please apply the
> attached patch to mandrake_everytime.
> It will not break anything, but fix my problem with already loaded
> module ...
> (Tested here ...)
>
- ! insmod -n supermount >/dev/null 2>/dev/null && [ -x /usr/bin/perl ];then
+ ! modprobe -n supermount >/dev/null 2>/dev/null && [ -x /usr/bin/perl ];then
@home I use slightly different
! grep -q '[[:space:]]supermount$' /proc/filesystems && ! insmod -n supermount
...
Does modprobe account for linked in supermount?
-andrej