summaryrefslogtreecommitdiffstats
path: root/process_configs.sh
diff options
context:
space:
mode:
authorJustin M. Forbes <jforbes@fedoraproject.org>2022-03-11 09:55:39 -0600
committerJustin M. Forbes <jforbes@fedoraproject.org>2022-03-11 09:55:39 -0600
commit03f5c70c80c95d95131703e6e8537602d1fc5124 (patch)
treee95cb5745fbde1fa35f523e3922796539c621faa /process_configs.sh
parent24dda0d8fe0d8b3518959d738d151689b85fe436 (diff)
downloadkernel-03f5c70c80c95d95131703e6e8537602d1fc5124.tar.gz
kernel-03f5c70c80c95d95131703e6e8537602d1fc5124.tar.xz
kernel-03f5c70c80c95d95131703e6e8537602d1fc5124.zip
kernel-5.17-0.rc7.79b00034e9dc.120
* Fri Mar 11 2022 Fedora Kernel Team <kernel-team@fedoraproject.org> [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 <jforbes@fedoraproject.org>
Diffstat (limited to 'process_configs.sh')
-rwxr-xr-xprocess_configs.sh6
1 files changed, 3 insertions, 3 deletions
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