diff options
author | Felix Fietkau <nbd@openwrt.org> | 2011-11-05 17:16:01 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2011-11-05 17:16:01 +0000 |
commit | 248ab4ac2ff88da00903990a537927f7c85b5c33 (patch) | |
tree | fbe536d86ccb9ecde5bcdba530efcd093dfd25ae /package | |
parent | 05ce57c00544ae4ba9b990a58a3ecceeb16aa8a6 (diff) | |
download | mtk-20170518-248ab4ac2ff88da00903990a537927f7c85b5c33.zip mtk-20170518-248ab4ac2ff88da00903990a537927f7c85b5c33.tar.gz mtk-20170518-248ab4ac2ff88da00903990a537927f7c85b5c33.tar.bz2 |
base-files: process platform hotplug calls in the early launch of hotplug2 to avoid having crda calls get stuck at boot time (fixes #10350, #10354)
SVN-Revision: 28768
Diffstat (limited to 'package')
-rw-r--r-- | package/base-files/files/etc/hotplug2-common.rules | 4 | ||||
-rw-r--r-- | package/hotplug2/files/hotplug2.rules | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/package/base-files/files/etc/hotplug2-common.rules b/package/base-files/files/etc/hotplug2-common.rules index 101d451..a1d07d3 100644 --- a/package/base-files/files/etc/hotplug2-common.rules +++ b/package/base-files/files/etc/hotplug2-common.rules @@ -55,3 +55,7 @@ FIRMWARE is set, ACTION == add { load-firmware /lib/firmware next-event } + +SUBSYSTEM == platform { + exec /sbin/hotplug-call %SUBSYSTEM% +} diff --git a/package/hotplug2/files/hotplug2.rules b/package/hotplug2/files/hotplug2.rules index d72a1ef..246cc3a 100644 --- a/package/hotplug2/files/hotplug2.rules +++ b/package/hotplug2/files/hotplug2.rules @@ -1,6 +1,6 @@ $include /etc/hotplug2-common.rules -SUBSYSTEM ~~ (^net$|^input$|^button$|^usb$|^platform$|^ieee1394$|^block$|^atm$|^zaptel$|^tty$) { +SUBSYSTEM ~~ (^net$|^input$|^button$|^usb$|^ieee1394$|^block$|^atm$|^zaptel$|^tty$) { exec /sbin/hotplug-call %SUBSYSTEM% } |