1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-02 22:12:01 +03:00
openwrt-xburst/package/busybox/patches/001-init_avoid_loop_opening_tty.patch
nico b90f9dbb18 [package] busybox: update to 1.19.2 (thanks to Peter Wagner)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@28513 3c298f89-4303-0410-b956-a3cf2f4a3e73
2011-10-21 23:08:45 +00:00

16 lines
346 B
Diff

--- 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);
+ }
}
}
}