diff options
author | John Crispin <john@openwrt.org> | 2015-04-10 20:39:44 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2015-04-10 20:39:44 +0000 |
commit | bbad3f360e955403a0a38fb0919e52e7874476b9 (patch) | |
tree | 99f843e8fdc17d037d134283df8e62a61cb092ae /package | |
parent | baef360adb72a1dcab8ec4b6312ac8f513202303 (diff) | |
download | upstream-bbad3f360e955403a0a38fb0919e52e7874476b9.tar.gz upstream-bbad3f360e955403a0a38fb0919e52e7874476b9.tar.bz2 upstream-bbad3f360e955403a0a38fb0919e52e7874476b9.zip |
modules: fix postinst generation for kernel modules
Fixes ticket #19352.
Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 45367
Diffstat (limited to 'package')
-rwxr-xr-x | package/base-files/files/lib/functions.sh | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/package/base-files/files/lib/functions.sh b/package/base-files/files/lib/functions.sh index dc3b80534b..72d954db3c 100755 --- a/package/base-files/files/lib/functions.sh +++ b/package/base-files/files/lib/functions.sh @@ -154,10 +154,13 @@ config_list_foreach() { } insert_modules() { - [ -d /etc/modules.d ] && { - cd /etc/modules.d - sed 's/^[^#]/insmod &/' $* | ash 2>&- || : - } + for m in $*; do + if [ -f /etc/modules.d/$m ]; then + sed 's/^[^#]/insmod &/' /etc/modules.d/$m | ash 2>&- || : + else + modprobe $m + fi + done } default_prerm() { |