From f1b4824c865b228039d84b2605b2e7e4f34cddeb 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 git-svn-id: svn://svn.openwrt.org/openwrt/trunk@37007 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- .../busybox/patches/001-init_avoid_loop_opening_tty.patch | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 package/busybox/patches/001-init_avoid_loop_opening_tty.patch (limited to 'package/busybox/patches/001-init_avoid_loop_opening_tty.patch') diff --git a/package/busybox/patches/001-init_avoid_loop_opening_tty.patch b/package/busybox/patches/001-init_avoid_loop_opening_tty.patch deleted file mode 100644 index 4db64c34be..0000000000 --- a/package/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); -+ } - } - } - } -- cgit v1.2.3