summary refs log tree commit diff
path: root/contrib/rvnit/03Skmods
blob: f25fb10b0928b664c3bea8d8f77d3a3f3b306314 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
# vim: set ts=4 sw=4 et:

. /etc/runit/functions

[ -n "$VIRTUALIZATION" ] && return 0
# Do not try to load modules if kernel does not support them.
[ ! -e /proc/modules ] && return 0

msg "Loading kernel modules..."
modules-load -v | tr '\n' ' ' | sed 's:insmod [^ ]*/::g; s:\.ko\(\.gz\)\? ::g'
echo