diff options
author | Felix Held <felix-coreboot@felixheld.de> | 2019-12-28 19:10:12 +0100 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2020-04-14 10:03:55 +0000 |
commit | a6b887e017f2310db79067b18b216036907b2d90 (patch) | |
tree | a1ad55255dd2268cc81711fcd619ee817cc84286 /src/Kconfig | |
parent | 3e4f7a39f8cbdfc7cd097b5c57c43f52d9b0fb4c (diff) |
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>
Diffstat (limited to 'src/Kconfig')
-rw-r--r-- | src/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Kconfig b/src/Kconfig index da21af1dd1..cf4df18247 100644 --- a/src/Kconfig +++ b/src/Kconfig @@ -226,6 +226,7 @@ config TIMESTAMPS_ON_CONSOLE config USE_BLOBS bool "Allow use of binary-only repository" + default y help This draws in the blobs repository, which contains binary files that might be required for some chipsets or boards. |