mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
integration/builder: enable bios on gowin emcu
This commit is contained in:
parent
44bea44be3
commit
ef5f6398b2
1 changed files with 1 additions and 1 deletions
|
@ -281,7 +281,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, 'gowin_emcu']
|
||||
with_bios = self.soc.cpu_type is not None
|
||||
if with_bios:
|
||||
self.add_software_package("bios")
|
||||
|
||||
|
|
Loading…
Reference in a new issue