Date: Thursday, January 14, 2010 @ 11:48:48
Author: thomas
Revision: 63099
Correct ${RESOLVEALIAS} usage in load-modules.sh which broke after the last
commit
Modified:
udev/trunk/load-modules.sh
-----------------+
load-modules.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Modified: load-modules.sh
===================================================================
--- load-modules.sh 2010-01-14 16:28:26 UTC (rev 63098)
+++ load-modules.sh 2010-01-14 16:48:48 UTC (rev 63099)
@@ -42,7 +42,7 @@
#sanitize the blacklist
BLACKLIST="$(echo "$BLACKLIST" | sed -e 's|-|_|g')"
# Try to find all modules for the alias
- mods=$($RESOLVEALIAS /lib/modules/$(uname -r)/modules.alias $1)
+ mods=$($RESOLVEALIAS $1)
# If no modules could be found, try if the alias name is a module name
# In that case, omit the --use-blacklist parameter to imitate normal
modprobe behaviour
[ -z "${mods}" ] && $MODPROBE -qni $1 && mods="$1" && USEBLACKLIST=""