mirror of https://github.com/hak5/openwrt-owl.git
base-files: retrigger usb coldplug after module loading, solves usb_modeswitch on boot and possibly others (#9352)
SVN-Revision: 26848owl
parent
732abc44cc
commit
ba1c1e9016
|
@ -10,7 +10,7 @@ include $(TOPDIR)/rules.mk
|
||||||
include $(INCLUDE_DIR)/kernel.mk
|
include $(INCLUDE_DIR)/kernel.mk
|
||||||
|
|
||||||
PKG_NAME:=base-files
|
PKG_NAME:=base-files
|
||||||
PKG_RELEASE:=68
|
PKG_RELEASE:=69
|
||||||
|
|
||||||
PKG_FILE_DEPENDS:=$(PLATFORM_DIR)/ $(GENERIC_PLATFORM_DIR)/base-files/
|
PKG_FILE_DEPENDS:=$(PLATFORM_DIR)/ $(GENERIC_PLATFORM_DIR)/base-files/
|
||||||
PKG_BUILD_DEPENDS:=opkg/host
|
PKG_BUILD_DEPENDS:=opkg/host
|
||||||
|
|
|
@ -80,6 +80,11 @@ start() {
|
||||||
}
|
}
|
||||||
|
|
||||||
load_modules /etc/modules.d/*
|
load_modules /etc/modules.d/*
|
||||||
|
|
||||||
|
# another round of USB coldplugging to kick devices into operation which lacked drivers before
|
||||||
|
for dev in /sys/bus/usb/devices/*/uevent; do
|
||||||
|
[ -e "$dev" ] && echo -n add > "$dev"
|
||||||
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
stop() {
|
stop() {
|
||||||
|
|
Loading…
Reference in New Issue