From 6705972713e65e5d250f2cbf96a9edc88352092d Mon Sep 17 00:00:00 2001 From: Ilia Sergachev Date: Wed, 22 Dec 2021 02:59:40 +0100 Subject: [PATCH] builder: enable bios compilation on zynq --- litex/soc/integration/builder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litex/soc/integration/builder.py b/litex/soc/integration/builder.py index 68369b4d0..f6198756c 100644 --- a/litex/soc/integration/builder.py +++ b/litex/soc/integration/builder.py @@ -275,7 +275,7 @@ class Builder: self.soc.platform.output_dir = self.output_dir # Check if BIOS is used and add software package if so. - with_bios = self.soc.cpu_type not in [None, "zynq7000", "eos-s3", 'gowin_emcu'] + with_bios = self.soc.cpu_type not in [None, "eos-s3", 'gowin_emcu'] if with_bios: self.add_software_package("bios")