summaryrefslogtreecommitdiffstats
path: root/patches/busybox-1.15.3/0002-reactivate-check-for-tty.patch
blob: a31b0aed2433fd012e6e05dc2e6c194368e533c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
From a884ec095ec9dcc4e25abb68838fb6bd120639b4 Mon Sep 17 00:00:00 2001
From: Marc Kleine-Budde <mkl@pengutronix.de>
Date: Fri, 6 Nov 2009 09:19:58 +0100
Subject: [PATCH 2/5] reactivate check for tty

The busybox crew switched of the test for a tty in silentoldconfig,
we use this feature to break when oldconfig needs interaction
in automated build.

This patch reactivates this feature.

Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
---
 scripts/kconfig/conf.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/scripts/kconfig/conf.c b/scripts/kconfig/conf.c
index 9befa2b..e65e25c 100644
--- a/scripts/kconfig/conf.c
+++ b/scripts/kconfig/conf.c
@@ -503,7 +503,7 @@ int main(int ac, char **av)
 			break;
 		case 's':
 			input_mode = ask_silent;
-			valid_stdin = isatty(0); //bbox: && isatty(1) && isatty(2);
+			valid_stdin = isatty(0) && isatty(1) && isatty(2);
 			break;
 		case 'd':
 			input_mode = set_default;
-- 
1.6.5.2