litex_setup: add litex-boards
authorFlorent Kermarrec <florent@enjoy-digital.fr>
Mon, 26 Aug 2019 07:27:19 +0000 (09:27 +0200)
committerFlorent Kermarrec <florent@enjoy-digital.fr>
Mon, 26 Aug 2019 07:28:58 +0000 (09:28 +0200)
litex_setup.py

index 7268f6d4743efee2365a344e0da7645de536fafc..35cd2f8c72569413cf092bb8b0e33c0c1ed92ba8 100755 (executable)
@@ -9,8 +9,13 @@ current_path = os.path.dirname(os.path.realpath(__file__))
 
 # name,  (url, recursive clone, develop)
 repos = [
+    # HDL
     ("migen",      ("https://github.com/m-labs/",        True,  True)),
+
+    # LiteX SoC builder
     ("litex",      ("https://github.com/enjoy-digital/", True,  True)),
+
+    # LiteX cores ecosystem
     ("liteeth",    ("https://github.com/enjoy-digital/", False, True)),
     ("litedram",   ("https://github.com/enjoy-digital/", False, True)),
     ("litepcie",   ("https://github.com/enjoy-digital/", False, True)),
@@ -19,6 +24,9 @@ repos = [
     ("liteiclink", ("https://github.com/enjoy-digital/", False, True)),
     ("litevideo",  ("https://github.com/enjoy-digital/", False, True)),
     ("litescope",  ("https://github.com/enjoy-digital/", False, True)),
+
+    # LiteX boards support
+    ("litex-boards",   ("https://github.com/litex-hub/", False, True)),
 ]
 repos = OrderedDict(repos)