From b4dceaa88c86659cfe26c314625488cfbb166f01 Mon Sep 17 00:00:00 2001 From: Xiang Xiao Date: Mon, 11 May 2020 11:50:25 +0800 Subject: [PATCH] tools/refresh.sh: shouldn't redirect "make oldconfig" to /dev/null since kconfig need interact with user to make the selection Signed-off-by: Xiang Xiao --- tools/refresh.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/refresh.sh b/tools/refresh.sh index e55959f4cd6..03192361aef 100755 --- a/tools/refresh.sh +++ b/tools/refresh.sh @@ -244,7 +244,7 @@ for CONFIG in ${CONFIGS}; do if [ "X${debug}" == "Xy" ]; then make oldconfig V=1 else - make oldconfig 1>/dev/null + make oldconfig fi fi fi