From 0f3115b2ca9fbdcf7a4e02aba45104f2d423fdb8 Mon Sep 17 00:00:00 2001 From: Fabrice Fontaine Date: Mon, 8 Aug 2022 13:04:14 +0200 Subject: [PATCH] utils/genrandconfig: add refpolicy custom git handling Add a custom case to make sure that a random configuration with an empty git location for refpolicy doesn't fail. It reverts to BR2_PACKAGE_REFPOLICY_UPSTREAM_VERSION in that case. Fixes: - http://autobuild.buildroot.org/results/98da07a1f9b88e2e8a028a55c8cf76c6ebc28304 Signed-off-by: Fabrice Fontaine Signed-off-by: Thomas Petazzoni --- utils/genrandconfig | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/utils/genrandconfig b/utils/genrandconfig index 75757917c2..a56f03681a 100755 --- a/utils/genrandconfig +++ b/utils/genrandconfig @@ -535,6 +535,13 @@ def fixup_config(sysinfo, configfile): if 'BR2_ARCH_HAS_NO_TOOLCHAIN_BUILDROOT=y\n' in configlines: return False + if 'BR2_PACKAGE_REFPOLICY=y\n' in configlines and \ + 'BR2_PACKAGE_REFPOLICY_CUSTOM_GIT=y\n' in configlines and \ + 'BR2_PACKAGE_REFPOLICY_CUSTOM_REPO_URL=""\n' in configlines: + configlines.remove('BR2_PACKAGE_REFPOLICY_CUSTOM_GIT=y\n') + configlines.append('BR2_PACKAGE_REFPOLICY_UPSTREAM_VERSION=y\n') + configlines.remove('BR2_PACKAGE_REFPOLICY_CUSTOM_REPO_URL=""\n') + if 'BR2_PACKAGE_XVISOR=y\n' in configlines and \ 'BR2_PACKAGE_XVISOR_USE_CUSTOM_CONFIG=y\n' in configlines and \ 'BR2_PACKAGE_XVISOR_CUSTOM_CONFIG_FILE=""\n' in configlines: