dc90062fcc
* Tue Jun 14 2022 Justin M. Forbes <jforbes@fedoraproject.org> [5.18.4-0] - Linux v5.18.4 rebase - Enable CKI on os-build MRs only (Don Zickus) - drm/amd/display: Cap OLED brightness per max frame-average luminance (Roman Li) [2095858] - redhat/configs/fedora: Enable a set of modules used on some x86 tablets (Hans de Goede) - redhat/configs/fedora: enable missing modules modules for Intel IPU3 camera support (Hans de Goede) - redhat/configs: Make INTEL_SOC_PMIC_CHTDC_TI builtin (Hans de Goede) - redhat/configs: restore/fix core INTEL_LPSS configs to be builtin again (Hans de Goede) Resolves: rhbz#2095858 Signed-off-by: Justin M. Forbes <jforbes@fedoraproject.org>
37 lines
677 B
Bash
Executable File
37 lines
677 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Adjusts the configuration options to build the variants correctly
|
|
|
|
test -n "$RHTEST" && exit 0
|
|
|
|
DEBUGBUILDSENABLED=$1
|
|
if [ -z "$DEBUGBUILDSENABLED" ]; then
|
|
exit 1
|
|
fi
|
|
|
|
if [ -z "$FLAVOR" ]; then
|
|
FLAVOR=rhel
|
|
fi
|
|
|
|
if [ "$FLAVOR" = "fedora" ]; then
|
|
SECONDARY=rhel
|
|
else
|
|
SECONDARY=fedora
|
|
fi
|
|
|
|
for i in kernel-*-"$FLAVOR".config; do
|
|
NEW=kernel-"$SPECVERSION"-$(echo "$i" | cut -d - -f2- | sed s/-"$FLAVOR"//)
|
|
#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
|