armbian-next: kernel: config: make olddefconfig (not oldconfig, which is interactive) when KERNEL_CONFIGURE=yes

This commit is contained in:
Ricardo Pardini 2022-06-23 03:08:08 +02:00
parent a0ba3d4f37
commit b93965eca7
No known key found for this signature in database
GPG Key ID: 3D38CA12A66C5D02

View File

@ -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"