diff options
author | blogic <blogic@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2013-06-21 16:53:19 +0000 |
---|---|---|
committer | blogic <blogic@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2013-06-21 16:53:19 +0000 |
commit | ab16740202979de5b4fdac63e0f7209e10641b44 (patch) | |
tree | 6c2644f4025b0cc2ac4063d2672a3e3a76ff0bb0 /package/procd | |
parent | d4546854c77f3f2f14ec6610c79e95b9b6a6bfd8 (diff) |
procd: fix hotplug rule to not return on default makedev trigger
this allows the subsystem trigger to also be called
Signed-off-by: John Crispin <blogic@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36994 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/procd')
-rw-r--r-- | package/procd/files/hotplug.json | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/package/procd/files/hotplug.json b/package/procd/files/hotplug.json index 43fec0c0d3..c1b45c6e86 100644 --- a/package/procd/files/hotplug.json +++ b/package/procd/files/hotplug.json @@ -33,10 +33,7 @@ ], [ "if", [ "has", "DEVNAME" ], - [ - [ "makedev", "/dev/%DEVNAME%", "0644" ], - [ "return" ], - ], + [ "makedev", "/dev/%DEVNAME%", "0644" ], ], ], ], |