modprobe: try to remove unused modules first
commit3ad3131cb10639a35f9e80000717b629a90fe900
authorAlan Jenkins <alan-jenkins@tuffmail.co.uk>
Tue, 16 Mar 2010 17:49:58 +0000 (16 17:49 +0000)
committerAlan Jenkins <alan-jenkins@tuffmail.co.uk>
Wed, 17 Mar 2010 10:24:58 +0000 (17 10:24 +0000)
tree91984462f28d6ac0831735831cc9c01e1dcd1c48
parent8829d1c5870bd9cc99631847b7f5e04d728a7a88
modprobe: try to remove unused modules first

This allows e.g. removing all alsa modules with

    modprobe -r `lsmod|cut -d " " -f1|grep snd`

or even removing all currently unused modules.

    modprobe -r `lsmod|cut -d " " -f1|grep -v Module`
modprobe.c