litex_setup: Rename --status to --freeze and generate freezed git_repos dict.

This commit is contained in:
Florent Kermarrec 2022-03-08 18:12:11 +01:00
parent 7411109f4d
commit ece286b15d
1 changed files with 21 additions and 10 deletions

View File

@ -130,7 +130,6 @@ standard_repos.remove("pythondata-cpu-marocchino")
# Full: Migen + LiteX + Cores + Software + All CPUs.
full_repos = list(git_repos.keys())
# Installs:
install_configs = {
"minimal" : minimal_repos,
@ -233,16 +232,28 @@ def litex_setup_install_repos(config="standard", user_mode=False):
print_status("Make sure that ~/.local/bin is in your PATH")
print_status("export PATH=$PATH:~/.local/bin")
# Git repositories status --------------------------------------------------------------------------
# Git repositories freeze --------------------------------------------------------------------------
def litex_setup_status_repos(config="standard"):
print_status("Getting status of Git repositories...", underline=True)
def litex_setup_freeze_repos(config="standard"):
print_status("Freezing config of Git repositories...", underline=True)
r = "git_repos = {\n"
for name in install_configs[config]:
repo = git_repos[name]
os.chdir(os.path.join(current_path, name))
git_sha1_cmd = ["git", "rev-parse", "--short=7", "HEAD"]
git_sha1 = subprocess.check_output(git_sha1_cmd).decode("UTF-8")
print(f"{name}: sha1=0x{git_sha1}", end="")
git_sha1 = subprocess.check_output(git_sha1_cmd).decode("UTF-8")[:-1]
git_url_cmd = ["git", "remote", "get-url", "origin"]
git_url = subprocess.check_output(git_url_cmd).decode("UTF-8")[:-1]
git_url = git_url.replace(f"{name}.git", "")
r += " "*4
r += f'"{name}" : GitRepo(url="{git_url}",\n'
r += f'{" "*8}clone = "{repo.clone}",\n'
r += f'{" "*8}develop = {repo.develop},\n'
r += f'{" "*8}sha1 = 0x{git_sha1},\n'
r += f'{" "*8}branch = "{repo.branch}"'
r += f'\n{" "*4}),\n'
r += "}\n"
print(r)
# GCC toolchains download --------------------------------------------------------------------------
@ -325,7 +336,7 @@ def main():
parser.add_argument("--install", action="store_true", help="Install Git repositories.")
parser.add_argument("--user", action="store_true", help="Install in User-Mode.")
parser.add_argument("--config", default="standard", help="Install config (minimal, standard, full).")
parser.add_argument("--status", action="store_true", help="Display Git status of repositories.")
parser.add_argument("--freeze", action="store_true", help="Freeze and display current config.")
# GCC toolchains.
parser.add_argument("--gcc", default=None, help="Download/Extract GCC Toolchain (riscv, powerpc, openrisc or lm32).")
@ -362,9 +373,9 @@ def main():
if args.install:
litex_setup_install_repos(config=args.config, user_mode=args.user)
# Status.
if args.status:
litex_setup_status_repos(config=args.config)
# Freeze.
if args.freeze:
litex_setup_freeze_repos(config=args.config)
# GCC.
os.chdir(os.path.join(current_path))