From cd1012470ef10929c633ac42096d274d22f32166 Mon Sep 17 00:00:00 2001 From: Alexey Morozov <31707428+alexey-morozov@users.noreply.github.com> Date: Wed, 16 Aug 2023 09:39:03 +0200 Subject: [PATCH] To allow offline installation, the "liteiclink" package has to be installed before the "liteeth" package. Otherwise, to satisfy the dependency requirements, the setup will attempt to download the "liteiclink" package from the internet and will consequently fail. --- litex_setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litex_setup.py b/litex_setup.py index 342dda5a1..2354a6846 100755 --- a/litex_setup.py +++ b/litex_setup.py @@ -80,12 +80,12 @@ git_repos = { # LiteX Cores Ecosystem. # ---------------------- + "liteiclink": GitRepo(url="https://github.com/enjoy-digital/", tag=True), "liteeth": GitRepo(url="https://github.com/enjoy-digital/", tag=True), "litedram": GitRepo(url="https://github.com/enjoy-digital/", tag=True), "litepcie": GitRepo(url="https://github.com/enjoy-digital/", tag=True), "litesata": GitRepo(url="https://github.com/enjoy-digital/", tag=True), "litesdcard": GitRepo(url="https://github.com/enjoy-digital/", tag=True), - "liteiclink": GitRepo(url="https://github.com/enjoy-digital/", tag=True), "litescope": GitRepo(url="https://github.com/enjoy-digital/", tag=True), "litejesd204b": GitRepo(url="https://github.com/enjoy-digital/", tag=True), "litespi": GitRepo(url="https://github.com/litex-hub/", tag=True),