litex_setup: add litex-boards
[litex.git] / litex_setup.py
1 #!/usr/bin/env python3
2
3 import os
4 import sys
5 from collections import OrderedDict
6
7
8 current_path = os.path.dirname(os.path.realpath(__file__))
9
10 # name, (url, recursive clone, develop)
11 repos = [
12 # HDL
13 ("migen", ("https://github.com/m-labs/", True, True)),
14
15 # LiteX SoC builder
16 ("litex", ("https://github.com/enjoy-digital/", True, True)),
17
18 # LiteX cores ecosystem
19 ("liteeth", ("https://github.com/enjoy-digital/", False, True)),
20 ("litedram", ("https://github.com/enjoy-digital/", False, True)),
21 ("litepcie", ("https://github.com/enjoy-digital/", False, True)),
22 ("litesata", ("https://github.com/enjoy-digital/", False, True)),
23 ("litesdcard", ("https://github.com/enjoy-digital/", False, True)),
24 ("liteiclink", ("https://github.com/enjoy-digital/", False, True)),
25 ("litevideo", ("https://github.com/enjoy-digital/", False, True)),
26 ("litescope", ("https://github.com/enjoy-digital/", False, True)),
27
28 # LiteX boards support
29 ("litex-boards", ("https://github.com/litex-hub/", False, True)),
30 ]
31 repos = OrderedDict(repos)
32
33 if len(sys.argv) < 2:
34 print("Available commands:")
35 print("- init")
36 print("- install (add --user to install to user directory)")
37 print("- update")
38 exit()
39
40 if "init" in sys.argv[1:]:
41 for name in repos.keys():
42 url, need_recursive, need_develop = repos[name]
43 # clone repo (recursive if needed)
44 print("[cloning " + name + "]...")
45 full_url = url + name
46 opts = "--recursive" if need_recursive else ""
47 os.system("git clone " + full_url + " " + opts)
48
49 if "install" in sys.argv[1:]:
50 for name in repos.keys():
51 url, need_recursive, need_develop = repos[name]
52 # develop if needed
53 print("[installing " + name + "]...")
54 if need_develop:
55 os.chdir(os.path.join(current_path, name))
56 if "--user" in sys.argv[1:]:
57 os.system("python3 setup.py develop --user")
58 else:
59 os.system("python3 setup.py develop")
60
61 if "update" in sys.argv[1:]:
62 for name in repos.keys():
63 # update
64 print("[updating " + name + "]...")
65 os.chdir(os.path.join(current_path, name))
66 os.system("git pull")