diff options
Diffstat (limited to 'Kconfig')
| -rw-r--r-- | Kconfig | 20 | 
1 files changed, 19 insertions, 1 deletions
| @@ -27,8 +27,22 @@ config DEPRECATED  	  code that relies on deprecated features that will be removed and  	  the conversion deadline has passed. +config COMPILE_TEST +	bool "Compile also drivers which will not load" +	help +	  Some drivers can be compiled on a different platform than they are +	  intended to be run on. Despite they cannot be loaded there (or even +	  when they load they cannot be used due to missing HW support), +	  developers still, opposing to distributors, might want to build such +	  drivers to compile-test them. + +	  If you are a developer and want to build everything available, say Y +	  here. If you are a user/distributor, say N here to exclude useless +	  drivers to be distributed. +  config WERROR  	bool "Compile U-Boot with warnings as errors" +	default COMPILE_TEST  	help  	  A U-Boot build should not cause any compiler warnings, and this  	  enables the '-Werror' flag to enforce that rule. @@ -497,6 +511,7 @@ config SPL_IMAGE  config REMAKE_ELF  	bool "Recreate an ELF image from raw U-Boot binary" +	depends on !COMPILE_TEST  	help  	  Enable this to recreate an ELF image (u-boot.elf) from the raw  	  U-Boot binary (u-boot.bin), which may already have been statically @@ -523,6 +538,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 @@ -537,10 +553,11 @@ config BOARD_SIZE_LIMIT  	  Maximum size of the U-Boot image. When defined, the build system  	  checks that the actual size does not exceed it.  This does not  	  include SPL nor TPL, on platforms that use that functionality, they -	  have a separate option to restict size. +	  have separate options to restrict size.  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 @@ -704,6 +721,7 @@ config TPL_SYS_MONITOR_BASE  config DYNAMIC_SYS_CLK_FREQ  	bool "Determine CPU clock frequency at run-time" +	depends on !COMPILE_TEST  	help  	  Implement a get_board_sys_clk function that will determine the CPU  	  clock frequency at run time, rather than define it statically. | 
