* Fri Mar 05 2021 Justin M. Forbes <jforbes@fedoraproject.org> [5.11.3-50] - PCI: Add MCFG quirks for Tegra194 host controllers (Vidya Sagar) - Revert "PCI: Add MCFG quirks for Tegra194 host controllers" (Peter Robinson) - forgot to push this one earlier (Justin M. Forbes) - Reference the patch as version.patchlevel to more easily see diffs between stable releases (Justin M. Forbes) Resolves: rhbz# Signed-off-by: Justin M. Forbes <jforbes@fedoraproject.org>
40 lines
743 B
Bash
Executable file
40 lines
743 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# 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
|
|
exit 1
|
|
fi
|
|
|
|
if [ -z "$PRIMARY" ]; then
|
|
PRIMARY=rhel
|
|
fi
|
|
|
|
if [ "$PRIMARY" = "fedora" ]; then
|
|
SECONDARY=rhel
|
|
else
|
|
SECONDARY=fedora
|
|
fi
|
|
|
|
for i in kernel-*-"$PRIMARY".config; do
|
|
NEW=kernel-"$VERSION"-$(echo "$i" | cut -d - -f2- | sed s/-"$PRIMARY"//)
|
|
#echo $NEW
|
|
mv "$i" "$NEW"
|
|
done
|
|
|
|
rm -f kernel-*-"$SECONDARY".config
|
|
|
|
if [ "$DEBUGBUILDSENABLED" -eq 0 ]; then
|
|
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"
|
|
done
|
|
fi
|