summaryrefslogtreecommitdiffstats
path: root/process_configs.sh
diff options
context:
space:
mode:
authorThorsten Leemhuis <fedora@leemhuis.info>2022-03-11 18:30:16 +0100
committerThorsten Leemhuis <fedora@leemhuis.info>2022-03-11 18:30:16 +0100
commitfd5aec35f72be355ce9443804e6f4f5e3f25ab7a (patch)
tree1832952ee6ebd660636e40ab430afa81792443f4 /process_configs.sh
parent4c345964431b56880a9caf3b7cb009a13c6a2668 (diff)
parent03f5c70c80c95d95131703e6e8537602d1fc5124 (diff)
downloadkernel-fd5aec35f72be355ce9443804e6f4f5e3f25ab7a.tar.gz
kernel-fd5aec35f72be355ce9443804e6f4f5e3f25ab7a.tar.xz
kernel-fd5aec35f72be355ce9443804e6f4f5e3f25ab7a.zip
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