src/Kconfig: enable USE_BLOBS by default
To provide sane defaults for most of the user base, this patch switches on the USE_BLOBS option by default. Since it only changes the default, this behaviour can still be easily disabled. With this abuild doesn't have to select USE_BLOBS any more, so what abuild tests becomes the coreboot default again. Change-Id: Ia0632b9ae7a1f212a8640b3faec2695d17d238c5 Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Reviewed-on: https://review.coreboot.org/c/coreboot/+/37972 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Nico Huber <nico.h@gmx.de> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
This commit is contained in:
parent
3e4f7a39f8
commit
a6b887e017
|
@ -226,6 +226,7 @@ config TIMESTAMPS_ON_CONSOLE
|
||||||
|
|
||||||
config USE_BLOBS
|
config USE_BLOBS
|
||||||
bool "Allow use of binary-only repository"
|
bool "Allow use of binary-only repository"
|
||||||
|
default y
|
||||||
help
|
help
|
||||||
This draws in the blobs repository, which contains binary files that
|
This draws in the blobs repository, which contains binary files that
|
||||||
might be required for some chipsets or boards.
|
might be required for some chipsets or boards.
|
||||||
|
|
|
@ -720,7 +720,7 @@ while true ; do
|
||||||
shift;;
|
shift;;
|
||||||
-B|--blobs) shift
|
-B|--blobs) shift
|
||||||
customizing="${customizing}, blobs"
|
customizing="${customizing}, blobs"
|
||||||
configoptions="${configoptions}CONFIG_USE_BLOBS=y\nCONFIG_USE_AMD_BLOBS=y\nCONFIG_ADD_FSP_BINARIES=y\n"
|
configoptions="${configoptions}CONFIG_USE_AMD_BLOBS=y\nCONFIG_ADD_FSP_BINARIES=y\n"
|
||||||
;;
|
;;
|
||||||
-A|--any-toolchain) shift
|
-A|--any-toolchain) shift
|
||||||
customizing="${customizing}, any-toolchain"
|
customizing="${customizing}, any-toolchain"
|
||||||
|
|
Loading…
Reference in New Issue