[PATCH resend] mmc: kconfig: Add CONFIG_SPL_MMC_VERBOSE

2021-04-06 Thread Klaus Heinrich Kiwi
r 2 Signed-off-by: Klaus Heinrich Kiwi --- common/spl/Kconfig | 7 +++ 1 file changed, 7 insertions(+) diff --git a/common/spl/Kconfig b/common/spl/Kconfig index 0711cbf951..5b0eaa1414 100644 --- a/common/spl/Kconfig +++ b/common/spl/Kconfig @@ -710,6 +710,13 @@ config SPL_MMC_SUPPORT

[PATCH] mmc: kconfig: Add CONFIG_SPL_MMC_VERBOSE

2021-03-08 Thread Klaus Heinrich Kiwi
r 2 Signed-off-by: Klaus Heinrich Kiwi --- common/spl/Kconfig | 7 +++ 1 file changed, 7 insertions(+) diff --git a/common/spl/Kconfig b/common/spl/Kconfig index 774541c02b..2b36c86e0f 100644 --- a/common/spl/Kconfig +++ b/common/spl/Kconfig @@ -697,6 +697,13 @@ config SPL_MMC_SUPPORT

[PATCH] tools/mkeficapsule.c: fix DEBUG build

2021-02-20 Thread Klaus Heinrich Kiwi
bin, guid); |^~~~ |) Signed-off-by: Klaus Heinrich Kiwi --- tools/mkeficapsule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/mkeficapsule.c b/tools/mkeficapsule.c index 162494907a..1613e74ca7 100644 --- a/tools/mkeficapsu

[PATCH 3/3] Makefile: Add (default) DEVICE_TREE to SPL FIT

2021-02-09 Thread Klaus Heinrich Kiwi
supplied by the DEVICE_TREE env var). Signed-off-by: Klaus Heinrich Kiwi --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index ebbedb1fb1..116d03947a 100644 --- a/Makefile +++ b/Makefile @@ -1386,6 +1386,7 @@ MKIMAGEFLAGS_u-boot.img = -f auto -A $(ARCH) -T

[PATCH 2/3] Kconfig: SPL_FIT_SIGNATURE requires SPL_LOAD_FIT

2021-02-09 Thread Klaus Heinrich Kiwi
Having the ability to support firmware FIT signatures on the SPL sounds not so useful if the SPL is not supporting to load a (U-boot) firmware as a FIT image. Signed-off-by: Klaus Heinrich Kiwi --- common/Kconfig.boot | 1 + 1 file changed, 1 insertion(+) diff --git a/common/Kconfig.boot b

[PATCH 1/3] Kconfig: SPL_FIT_SIGNATURE selects FIT_SIGNATURE

2021-02-09 Thread Klaus Heinrich Kiwi
Selecting SPL_FIT_SIGNATURE (without selecting U-boot proper verified boot first) breaks the build due to CONFIG_FIT_SIGNATURE_MAX_SIZE being undefined, in addition to Kconfig warnings on RSA and IMAGE_SIGN_INFO unmet dependencies. Signed-off-by: Klaus Heinrich Kiwi --- common/Kconfig.boot

[PATCH 0/3] Misc fixes for SPL_FIT_SIGNATURE builds

2021-02-09 Thread Klaus Heinrich Kiwi
This patch series contains a few fixes for issues found when experimenting with the SPL_FIT_SIGNATURE builds. Some of them are apparently necessary to properly integrate this U-boot feature with build systems such as Yocto, and by extension OpenBMC. -Klaus Klaus Heinrich Kiwi (3): Kconfig