cpu/serv: switch to pythondata package instead of local git clone.
This commit is contained in:
parent
1b06926882
commit
6d0896de1d
|
@ -6,6 +6,7 @@ import os
|
|||
|
||||
from migen import *
|
||||
|
||||
from litex import get_data_mod
|
||||
from litex.soc.interconnect import wishbone
|
||||
from litex.soc.cores.cpu import CPU
|
||||
|
||||
|
@ -80,11 +81,9 @@ class SERV(CPU):
|
|||
|
||||
@staticmethod
|
||||
def add_sources(platform):
|
||||
# FIXME: add SERV as submodule
|
||||
os.system("git clone https://github.com/olofk/serv")
|
||||
vdir = os.path.join("serv", "rtl")
|
||||
platform.add_source_dir(vdir)
|
||||
platform.add_verilog_include_path(vdir)
|
||||
vdir = get_data_mod("cpu", "serv").data_location
|
||||
platform.add_source_dir(os.path.join(vdir, "rtl"))
|
||||
platform.add_verilog_include_path(os.path.join(vdir, "rtl"))
|
||||
|
||||
def do_finalize(self):
|
||||
assert hasattr(self, "reset_address")
|
||||
|
|
|
@ -42,6 +42,7 @@ repos = [
|
|||
("pythondata-cpu-lm32", ("https://github.com/litex-hub/", False, True)),
|
||||
("pythondata-cpu-mor1kx", ("https://github.com/litex-hub/", False, True)),
|
||||
("pythondata-cpu-picorv32", ("https://github.com/litex-hub/", False, True)),
|
||||
("pythondata-cpu-serv", ("https://github.com/litex-hub/", False, True)),
|
||||
("pythondata-cpu-vexriscv", ("https://github.com/litex-hub/", False, True)),
|
||||
("pythondata-cpu-rocket", ("https://github.com/litex-hub/", False, True)),
|
||||
]
|
||||
|
|
Loading…
Reference in New Issue