From 03f5c70c80c95d95131703e6e8537602d1fc5124 Mon Sep 17 00:00:00 2001 From: "Justin M. Forbes" Date: Fri, 11 Mar 2022 09:55:39 -0600 Subject: kernel-5.17-0.rc7.79b00034e9dc.120 * Fri Mar 11 2022 Fedora Kernel Team [5.17-0.rc7.79b00034e9dc.120] - 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 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'process_configs.sh') diff --git a/process_configs.sh b/process_configs.sh index a946ce4c8..376f79584 100755 --- a/process_configs.sh +++ b/process_configs.sh @@ -104,7 +104,7 @@ checkoptions() ! $checkoptions_error && return - sed -i "1s/^/Error: Mismatches found in configuration files for ${variant}\n/" .mismatches${count} + sed -i "1s/^/Error: Mismatches found in configuration files for ${arch} ${variant}\n/" .mismatches${count} [ "$CONTINUEONERROR" ] || exit 1 else rm -f .mismatches${count} @@ -253,7 +253,7 @@ function process_config() grep -E 'CONFIG_' .listnewconfig${count} > .newoptions${count} if test -n "$NEWOPTIONS" && test -s .newoptions${count} then - echo "Found unset config items in ${variant}, please set them to an appropriate value" >> .errors${count} + echo "Found unset config items in ${arch} ${variant}, please set them to an appropriate value" >> .errors${count} cat .newoptions${count} >> .errors${count} rm .newoptions${count} RETURNCODE=1 @@ -264,7 +264,7 @@ function process_config() grep -E 'config.*warning' .listnewconfig${count} > .warnings${count} if test -n "$CHECKWARNINGS" && test -s .warnings${count} then - echo "Found misconfigured config items in ${variant}, please set them to an appropriate value" >> .errors${count} + echo "Found misconfigured config items in ${arch} ${variant}, please set them to an appropriate value" >> .errors${count} cat .warnings${count} >> .errors${count} rm .warnings${count} [ "$CONTINUEONERROR" ] || exit 1 -- cgit