soc/integration/builder: Only generate svd/memory.x export when specified (Since often not required and generation does not seems robust to all designs).
This commit is contained in:
parent
69008d7d5e
commit
81b70d1e37
|
@ -111,8 +111,8 @@ class Builder:
|
|||
# Exports (Generated by default to output_dir with default name unless explicitly specified).
|
||||
self.csr_csv = csr_csv if csr_csv else os.path.join(self.output_dir, "csr.csv")
|
||||
self.csr_json = csr_json if csr_json else os.path.join(self.output_dir, "csr.json")
|
||||
self.csr_svd = csr_svd if csr_svd else os.path.join(self.output_dir, "csr.svd")
|
||||
self.memory_x = memory_x if memory_x else os.path.join(self.output_dir, "memory.x")
|
||||
self.csr_svd = csr_svd
|
||||
self.memory_x = memory_x
|
||||
|
||||
# BIOS.
|
||||
self.bios_lto = bios_lto
|
||||
|
|
Loading…
Reference in New Issue