diff --git a/boot/image-fit.c b/boot/image-fit.c index c42b22ab02b..cc7a4bb44dc 100644 --- a/boot/image-fit.c +++ b/boot/image-fit.c @@ -323,6 +323,17 @@ static void fit_conf_print(const void *fit, int noffset, const char *p) printf("%s\n", uname); } + for (fdt_index = 0; + uname = fdt_stringlist_get(fit, noffset, FIT_COMPAT_PROP, + fdt_index, NULL), uname; + fdt_index++) { + if (fdt_index == 0) + printf("%s Compatible: ", p); + else + printf("%s ", p); + printf("%s\n", uname); + } + uname = fdt_getprop(fit, noffset, FIT_FPGA_PROP, NULL); if (uname) printf("%s FPGA: %s\n", p, uname);