mirror of
https://github.com/litex-hub/litex-boards.git
synced 2025-01-03 03:43:36 -05:00
aller/neired/tagus: fix gateware/software build directory
This commit is contained in:
parent
c49693fdf3
commit
7184032555
3 changed files with 6 additions and 6 deletions
|
@ -190,10 +190,10 @@ class AllerSoC(SoCSDRAM):
|
|||
def main():
|
||||
platform = aller.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:])
|
||||
vns = builder.build(build_name="aller")
|
||||
soc.generate_software_header("../software/kernel/csr.h")
|
||||
soc.generate_software_header("aller/csr.h")
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
|
|
|
@ -187,10 +187,10 @@ class NereidSoC(SoCSDRAM):
|
|||
def main():
|
||||
platform = nereid.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:])
|
||||
vns = builder.build(build_name="nereid")
|
||||
soc.generate_software_header("../software/kernel/csr.h")
|
||||
soc.generate_software_header("nereid/csr.h")
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
|
|
|
@ -188,10 +188,10 @@ class TagusSoC(SoCSDRAM):
|
|||
def main():
|
||||
platform = tagus.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:])
|
||||
vns = builder.build(build_name="tagus")
|
||||
soc.generate_software_header("../software/kernel/csr.h")
|
||||
soc.generate_software_header("tagus/csr.h")
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
|
|
Loading…
Reference in a new issue