From b93965eca7a4b9da93a1abd4a1ae97fb89b93138 Mon Sep 17 00:00:00 2001 From: Ricardo Pardini Date: Thu, 23 Jun 2022 03:08:08 +0200 Subject: [PATCH] armbian-next: kernel: config: `make olddefconfig` (not `oldconfig`, which is interactive) when `KERNEL_CONFIGURE=yes` --- lib/functions/compilation/kernel.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/functions/compilation/kernel.sh b/lib/functions/compilation/kernel.sh index c886ce3c84..309c0a70b8 100644 --- a/lib/functions/compilation/kernel.sh +++ b/lib/functions/compilation/kernel.sh @@ -248,9 +248,9 @@ function kernel_config() { if [[ $KERNEL_CONFIGURE != yes ]]; then run_kernel_make olddefconfig # @TODO: what is this? does it fuck up dates? else - display_alert "Starting (interactive) kernel oldconfig" "${LINUXCONFIG}" "debug" + display_alert "Starting (non-interactive) kernel olddefconfig" "${LINUXCONFIG}" "debug" - run_kernel_make_dialog oldconfig + run_kernel_make olddefconfig # No logging for this. this is UI piece display_alert "Starting (interactive) kernel ${KERNEL_MENUCONFIG:-menuconfig}" "${LINUXCONFIG}" "debug"