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
|
2016-08-24 04:18:39 +05:30
|
|
|
want 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
|
|
|
}
|
|
|
|
|
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
|
|
|
{
|
2007-04-05 16:48:42 +05:30
|
|
|
# Should not fail if kernel do not have module
|
|
|
|
# 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
|
|
|
|
2008-08-19 20:55:06 +05:30
|
|
|
local list= x= xx= y= args= mpargs= cnt=0 a=
|
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
|
|
|
|
2009-04-27 13:21:18 +05:30
|
|
|
for x in $list; do
|
2008-08-19 20:55:06 +05:30
|
|
|
a=${x#*:}
|
2009-04-27 13:21:18 +05:30
|
|
|
if [ "$a" = "$x" ]; then
|
2008-08-19 20:55:06 +05:30
|
|
|
unset mpargs
|
2009-04-27 13:21:18 +05:30
|
|
|
ebegin "Loading module $x"
|
2008-08-19 20:55:06 +05:30
|
|
|
else
|
|
|
|
x=${x%%:*}
|
2009-04-27 13:21:18 +05:30
|
|
|
mpargs="-o $a"
|
|
|
|
ebegin "Loading module $x as $a"
|
2008-08-19 20:55:06 +05:30
|
|
|
fi
|
2009-04-27 13:21:18 +05:30
|
|
|
aa=$(shell_var "$a")
|
|
|
|
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_${aa}_args_$(shell_var "$y")
|
2008-08-19 20:55:06 +05:30
|
|
|
[ -n "${args}" ] && break
|
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_${aa}_args
|
|
|
|
[ -z "$args" ] && eval args=\$module_${xx}_args
|
|
|
|
eval modprobe -q "$mpargs" "$x" "$args"
|
2011-11-11 08:16:08 +05:30
|
|
|
eend $? "Failed to load $x" && : $(( cnt += 1 ))
|
2007-12-29 04:11:19 +05:30
|
|
|
done
|
2009-04-27 13:21:18 +05:30
|
|
|
einfo "Autoloaded $cnt module(s)"
|
2007-04-05 16:48:42 +05:30
|
|
|
}
|
2016-07-18 01:23:12 +05:30
|
|
|
|
|
|
|
start()
|
|
|
|
{
|
|
|
|
case "$RC_UNAME" in
|
|
|
|
FreeBSD|Linux) ${RC_UNAME}_modules ;;
|
|
|
|
*) ;;
|
|
|
|
esac
|
|
|
|
return 0
|
|
|
|
}
|