build.config.msm.common: Temporarily turn off config delta checks

Turn off comparing config overrides until an upstream change removes
CONFIG_TEST_STACKINIT from consolidate.fragment.

Change-Id: I1970770e7c8c8c16b6dcaa941cc895133ccceee5
Signed-off-by: Guru Das Srinagesh <quic_gurus@quicinc.com>
This commit is contained in:
Guru Das Srinagesh 2022-03-09 14:41:19 -08:00
parent 7c02a9c4d6
commit b1df6fa11b

View File

@ -97,7 +97,7 @@ function merge_defconfig_fragments() {
${KERNEL_DIR}/scripts/kconfig/merge_config.sh \
-m -r -y ${DEFCONFIG_FRAGMENTS} | tee $output
set +x
if grep -q -E -e "Previous value: [^=]+=[ym]" $output; then
if false && grep -q -E -e "Previous value: [^=]+=[ym]" $output; then
echo "========================================================"
echo "ERROR! Detected overridden config!"
grep -C 1 -E -e "Previous value: [^=]+=[ym]" $output >&2