From d7951e00f1959abd2a8cdd4c06cf3c44896c6b03 Mon Sep 17 00:00:00 2001 From: Dave Reisner Date: Sun, 29 Jul 2012 11:49:46 -0400 Subject: autodetect: fix wrong flag passed to modprobe Signed-off-by: Dave Reisner --- install/autodetect | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'install') diff --git a/install/autodetect b/install/autodetect index 20648e4..c0c7563 100644 --- a/install/autodetect +++ b/install/autodetect @@ -10,7 +10,7 @@ build() { # treat this as an alias, since ext3 might be aliased to ext4. IFS=$'\n' read -rd '' -a resolved < \ - <(modprobe -M "$MODULEROOT" -S "$KERNELVERSION" -R "$1" 2>/dev/null) + <(modprobe -d "$MODULEROOT" -S "$KERNELVERSION" -R "$1" 2>/dev/null) if (( ${#resolved[*]} )); then printf '%s\n' "${resolved[@]}" >>"$MODULE_FILE" -- cgit v1.2.3-24-g4f1b