From c939bf8bacb59784430c4d99f9d41ce0f7a5588a Mon Sep 17 00:00:00 2001 From: "Justin M. Forbes" Date: Thu, 24 Feb 2022 14:23:37 -0600 Subject: kernel-5.17-0.rc5.23d04328444a.105 * Thu Feb 24 2022 Fedora Kernel Team [5.17-0.rc5.23d04328444a.105] - mm/sparsemem: Fix 'mem_section' will never be NULL gcc 12 warning (Waiman Long) Resolves: rhbz# Signed-off-by: Justin M. Forbes --- process_configs.sh | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'process_configs.sh') diff --git a/process_configs.sh b/process_configs.sh index 8c997a5fa..312449fe1 100755 --- a/process_configs.sh +++ b/process_configs.sh @@ -226,15 +226,17 @@ function process_configs() for cfg in "$SCRIPT_DIR/${PACKAGE_NAME}${KVERREL}${SUBARCH}"*.config do arch=$(head -1 "$cfg" | cut -b 3-) - cfgtmp="${cfg}.tmp" - cfgorig="${cfg}.orig" - cat "$cfg" > "$cfgorig" if [ "$arch" = "EMPTY" ] then # This arch is intentionally left blank continue fi + + cfgtmp="${cfg}.tmp" + cfgorig="${cfg}.orig" + cat "$cfg" > "$cfgorig" + echo -n "Processing $cfg ... " make ${MAKEOPTS} ARCH="$arch" CROSS_COMPILE=$(get_cross_compile $arch) KCONFIG_CONFIG="$cfgorig" listnewconfig >& .listnewconfig -- cgit