mirror of https://github.com/hak5/openwrt.git
base-files: module loading is now handled by ubox/kmodloader
Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 37003lede-17.01
parent
d0db343fc4
commit
4c43cacce0
|
@ -48,11 +48,7 @@ start() {
|
|||
grep -q debugfs /proc/filesystems && mount -o noatime -t debugfs debugfs /sys/kernel/debug
|
||||
[ "$FAILSAFE" = "true" ] && touch /tmp/.failsafe
|
||||
|
||||
if [ -f /sbin/kmodloader ]; then
|
||||
/sbin/kmodloader
|
||||
else
|
||||
load_modules /etc/modules.d/*
|
||||
fi
|
||||
/sbin/kmodloader
|
||||
|
||||
# allow wifi modules time to settle
|
||||
sleep 1
|
||||
|
|
|
@ -203,13 +203,6 @@ config_list_foreach() {
|
|||
done
|
||||
}
|
||||
|
||||
load_modules() {
|
||||
[ -d /etc/modules.d ] && {
|
||||
cd /etc/modules.d
|
||||
sed 's/^[^#]/insmod &/' $* | ash 2>&- || :
|
||||
}
|
||||
}
|
||||
|
||||
include() {
|
||||
local file
|
||||
|
||||
|
|
Loading…
Reference in New Issue