diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rwxr-xr-x | init.d.Linux/modules | 4 | ||||
-rw-r--r-- | man.Linux/modules.autoload.5 | 4 |
3 files changed, 8 insertions, 4 deletions
@@ -1,6 +1,10 @@ # ChangeLog for Gentoo System Intialization ("rc") scripts # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPLv2 + 07 Apr 2007; Mike Frysinger <vapier@gentoo.org>: + + "modules-update" -> "update-modules". + 05 Apr 2007; Roy Marples <uberlord@gentoo.org>: Rewrite the core parts in C. We now provide librc so other programs can diff --git a/init.d.Linux/modules b/init.d.Linux/modules index ff6faf6a..feda2c24 100755 --- a/init.d.Linux/modules +++ b/init.d.Linux/modules @@ -55,7 +55,7 @@ start() { if [ -z "${CDBOOT}" -a ! -e /etc/modules.conf ] && \ [ $(KV_to_int "${KV}") -lt $(KV_to_int '2.5.48') -o -x /sbin/modprobe.old ] then - echo '### This file is automatically generated by modules-update' \ + echo '### This file is automatically generated by update-modules' \ > /etc/modules.conf 2>/dev/null [ ! -f /etc/modules.conf ] && \ ewarn "Cannot update /etc/modules.conf!" @@ -65,7 +65,7 @@ start() { if [ -z "${CDBOOT}" ] && \ [ -f /etc/modules.conf -o $(KV_to_int "${KV}") -ge $(KV_to_int '2.5.48') ] then - /sbin/modules-update + /sbin/update-modules fi local auto="" diff --git a/man.Linux/modules.autoload.5 b/man.Linux/modules.autoload.5 index 1a0c3e35..a727afc8 100644 --- a/man.Linux/modules.autoload.5 +++ b/man.Linux/modules.autoload.5 @@ -10,10 +10,10 @@ name. Comments begin with a `#', and everything on the line after it is ignored. This file is read by the \fI/etc/init.d/modules\fR initscript, which is usually linked in the \fI/etc/runlevels/boot\fR directory. .SH "SEE ALSO" -.BR modules-update (8), +.BR update-modules (8), .BR modprobe (8), .BR modules.conf (5) .TP -The \fI/sbin/modules-update\fR script. +The \fI/sbin/update-modules\fR script. .TP The files in \fI/etc/modules.d\fR. |