From: nbd Date: Sun, 25 May 2014 17:41:52 +0000 (+0000) Subject: busybox: remove obsolete init patch X-Git-Url: http://207.154.207.93/?a=commitdiff_plain;h=ec25f868c51ae93a24a92f652769a4aceccc95aa;p=openwrt.git busybox: remove obsolete init patch Signed-off-by: Felix Fietkau git-svn-id: svn://svn.openwrt.org/openwrt/trunk@40848 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- 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 deleted file mode 100644 index 4db64c34be..0000000000 --- a/package/utils/busybox/patches/001-init_avoid_loop_opening_tty.patch +++ /dev/null @@ -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); -+ } - } - } - }