From mboxrd@z Thu Jan 1 00:00:00 1970 From: Dalon Westergreen Date: Sun, 19 Feb 2017 11:49:59 -0800 Subject: [U-Boot] [PATCH 2/2] common: bootm: add support for arbitrary fgpa configuration In-Reply-To: <1487533799-28788-1-git-send-email-dwesterg@gmail.com> References: <1487533799-28788-1-git-send-email-dwesterg@gmail.com> Message-ID: <1487533799-28788-3-git-send-email-dwesterg@gmail.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de This adds support for fpga configuration data in fitimages for any fpga device supported by fpga_load. At this point fitimages only support configuration of fpga images for fpga devnum 0. Signed-off-by: Dalon Westergreen --- common/bootm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/bootm.c b/common/bootm.c index b2c0912..4a4b47c 100644 --- a/common/bootm.c +++ b/common/bootm.c @@ -248,7 +248,7 @@ int bootm_find_images(int flag, int argc, char * const argv[]) #endif #if IMAGE_ENABLE_FIT -#if defined(CONFIG_FPGA) && defined(CONFIG_FPGA_XILINX) +#if defined(CONFIG_FPGA) /* find bitstreams */ ret = boot_get_fpga(argc, argv, &images, IH_ARCH_DEFAULT, NULL, NULL); -- 2.7.4