diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-06-25 07:08:35 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-06-25 07:08:35 +0000 |
commit | a99b79e9ad865990e0a6c438cfbb8adc88ccf6a0 (patch) | |
tree | ac873e80072d7dc79c5de57f036bdd55b574b900 /package/hotplug2/patches | |
parent | d309c4fa3030ae3a3df5beb28f02ce81a47dd4d0 (diff) | |
download | upstream-a99b79e9ad865990e0a6c438cfbb8adc88ccf6a0.tar.gz upstream-a99b79e9ad865990e0a6c438cfbb8adc88ccf6a0.tar.bz2 upstream-a99b79e9ad865990e0a6c438cfbb8adc88ccf6a0.zip |
hotplug2: add a missing cflag, allow hotplug events that are not 'add'
SVN-Revision: 7721
Diffstat (limited to 'package/hotplug2/patches')
-rw-r--r-- | package/hotplug2/patches/120-action_types.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/package/hotplug2/patches/120-action_types.patch b/package/hotplug2/patches/120-action_types.patch new file mode 100644 index 0000000000..c81b241b7a --- /dev/null +++ b/package/hotplug2/patches/120-action_types.patch @@ -0,0 +1,13 @@ +Index: hotplug2-0.9/hotplug2.c +=================================================================== +--- hotplug2-0.9.orig/hotplug2.c 2007-06-25 09:07:07.038012616 +0200 ++++ hotplug2-0.9/hotplug2.c 2007-06-25 09:07:19.420130248 +0200 +@@ -555,7 +555,7 @@ + if (cur_seqnum > highest_seqnum) + highest_seqnum = cur_seqnum; + +- if (tmpevent->action == ACTION_ADD && (!dumb || modalias != NULL)) { ++ if (!dumb || modalias != NULL) { + /* + * We have more children than we want. Wait until SIGCHLD handler reduces + * their numbers. |