Ruben Safir wrote:
> On Tue, Nov 27, 2007 at 03:10:43PM -0600, K.R. Foley wrote:
>> Ruben Safir wrote:
>>> Hello
>>>
>>> I updated my kernel and its broken the automounter.  Does anyone know how I 
>>> might
>>> repair it for the USB devices, Floppy and CDROM?
>>>
>>> Thanks
>>>
>>> Ruben
>> Suse kernels of the 9.x era carried a patch for subfs. If you can get
>> that to apply to your newer kernel it might work. I am attaching a copy
>> that worked with a 2.6.16 kernel. Good luck.
>>
>> -- 
>>    kr
> 
> that's interesting.  I figured that SuSE had to make a kernel hack to make 
> the automounter to 
> work correctly since it just doesn't work well in standard distrobution.
> 
> Do you have a link that tells you how to add a patch like this to the kernel 
> module?
> 
> Ruben
> 

DISCLAIMER: Do this at your own risk. I assume you know how to build and
install a kernel from source or we wouldn't be having this conversation.

save attachment
cd <your kernel sourcedir>
cat <savedfile> | patch -p1 --dry-run (-p1 strips (one - hence -p1)
level of directory, --dry-run says don't actually apply patch just test)

Make sure there are no failed hunks. Fuzz is ok but no failures. If you
have failures the patch won't work. If no failures continue to next step.

cat <savedfile> | patch -p1 (now really apply the patch)
make oldconfig

If it doesn't prompt you about subfs run make menuconfig and turn on
subfs for module.

make; make modules_install; make install

You should be on familiar ground now I assume.



-- 
        kr
-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to