8 lines
150 B
Plaintext
8 lines
150 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
[ -d /etc/modules.d ] && \
|
||
|
/sbin/kmodloader "/etc/modules.d/"
|
||
|
|
||
|
[ -d /etc/modules-boot.d ] && \
|
||
|
/sbin/kmodloader "/etc/modules-boot.d/" &
|