diff options
author | Felix Fietkau <nbd@openwrt.org> | 2014-05-25 17:41:52 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2014-05-25 17:41:52 +0000 |
commit | c1187357dcd862b624e67b1019b52839579193d2 (patch) | |
tree | d78d0d33fdc08482833150906608f9839f5d47bd /package | |
parent | 5e341d0d0d9235a1c5d9065d7e6f12fde2378b10 (diff) | |
download | upstream-c1187357dcd862b624e67b1019b52839579193d2.tar.gz upstream-c1187357dcd862b624e67b1019b52839579193d2.tar.bz2 upstream-c1187357dcd862b624e67b1019b52839579193d2.zip |
busybox: remove obsolete init patch
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 40848
Diffstat (limited to 'package')
-rw-r--r-- | package/utils/busybox/patches/001-init_avoid_loop_opening_tty.patch | 15 |
1 files changed, 0 insertions, 15 deletions
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); -+ } - } - } - } |