You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/zsh
|
|
#
|
|
# /etc/rc.modules: module initialization script
|
|
#
|
|
|
|
/sbin/depmod -a
|
|
|
|
# FIXME: Is this even necessary? Is this even *desirable*?
|
|
/bin/busybox find /sys -name modalias -type f -print0 | xargs -0 sort -u \
|
|
| /bin/bin/busybox xargs modprobe -b -a 2> /dev/null
|
|
|
|
# End of file
|