From: Simon Glass Date: Wed, 25 Sep 2019 14:11:17 +0000 (-0600) Subject: spl: handoff: Correct Kconfig condition for SPL and TPL X-Git-Tag: v2020.01-rc1~35^2~79 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=a7da3d984db524cdec8336927a5825ffaa8443af;p=oweals%2Fu-boot.git spl: handoff: Correct Kconfig condition for SPL and TPL At present these options can be enabled when bloblist is not enabled for SPL or TPL. This is incorrect as SPL handoff requires bloblist. Fix it. Signed-off-by: Simon Glass Reviewed-by: Bin Meng --- diff --git a/common/spl/Kconfig b/common/spl/Kconfig index f467eca2be..62b93c112b 100644 --- a/common/spl/Kconfig +++ b/common/spl/Kconfig @@ -115,7 +115,7 @@ if SPL config SPL_HANDOFF bool "Pass hand-off information from SPL to U-Boot proper" - depends on HANDOFF + depends on HANDOFF && SPL_BLOBLIST default y help This option enables SPL to write handoff information. This can be @@ -1185,7 +1185,7 @@ if TPL config TPL_HANDOFF bool "Pass hand-off information from TPL to SPL and U-Boot proper" - depends on HANDOFF + depends on HANDOFF && TPL_BLOBLIST default y help This option enables TPL to write handoff information. This can be