Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 15870 Details for
Bug 26288
module init.d script output looks weird if no modules are loaded
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
/etc/init.d/modules
modules (text/plain), 2.84 KB, created by
Martin Schlemmer (RETIRED)
on 2003-08-10 16:29:01 UTC
(
hide
)
Description:
/etc/init.d/modules
Filename:
MIME Type:
Creator:
Martin Schlemmer (RETIRED)
Created:
2003-08-10 16:29:01 UTC
Size:
2.84 KB
patch
obsolete
>#!/sbin/runscript ># Copyright 1999-2003 Gentoo Technologies, Inc. ># Distributed under the terms of the GNU General Public License v2 ># $Header: /home/cvsroot/gentoo-src/rc-scripts/init.d/modules,v 1.26 2003/08/04 19:08:25 azarah Exp $ > > >depend() { > need checkroot hostname > use isapnp >} > >load_modules() { > local x= > local i=1 > local retval=0 > local modules= > local modargs= > local modcount=0 > local config="$1" > > [ -z "${config}" ] && return 0 > [ ! -r "${config}" ] && return 0 > > # Loop over every line in $config > eval $(awk ' > BEGIN { > COUNT = 0 # Make sure COUNT is set > } > > $0 !~ /(^[[:space:]]*(#|$))/ { > if (MODULES == "") > MODULES = $1 > else > MODULES = MODULES " " $1 > > # Not the greatest method to remove $1 from $0, but it works > sub(/^[[:space:]]*[^[:space:]]*[[:space:]]*/, "") > ARGS[COUNT] = $0 > COUNT++ > } > > END { > # 'eval' will make sure these are set to proper bash variables > print "modcount=" COUNT > print "modules=\"" MODULES "\"" > for (x = 0;x < COUNT;x++) > print "modargs[" x "]=\"" ARGS[x] "\"" > } > ' "${config}") > > if [ "${modcount}" -gt 0 ] > then > einfo "Using ${config} as config:" > > for x in ${modules} > do > ebegin " Loading module ${x}" > modprobe -q ${x} ${modargs[${i}]} &>/dev/null > retval=$? > eend ${retval} " Failed to load ${x}" > > i=$((i+1)) > [ "${retval}" -eq 0 ] || modcount=$((modcount-1)) > done > > einfo "Autoloaded ${modcount} module(s)" > fi > > return 0 >} > >start() { > # Should not fail if kernel do not have module > # support compiled in ... > [ -f /proc/modules ] || return 0 > > # Here we should fail, as a modular kernel do need > # depmod command ... > if [ ! -x /sbin/depmod ] > then > eerror "ERROR: system is missing /sbin/depmod !" > return 1 > fi > > ebegin "Calculating module dependencies" > /sbin/modules-update &>/dev/null > eend $? "Failed to calculate dependencies" > > if [ -f /etc/modules.autoload -a ! -L /etc/modules.autoload ] > then > # Loop over every line in /etc/modules.autoload. > load_modules /etc/modules.autoload > else > local KV="$(uname -r)" > local KV_MAJOR="`KV_major "${KV}"`" > local KV_MINOR="`KV_minor "${KV}"`" > > # New support for /etc/modules.autoload/kernel-$KV > if [ "$(get_KV)" -ge "$(KV_to_int '2.5.48')" ] && \ > [ -f /etc/modules.autoload.d/kernel-"${KV_MAJOR}.${KV_MINOR}" ] > then > load_modules /etc/modules.autoload.d/kernel-"${KV_MAJOR}.${KV_MINOR}" > > elif [ ! -f /etc/modules.autoload.d/kernel-"${KV_MAJOR}.${KV_MINOR}" ] > then > ewarn "Missing /etc/modules.autoload.d/kernel-${KV_MAJOR}.${KV_MINOR}" > load_modules /etc/modules.autoload.d/kernel-2.4 > else > load_modules /etc/modules.autoload.d/kernel-2.4 > fi > fi > > # > # Just in case a sysadmin prefers generic symbolic links in > # /lib/modules/boot for boot time modules we will load these modules > # > if [ -n "$(modprobe -l -t boot)" ] > then > modprobe -a -t boot \* &>/dev/null > fi >} > > ># vim:ts=4
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 26288
: 15870