summaryrefslogtreecommitdiffstats
path: root/process_configs.sh
diff options
context:
space:
mode:
authorJustin M. Forbes <jforbes@fedoraproject.org>2022-03-24 09:44:17 -0500
committerJustin M. Forbes <jforbes@fedoraproject.org>2022-03-24 09:44:17 -0500
commit55017c651490388db35458885b29e69739eb6b32 (patch)
treeddcca678d10dc37a1f61d821ee15171fa3843e83 /process_configs.sh
parent987d115a948cf7fda35db6f75178f0a0fca62132 (diff)
downloadkernel-55017c651490388db35458885b29e69739eb6b32.tar.gz
kernel-55017c651490388db35458885b29e69739eb6b32.tar.xz
kernel-55017c651490388db35458885b29e69739eb6b32.zip
kernel-5.18-0.rc0.20220324gited4643521e6a.6
* Thu Mar 24 2022 Justin M. Forbes <jforbes@fedoraproject.org> [5.18-0.rc0.20220324gited4643521e6a.6] - Fix up CONFIG_SND_AMD_ACP_CONFIG files (Patrick Talbert) - Remove CONFIG_SND_SOC_SOF_DEBUG_PROBES files (Patrick Talbert) Resolves: rhbz# Signed-off-by: Justin M. Forbes <jforbes@fedoraproject.org>
Diffstat (limited to 'process_configs.sh')
-rwxr-xr-xprocess_configs.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/process_configs.sh b/process_configs.sh
index 2ee4037ad..27372afc2 100755
--- a/process_configs.sh
+++ b/process_configs.sh
@@ -304,6 +304,10 @@ function process_configs()
count=0
for cfg in "$SCRIPT_DIR/${PACKAGE_NAME}${KVERREL}${SUBARCH}"*.config
do
+ if [ "$count" -eq 0 ]; then
+ # do the first one by itself so that tools are built
+ process_config "$cfg" "$count"
+ fi
process_config "$cfg" "$count" &
waitpids[${count}]=$!
((count++))