fix GPIO pin for G3GV2-VF
[oweals/openwrt.git] / package / busybox / patches / 001-init_avoid_loop_opening_tty.patch
index 8cc9ca2c89b16e87333421858b852f34e6907c78..6cf410df0826fa584c0b93767efb56fe98e9f332 100644 (file)
@@ -1,12 +1,12 @@
 --- a/init/init.c
 +++ b/init/init.c
-@@ -451,8 +451,11 @@ static void run_actions(int action_type)
+@@ -456,8 +456,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 && access(a->terminal, R_OK | W_OK))
++                              if (a->terminal[0] && access(a->terminal, R_OK | W_OK))
 +                                      continue;
                                a->pid = run(a);
 +                      }