mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
16 lines
222 B
Bash
Executable File
16 lines
222 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# load modules
|
|
#
|
|
# runlevels: openelec, debug, configure
|
|
|
|
echo "### Loading kernel modules ###"
|
|
|
|
IFS='
|
|
'
|
|
for module in `cat /etc/modules|grep "^[^#]"`; do
|
|
eval "modprobe $module" >/dev/null 2>&1
|
|
done
|
|
|
|
exit 0
|