litex/litex_setup.py

69 lines
2.4 KiB
Python
Raw Normal View History

#!/usr/bin/env python3
import os
import sys
from collections import OrderedDict
current_path = os.path.dirname(os.path.realpath(__file__))
# name, (url, recursive clone, develop)
repos = [
2019-08-26 03:27:19 -04:00
# HDL
2019-08-17 04:02:10 -04:00
("migen", ("https://github.com/m-labs/", True, True)),
2019-08-26 03:27:19 -04:00
# LiteX SoC builder
2019-08-17 04:02:10 -04:00
("litex", ("https://github.com/enjoy-digital/", True, True)),
2019-08-26 03:27:19 -04:00
# LiteX cores ecosystem
2019-10-04 04:00:45 -04:00
("liteeth", ("https://github.com/enjoy-digital/", False, True)),
("litedram", ("https://github.com/enjoy-digital/", False, True)),
("litepcie", ("https://github.com/enjoy-digital/", False, True)),
("litesata", ("https://github.com/enjoy-digital/", False, True)),
("litesdcard", ("https://github.com/enjoy-digital/", False, True)),
("liteiclink", ("https://github.com/enjoy-digital/", False, True)),
("litevideo", ("https://github.com/enjoy-digital/", False, True)),
("litescope", ("https://github.com/enjoy-digital/", False, True)),
("litejesd204b", ("https://github.com/enjoy-digital/", False, True)),
2020-03-30 07:37:34 -04:00
("litespi", ("https://github.com/litex-hub/", False, True)),
2019-08-26 03:27:19 -04:00
# LiteX boards support
("litex-boards", ("https://github.com/litex-hub/", False, True)),
]
repos = OrderedDict(repos)
if len(sys.argv) < 2:
print("Available commands:")
print("- init")
print("- install (add --user to install to user directory)")
print("- update")
exit()
if "init" in sys.argv[1:]:
for name in repos.keys():
url, need_recursive, need_develop = repos[name]
# clone repo (recursive if needed)
print("[cloning " + name + "]...")
full_url = url + name
opts = "--recursive" if need_recursive else ""
os.system("git clone " + full_url + " " + opts)
if "install" in sys.argv[1:]:
for name in repos.keys():
url, need_recursive, need_develop = repos[name]
# develop if needed
print("[installing " + name + "]...")
if need_develop:
os.chdir(os.path.join(current_path, name))
if "--user" in sys.argv[1:]:
os.system("python3 setup.py develop --user")
else:
os.system("python3 setup.py develop")
if "update" in sys.argv[1:]:
for name in repos.keys():
# update
print("[updating " + name + "]...")
os.chdir(os.path.join(current_path, name))
os.system("git pull")