- add init script to load modules
This commit is contained in:
Stephan Raue 2010-04-23 23:54:40 +02:00
parent c7f6be5430
commit bcbbdbf51a

View File

@ -0,0 +1,16 @@
#
# load modules
#
# runlevels: openelec, textmode
progress "loading kernel modules"
(
IFS='
'
for module in `cat /etc/modules|grep "^[^#]"`; do
eval "modprobe $module" >/dev/null 2>&1
done
exit 0
)&