diff options
author | Tom Rini <trini@konsulko.com> | 2020-01-08 15:08:34 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-01-08 15:08:34 -0500 |
commit | 3e99c183739afe698df8a4ba813940c94379095b (patch) | |
tree | 846ac3ff496f57d6440b17028bc0c801007bbdc3 /cmd | |
parent | d8a3f5259a36e76d1de127f65714c40918e8ee4c (diff) | |
parent | 964b90f61d2b49844bd42d0a0580e1a404063ee1 (diff) |
Merge branch '2020-01-07-master-imports'
- DT overlay support in FIT images in SPL
- remoteproc update
- Assorted SATA fixes
- Other assorted fixes
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/Kconfig | 1 | ||||
-rw-r--r-- | cmd/bdinfo.c | 3 |
2 files changed, 4 insertions, 0 deletions
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. diff --git a/cmd/bdinfo.c b/cmd/bdinfo.c index abd9151432..d6a7175b37 100644 --- a/cmd/bdinfo.c +++ b/cmd/bdinfo.c @@ -349,6 +349,9 @@ static int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, 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); |