Kconfig: Test for !COMPILE_TEST in some locations
authorTom Rini <trini@konsulko.com>
Fri, 4 Jul 2025 21:46:06 +0000 (15:46 -0600)
committerTom Rini <trini@konsulko.com>
Fri, 11 Jul 2025 17:33:25 +0000 (11:33 -0600)
commit7adb9b03a6447a80925c6eb02fedb6b022ef6e14
tree4b7ae83e47e5722c8fdc6af02e64fe6538141eff
parent011079c375d029f47e91d57f84927f392ffd2d61
Kconfig: Test for !COMPILE_TEST in some locations

We have a few options that we cannot enable in a "allyesconfig" type
build because we cannot use zero as a default value.

- The logic around HAS_BOARD_SIZE_LIMIT assumes that if we have set this
  then we compare with it. Similarly, we need to set SPL_NO_BSS_LIMIT as
  the default there.
- Both SYS_CUSTOM_LDSCRIPT and ENV_USE_DEFAULT_ENV_TEXT_FILE then prompt
  for a file name to use.
- The SYS_I2C_SOFT driver is a legacy driver which requires a lot of
  configuration within the board config. file instead, so disable it.

Signed-off-by: Tom Rini <trini@konsulko.com>
Kconfig
common/spl/Kconfig
drivers/i2c/Kconfig
env/Kconfig