2019-08-19 19:55:50 +02:00
|
|
|
#!/bin/zsh
|
2019-07-21 19:42:16 +02:00
|
|
|
#
|
|
|
|
# /etc/rc.modules: module initialization script
|
|
|
|
#
|
|
|
|
|
|
|
|
/sbin/depmod -a
|
|
|
|
|
2019-08-19 19:55:50 +02:00
|
|
|
# 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
|
|
|
|
|
2019-07-21 19:42:16 +02:00
|
|
|
# End of file
|