]> pilppa.org Git - familiar-h63xx-build.git/blob - org.handhelds.familiar/packages/modutils/files/mnci/modutils.sh
OE tree imported from monotone branch org.openembedded.oz354fam083 at revision 8b12e3...
[familiar-h63xx-build.git] / org.handhelds.familiar / packages / modutils / files / mnci / modutils.sh
1 depmod -Ae
2
3 (cat /etc/modules; echo; ) |
4 while read module args
5 do
6         case "$module" in
7                 \#*|"") continue ;;
8         esac
9         modprobe $module $args
10 done