From 8ad0c66437a3c5bafbbaddffd58436ba6763837d Mon Sep 17 00:00:00 2001 From: Heiko Schocher Date: Sat, 9 Nov 2019 04:56:10 +0100 Subject: bdinfo: show multi_dtb_fit if MULTI_DTB_FIT is enabled it is helpful to display the value of gd->multi_dtb_fit in bdinfo. Signed-off-by: Heiko Schocher Reviewed-by: Simon Glass --- cmd/bdinfo.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'cmd') diff --git a/cmd/bdinfo.c b/cmd/bdinfo.c index abd9151432..d6a7175b37 100644 --- a/cmd/bdinfo.c +++ b/cmd/bdinfo.c @@ -348,6 +348,9 @@ static int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, #if CONFIG_VAL(SYS_MALLOC_F_LEN) printf("Early malloc usage: %lx / %x\n", gd->malloc_ptr, CONFIG_VAL(SYS_MALLOC_F_LEN)); +#endif +#if CONFIG_IS_ENABLED(MULTI_DTB_FIT) + print_num("multi_dtb_fit", (ulong)gd->multi_dtb_fit); #endif if (gd->fdt_blob) print_num("fdt_blob", (ulong)gd->fdt_blob); -- cgit From 14a2dee765fe0849a49d5007398eb64677ed1544 Mon Sep 17 00:00:00 2001 From: Tom Rini Date: Thu, 5 Dec 2019 18:46:11 -0500 Subject: cmd/Kconfig: Add more dependencies to OSE bootm support Per Enea OSE documentation, it supports some classes of ARM, PowerPC and X86. Limit the option to those platforms. Signed-off-by: Tom Rini --- cmd/Kconfig | 1 + 1 file changed, 1 insertion(+) (limited to 'cmd') diff --git a/cmd/Kconfig b/cmd/Kconfig index 4e29e7b3c5..5f2562bbea 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -294,6 +294,7 @@ config BOOTM_OPENRTOS config BOOTM_OSE bool "Support booting Enea OSE images" + depends on (ARM && (ARM64 || CPU_V7A || CPU_V7R) || SANDBOX || PPC || X86) depends on CMD_BOOTM help Support booting Enea OSE images via the bootm command. -- cgit