diff options
| -rw-r--r-- | Kconfig | 2 | ||||
| -rw-r--r-- | common/spl/Kconfig | 1 | ||||
| -rw-r--r-- | drivers/i2c/Kconfig | 1 | ||||
| -rw-r--r-- | env/Kconfig | 1 | 
4 files changed, 5 insertions, 0 deletions
| @@ -537,6 +537,7 @@ config BUILD_TARGET  config HAS_BOARD_SIZE_LIMIT  	bool "Define a maximum size for the U-Boot image" +	depends on !COMPILE_TEST  	default y if RCAR_32 || RCAR_64  	help  	  In some cases, we need to enforce a hard limit on how big the U-Boot @@ -555,6 +556,7 @@ config BOARD_SIZE_LIMIT  config SYS_CUSTOM_LDSCRIPT  	bool "Use a custom location for the U-Boot linker script" +	depends on !COMPILE_TEST  	help  	  Normally when linking U-Boot we will look in the board directory,  	  the CPU directory and finally the "cpu" directory of the architecture diff --git a/common/spl/Kconfig b/common/spl/Kconfig index 4e26b3940d8..f69eff21107 100644 --- a/common/spl/Kconfig +++ b/common/spl/Kconfig @@ -132,6 +132,7 @@ config SPL_BSS_START_ADDR  choice  	prompt "Enforce SPL BSS limit"  	depends on !PPC +	default SPL_NO_BSS_LIMIT if COMPILE_TEST  	default SPL_BSS_LIMIT  	help  	  In some platforms we only want to enforce a limit on the size of the diff --git a/drivers/i2c/Kconfig b/drivers/i2c/Kconfig index 146bc621c7e..775b2b4e9af 100644 --- a/drivers/i2c/Kconfig +++ b/drivers/i2c/Kconfig @@ -615,6 +615,7 @@ endif  config SYS_I2C_SOFT  	bool "Legacy software I2C interface" +	depends on !COMPILE_TEST  	help  	  Enable the legacy software defined I2C interface diff --git a/env/Kconfig b/env/Kconfig index c30785de48b..c667e8f2da1 100644 --- a/env/Kconfig +++ b/env/Kconfig @@ -759,6 +759,7 @@ config SCSI_ENV_PART_UUID  config ENV_USE_DEFAULT_ENV_TEXT_FILE  	bool "Create default environment from file" +	depends on !COMPILE_TEST  	help  	  Normally, the default environment is automatically generated  	  based on the settings of various CONFIG_* options, as well | 
