busybox: remove obsolete init patch

Signed-off-by: Felix Fietkau <nbd@openwrt.org>

SVN-Revision: 40848
This commit is contained in:
Felix Fietkau 2014-05-25 17:41:52 +00:00
parent 5e341d0d0d
commit c1187357dc

View File

@ -1,15 +0,0 @@
--- a/init/init.c
+++ b/init/init.c
@@ -573,8 +573,11 @@ static void run_actions(int action_type)
/* Only run stuff with pid == 0. If pid != 0,
* it is already running
*/
- if (a->pid == 0)
+ if (a->pid == 0) {
+ if (a->terminal[0] && access(a->terminal, R_OK | W_OK))
+ continue;
a->pid = run(a);
+ }
}
}
}