kernel/generate_all_configs.sh

41 lines
743 B
Bash
Raw Normal View History

#!/bin/sh
2019-11-05 22:10:53 +00:00
# Adjusts the configuration options to build the variants correctly
#
# arg1: configuration to go in the primary variant
# arg2: are we only generating debug configs
PRIMARY=$1
DEBUGBUILDSENABLED=$2
if [ -z "$2" ]; then
2019-11-05 22:10:53 +00:00
exit 1
fi
if [ -z "$PRIMARY" ]; then
PRIMARY=rhel
fi
if [ "$PRIMARY" = "fedora" ]; then
2019-11-05 22:10:53 +00:00
SECONDARY=rhel
else
SECONDARY=fedora
fi
for i in kernel-*-"$PRIMARY".config; do
NEW=kernel-"$VERSION"-$(echo "$i" | cut -d - -f2- | sed s/-"$PRIMARY"//)
2019-11-05 22:10:53 +00:00
#echo $NEW
mv "$i" "$NEW"
done
2019-11-05 22:10:53 +00:00
rm -f kernel-*-"$SECONDARY".config
2019-11-05 22:10:53 +00:00
if [ "$DEBUGBUILDSENABLED" -eq 0 ]; then
2019-11-05 22:10:53 +00:00
for i in kernel-*debug*.config; do
base=$(echo "$i" | sed -r s/-?debug//g)
NEW=kernel-$(echo "$base" | cut -d - -f2-)
mv "$i" "$NEW"
2019-11-05 22:10:53 +00:00
done
fi