Page 1 of 1

One minute boot delay --> webcam

Posted: Tue Oct 07, 2014 7:11 am
by Peter Volland
With a webcam connected the raspi boot time is increased almost by a minute.

Code: Select all

[     58.123456] usbcore: registered new interface driver snd-usb-audio 
The webcam does not have any audio feature.
Any idea how to prevent this delay?

Re: One minute boot delay --> webcam

Posted: Tue Oct 07, 2014 7:25 am
by elatllat
I would say maybe try loading the module after boot, but it might be a GPU blob issue.

Re: One minute boot delay --> webcam

Posted: Tue Oct 07, 2014 10:55 am
by DougieLawson
You could try blacklisting the sound driver modules.
sudo nano /etc/modprobe.d/sound-blacklist.conf

Add this line

Code: Select all

blacklist snd-usb-audio

Re: One minute boot delay --> webcam

Posted: Tue Oct 07, 2014 11:35 am
by Peter Volland
You could try blacklisting the sound driver modules.
Yes, it works!
Thanks a lot!!!