mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
bloblist: Correct Kconfig dependencies
This feature is not available in SPL unless common/ and lib/ are built. Update the Kconfig to avoid build errors. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
b550853b7d
commit
3c0d5ea0a5
1 changed files with 2 additions and 2 deletions
|
@ -762,7 +762,7 @@ config BLOBLIST
|
|||
|
||||
config SPL_BLOBLIST
|
||||
bool "Support for a bloblist in SPL"
|
||||
depends on BLOBLIST
|
||||
depends on BLOBLIST && SPL_LIBGENERIC_SUPPORT && SPL_LIBCOMMON_SUPPORT
|
||||
default y if SPL
|
||||
help
|
||||
This enables a bloblist in SPL. If this is the first part of U-Boot
|
||||
|
@ -771,7 +771,7 @@ config SPL_BLOBLIST
|
|||
|
||||
config TPL_BLOBLIST
|
||||
bool "Support for a bloblist in TPL"
|
||||
depends on BLOBLIST
|
||||
depends on BLOBLIST && TPL_LIBGENERIC_SUPPORT && TPL_LIBCOMMON_SUPPORT
|
||||
default y if TPL
|
||||
help
|
||||
This enables a bloblist in TPL. The bloblist is set up in TPL and
|
||||
|
|
Loading…
Reference in a new issue