2013-12-22 02:21:11 +05:30
|
|
|
#!@SBINDIR@/openrc-run
|
2015-12-05 04:22:19 +05:30
|
|
|
# Copyright (c) 2007-2015 The OpenRC Authors.
|
|
|
|
# See the Authors file at the top-level directory of this distribution and
|
|
|
|
# https://github.com/OpenRC/openrc/blob/master/AUTHORS
|
|
|
|
#
|
|
|
|
# This file is part of OpenRC. It is subject to the license terms in
|
|
|
|
# the LICENSE file found in the top-level directory of this
|
|
|
|
# distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE
|
|
|
|
# This file may not be copied, modified, propagated, or distributed
|
|
|
|
# except according to the terms contained in the LICENSE file.
|
2007-11-14 20:52:04 +05:30
|
|
|
|
2007-07-11 00:39:41 +05:30
|
|
|
description="Loads a user defined list of kernel modules."
|
|
|
|
|
2008-01-11 17:43:46 +05:30
|
|
|
depend()
|
|
|
|
{
|
2007-04-05 16:48:42 +05:30
|
|
|
use isapnp
|
2018-03-17 01:03:01 +05:30
|
|
|
provide modules-load
|
2016-07-31 23:31:17 +05:30
|
|
|
keyword -docker -lxc -openvz -prefix -systemd-nspawn -vserver
|
2007-04-05 16:48:42 +05:30
|
|
|
}
|
|
|
|
|
2018-03-17 01:03:01 +05:30
|
|
|
find_modfiles()
|
|
|
|
{
|
|
|
|
local dirs="/usr/lib/modules-load.d /run/modules-load.d /etc/modules-load.d"
|
|
|
|
local basenames files fn x y
|
|
|
|
for x in $dirs; do
|
|
|
|
[ ! -d $x ] && continue
|
|
|
|
for y in $x/*.conf; do
|
|
|
|
[ -f $y ] && basenames="${basenames}\n${y##*/}"
|
|
|
|
done
|
|
|
|
done
|
|
|
|
basenames=$(printf "$basenames" | sort -u)
|
|
|
|
for x in $basenames; do
|
|
|
|
for y in $dirs; do
|
|
|
|
[ -r $y/$x ] &&
|
|
|
|
fn=$y/$x
|
|
|
|
done
|
|
|
|
files="$files $fn"
|
|
|
|
done
|
|
|
|
echo $files
|
|
|
|
}
|
|
|
|
|
|
|
|
load_modules()
|
|
|
|
{
|
2021-05-13 00:31:06 +05:30
|
|
|
local file m _modules rc x
|
2018-03-17 01:03:01 +05:30
|
|
|
file=$1
|
|
|
|
[ -z "$file" ] && return 0
|
|
|
|
while read m x; do
|
|
|
|
case $m in
|
|
|
|
\;*) continue ;;
|
|
|
|
\#*) continue ;;
|
2021-05-13 00:31:06 +05:30
|
|
|
*) _modules="$_modules $m"
|
2018-03-17 01:03:01 +05:30
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done < $file
|
2021-05-13 00:31:06 +05:30
|
|
|
for x in $_modules; do
|
2018-03-17 01:03:01 +05:30
|
|
|
ebegin "Loading module $x"
|
|
|
|
case "$RC_UNAME" in
|
|
|
|
FreeBSD) kldload "$x"; rc=$? ;;
|
2018-10-24 03:17:37 +05:30
|
|
|
Linux) modprobe --first-time -q --use-blacklist "$x"; rc=$? ;;
|
2018-03-17 01:03:01 +05:30
|
|
|
*) ;;
|
|
|
|
esac
|
|
|
|
eend $rc "Failed to load $x"
|
|
|
|
done
|
2018-10-24 03:17:37 +05:30
|
|
|
return 0
|
2018-03-17 01:03:01 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
modules_load_d()
|
|
|
|
{
|
|
|
|
local x
|
|
|
|
files=$(find_modfiles)
|
|
|
|
for x in $files; do
|
|
|
|
load_modules $x
|
|
|
|
done
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2016-07-18 01:23:12 +05:30
|
|
|
FreeBSD_modules()
|
|
|
|
{
|
|
|
|
local cnt=0 x
|
|
|
|
for x in $modules; do
|
|
|
|
ebegin "Loading module $x"
|
|
|
|
kldload "$x"
|
|
|
|
eend $? "Failed to load $x" && : $(( cnt += 1 ))
|
|
|
|
done
|
|
|
|
einfo "Autoloaded $cnt module(s)"
|
|
|
|
}
|
|
|
|
|
|
|
|
Linux_modules()
|
2008-01-11 17:43:46 +05:30
|
|
|
{
|
2016-12-18 06:43:48 +05:30
|
|
|
# Should not fail if kernel does not have module
|
2007-04-05 16:48:42 +05:30
|
|
|
# support compiled in ...
|
2008-02-19 19:59:20 +05:30
|
|
|
[ ! -f /proc/modules ] && return 0
|
2007-04-05 16:48:42 +05:30
|
|
|
|
2011-07-04 13:18:51 +05:30
|
|
|
local KV x y kv_variant_list
|
|
|
|
KV=$(uname -r)
|
|
|
|
# full $KV
|
|
|
|
kv_variant_list="${KV}"
|
|
|
|
# remove any KV_EXTRA options to just get the full version
|
|
|
|
x=${KV%%-*}
|
|
|
|
# now slowly strip them
|
2011-07-05 03:57:00 +05:30
|
|
|
while [ -n "$x" ] && [ "$x" != "$y" ]; do
|
2011-07-04 13:18:51 +05:30
|
|
|
kv_variant_list="${kv_variant_list} $x"
|
|
|
|
y=$x
|
|
|
|
x=${x%.*}
|
2011-07-05 03:57:00 +05:30
|
|
|
done
|
2007-04-05 16:48:42 +05:30
|
|
|
|
2018-06-30 01:59:46 +05:30
|
|
|
local list= x= xx= y= args=
|
2011-07-04 13:18:51 +05:30
|
|
|
for x in $kv_variant_list ; do
|
2009-04-27 13:21:18 +05:30
|
|
|
eval list=\$modules_$(shell_var "$x")
|
|
|
|
[ -n "$list" ] && break
|
2007-12-29 04:11:19 +05:30
|
|
|
done
|
2009-04-27 13:21:18 +05:30
|
|
|
[ -z "$list" ] && list=$modules
|
2007-04-05 16:48:42 +05:30
|
|
|
|
2016-12-18 06:43:48 +05:30
|
|
|
[ -n "$list" ] && ebegin "Loading kernel modules"
|
2009-04-27 13:21:18 +05:30
|
|
|
for x in $list; do
|
|
|
|
xx=$(shell_var "$x")
|
2011-07-04 13:18:51 +05:30
|
|
|
for y in $kv_variant_list ; do
|
2009-04-27 13:21:18 +05:30
|
|
|
eval args=\$module_${xx}_args_$(shell_var "$y")
|
2008-03-25 14:01:48 +05:30
|
|
|
[ -n "${args}" ] && break
|
|
|
|
done
|
2009-04-27 13:21:18 +05:30
|
|
|
[ -z "$args" ] && eval args=\$module_${xx}_args
|
2018-10-24 03:17:37 +05:30
|
|
|
eval modprobe --first-time --use-blacklist --verbose "$x" "$args"
|
2007-12-29 04:11:19 +05:30
|
|
|
done
|
2016-12-18 06:43:48 +05:30
|
|
|
[ -n "$list" ] && eend
|
2007-04-05 16:48:42 +05:30
|
|
|
}
|
2016-07-18 01:23:12 +05:30
|
|
|
|
|
|
|
start()
|
|
|
|
{
|
|
|
|
case "$RC_UNAME" in
|
2018-10-13 03:46:23 +05:30
|
|
|
FreeBSD|Linux)
|
2018-03-17 01:03:01 +05:30
|
|
|
modules_load_d
|
|
|
|
${RC_UNAME}_modules
|
|
|
|
;;
|
2016-07-18 01:23:12 +05:30
|
|
|
*) ;;
|
|
|
|
esac
|
|
|
|
return 0
|
|
|
|
}
|