diff options
author | Dave Reisner <dreisner@archlinux.org> | 2011-09-04 10:12:18 -0400 |
---|---|---|
committer | Tom Gundersen <teg@jklm.no> | 2011-09-25 00:55:35 +0200 |
commit | 872444291d3ab4cbeecd4a24216531564986a01c (patch) | |
tree | 9466fb291eb5c76a4423758a181a0c24afa889d4 /functions | |
parent | 5948612fe7191734ccc89570e808659ee2e6b3e3 (diff) |
functions: clarify source of module loading
This isn't _all_ your modules. Just the extras specified from rc.conf.
Signed-off-by: Dave Reisner <dreisner@archlinux.org>
Diffstat (limited to 'functions')
-rw-r--r-- | functions | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -323,7 +323,7 @@ udevd_modprobe() { # Load modules from the MODULES array defined in rc.conf [[ -f /proc/modules ]] && (( ${#MODULES[*]} )) && - status "Loading Modules" modprobe -ab "${MODULES[@]}" + status "Loading User-specified Modules" modprobe -ab "${MODULES[@]}" status "Waiting for UDev uevents to be processed" \ udevadm settle --timeout=${UDEV_TIMEOUT:-30} |