From 1681e0ab170d9dfd9799e0ef3737d2628e69fa65 Mon Sep 17 00:00:00 2001 From: Clemens Gruber Date: Thu, 19 May 2016 18:40:44 +0200 Subject: busybox: version bump to 1.24.2 Signed-off-by: Clemens Gruber Signed-off-by: Michael Olbrich --- .../0200-reactivate-check-for-tty.patch | 28 ++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 patches/busybox-1.24.2/0200-reactivate-check-for-tty.patch (limited to 'patches/busybox-1.24.2/0200-reactivate-check-for-tty.patch') diff --git a/patches/busybox-1.24.2/0200-reactivate-check-for-tty.patch b/patches/busybox-1.24.2/0200-reactivate-check-for-tty.patch new file mode 100644 index 000000000..55869e9fe --- /dev/null +++ b/patches/busybox-1.24.2/0200-reactivate-check-for-tty.patch @@ -0,0 +1,28 @@ +From: Marc Kleine-Budde +Date: Fri, 6 Nov 2009 09:19:58 +0100 +Subject: [PATCH] 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 +--- + scripts/kconfig/conf.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/scripts/kconfig/conf.c b/scripts/kconfig/conf.c +index ea2446a89814..8b70f99e7633 100644 +--- a/scripts/kconfig/conf.c ++++ b/scripts/kconfig/conf.c +@@ -498,7 +498,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; -- cgit v1.2.3