package.mk/recipes/rc/rc.modules

13 lines
284 B
Plaintext
Raw Permalink Normal View History

2021-03-27 23:53:49 +01:00
#!/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