aboutsummaryrefslogtreecommitdiffstats
path: root/package/busybox/patches/001-init_avoid_loop_opening_tty.patch
diff options
context:
space:
mode:
Diffstat (limited to 'package/busybox/patches/001-init_avoid_loop_opening_tty.patch')
-rw-r--r--package/busybox/patches/001-init_avoid_loop_opening_tty.patch15
1 files changed, 15 insertions, 0 deletions
diff --git a/package/busybox/patches/001-init_avoid_loop_opening_tty.patch b/package/busybox/patches/001-init_avoid_loop_opening_tty.patch
new file mode 100644
index 000000000..4db64c34b
--- /dev/null
+++ b/package/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);
++ }
+ }
+ }
+ }