Merge pull request #7880 from heitbaum/maint

linux: allow manual answers for oldconfig handling
This commit is contained in:
Matthias Reichl 2023-05-29 18:03:31 +02:00 committed by GitHub
commit 6a0ba9af76
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -172,7 +172,13 @@ pre_make_target() {
fi
kernel_make listnewconfig
if [ "${INTERACTIVE_CONFIG}" = "yes" ]; then
# manually answer .config changes
kernel_make oldconfig
else
# accept default answers for .config changes
yes "" | kernel_make oldconfig > /dev/null
fi
if [ -f "${DISTRO_DIR}/${DISTRO}/kernel_options" ]; then
while read OPTION; do