From d55d07ecdbbd9fb6a4cf88f0a4e8b4bebee7ef2c Mon Sep 17 00:00:00 2001 From: Dolu1990 Date: Wed, 11 Dec 2024 12:05:56 +0100 Subject: [PATCH] Fix litex_setup.py OHCI clone It wasn't recursive ^^ --- litex_setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litex_setup.py b/litex_setup.py index 998d330ae..3c7bca324 100755 --- a/litex_setup.py +++ b/litex_setup.py @@ -102,7 +102,7 @@ git_repos = { # ----------------- # Generic. "pythondata-misc-tapcfg": GitRepo(url="https://github.com/litex-hub/"), - "pythondata-misc-usb_ohci": GitRepo(url="https://github.com/litex-hub/"), + "pythondata-misc-usb_ohci": GitRepo(url="https://github.com/litex-hub/", clone="recursive"), # LM32 CPU(s). "pythondata-cpu-lm32": GitRepo(url="https://github.com/litex-hub/"),