Skip to content
Snippets Groups Projects
Commit 71840325 authored by Florent Kermarrec's avatar Florent Kermarrec
Browse files

aller/neired/tagus: fix gateware/software build directory

parent c49693fd
No related branches found
No related tags found
No related merge requests found
...@@ -190,10 +190,10 @@ class AllerSoC(SoCSDRAM): ...@@ -190,10 +190,10 @@ class AllerSoC(SoCSDRAM):
def main(): def main():
platform = aller.Platform() platform = aller.Platform()
soc = AllerSoC(platform) soc = AllerSoC(platform)
builder = Builder(soc, output_dir="../build/aller", csr_csv="../build/aller/csr.csv", builder = Builder(soc, output_dir="aller", csr_csv="aller/csr.csv",
compile_gateware=not "no-compile" in sys.argv[1:]) compile_gateware=not "no-compile" in sys.argv[1:])
vns = builder.build(build_name="aller") vns = builder.build(build_name="aller")
soc.generate_software_header("../software/kernel/csr.h") soc.generate_software_header("aller/csr.h")
if __name__ == "__main__": if __name__ == "__main__":
......
...@@ -187,10 +187,10 @@ class NereidSoC(SoCSDRAM): ...@@ -187,10 +187,10 @@ class NereidSoC(SoCSDRAM):
def main(): def main():
platform = nereid.Platform() platform = nereid.Platform()
soc = NereidSoC(platform) soc = NereidSoC(platform)
builder = Builder(soc, output_dir="../build/nereid", csr_csv="../build/nereid/csr.csv", builder = Builder(soc, output_dir="nereid", csr_csv="nereid/csr.csv",
compile_gateware=not "no-compile" in sys.argv[1:]) compile_gateware=not "no-compile" in sys.argv[1:])
vns = builder.build(build_name="nereid") vns = builder.build(build_name="nereid")
soc.generate_software_header("../software/kernel/csr.h") soc.generate_software_header("nereid/csr.h")
if __name__ == "__main__": if __name__ == "__main__":
......
...@@ -188,10 +188,10 @@ class TagusSoC(SoCSDRAM): ...@@ -188,10 +188,10 @@ class TagusSoC(SoCSDRAM):
def main(): def main():
platform = tagus.Platform() platform = tagus.Platform()
soc = TagusSoC(platform) soc = TagusSoC(platform)
builder = Builder(soc, output_dir="../build/tagus", csr_csv="../build/tagus/csr.csv", builder = Builder(soc, output_dir="tagus", csr_csv="tagus/csr.csv",
compile_gateware=not "no-compile" in sys.argv[1:]) compile_gateware=not "no-compile" in sys.argv[1:])
vns = builder.build(build_name="tagus") vns = builder.build(build_name="tagus")
soc.generate_software_header("../software/kernel/csr.h") soc.generate_software_header("tagus/csr.h")
if __name__ == "__main__": if __name__ == "__main__":
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment