Currently its not possible to distinguish between normal builds and
builds performed by the build bots/CI, thus leading to a workarounds
like for example in 4c78028737c3 ("mksunxi_fit_atf.sh: Allow for this to
complete when bl31.bin is missing"), where producing unusable binaries
is prefered in favor of a green automatic builds.

So lets try to fix this properly, add BUILDBOT config options which
could be set on the build bots/CI and the codebase can use this new
config option to workaround the issues in more clear manner.

Signed-off-by: Petr Štetiar <yn...@true.cz>
---
 Kconfig | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/Kconfig b/Kconfig
index 66148ce47790..24960cf7abbf 100644
--- a/Kconfig
+++ b/Kconfig
@@ -20,6 +20,18 @@ config BROKEN
          This option cannot be enabled. It is used as dependency
          for broken and incomplete features.
 
+config BUILDBOT
+       bool "Set build defaults for automatic builds"
+       help
+         This option allows setting of usable defaults for automatic builds.
+
+config BUILDBOT_BROKEN_BINARIES
+       bool "Allow building of broken binaries"
+       depends on BUILDBOT
+       help
+         Resulting images wont be used for runtime testing, thus completition
+         of build is preferred.
+
 config DEPRECATED
        bool
        help

Reply via email to