From 4ebf19b48fafc8d94e14e4ba779969613b241a6a Mon Sep 17 00:00:00 2001 From: John Crispin Date: Fri, 21 Jun 2013 16:54:37 +0000 Subject: packages: clean up the package folder Signed-off-by: John Crispin SVN-Revision: 37007 --- .../busybox/patches/001-init_avoid_loop_opening_tty.patch | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 package/utils/busybox/patches/001-init_avoid_loop_opening_tty.patch (limited to 'package/utils/busybox/patches/001-init_avoid_loop_opening_tty.patch') diff --git a/package/utils/busybox/patches/001-init_avoid_loop_opening_tty.patch b/package/utils/busybox/patches/001-init_avoid_loop_opening_tty.patch new file mode 100644 index 0000000..4db64c3 --- /dev/null +++ b/package/utils/busybox/patches/001-init_avoid_loop_opening_tty.patch @@ -0,0 +1,15 @@ +--- 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); ++ } + } + } + } -- cgit v1.1