Commit 93b61a65 authored by Mateusz Holenko's avatar Mateusz Holenko

integration/builder: generate flash_boot address to csv

parent d0b019b1
...@@ -125,6 +125,10 @@ class Builder: ...@@ -125,6 +125,10 @@ class Builder:
if shadow_base: if shadow_base:
constants.append(('shadow_base', shadow_base)) constants.append(('shadow_base', shadow_base))
flash_boot_address = getattr(self.soc, "flash_boot_address", None)
if flash_boot_address:
constants.append(('flash_boot_address', flash_boot_address))
csr_dir = os.path.dirname(os.path.realpath(self.csr_csv)) csr_dir = os.path.dirname(os.path.realpath(self.csr_csv))
os.makedirs(csr_dir, exist_ok=True) os.makedirs(csr_dir, exist_ok=True)
write_to_file( write_to_file(
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment