_florent_ changed the topic of #litex to: LiteX FPGA SoC builder and Cores / Github : https://github.com/enjoy-digital, https://github.com/litex-hub / Logs: https://libera.irclog.whitequark.org/litex
tpb has quit [Remote host closed the connection]
tpb has joined #litex
feldim2425_ has quit [Quit: ZNC 1.8.2+deb2build5 - https://znc.in]
feldim2425 has joined #litex
Degi_ has joined #litex
Degi has quit [Ping timeout: 265 seconds]
Degi_ is now known as Degi
bl0x has joined #litex
bl0x_ has quit [Ping timeout: 268 seconds]
jtf has quit [Ping timeout: 265 seconds]
jtf has joined #litex
FabM has joined #litex
FabM has joined #litex
FabM has quit [Changing host]
TMM_ has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
TMM_ has joined #litex
Guest6747 has quit [Quit: WeeChat 3.6]
genpaku has quit [Read error: Connection reset by peer]
genpaku has joined #litex
<acathla> I'm trying to use LiteX on a Papilio Pro board (spartan 6), it works but the sdram initialization fails. What's the best way to debug that?
TMM_ has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
TMM_ has joined #litex
FabM has quit [Ping timeout: 252 seconds]
FabM has joined #litex
FabM has quit [Changing host]
FabM has joined #litex
FabM has quit [Ping timeout: 246 seconds]
<geertu> Is there an easy way to reinstall litex after an OS upgrade? I upgraded from Ubuntu 20.04 to 22.04 LTS, and now lxterm can no longer find the litex Python packages
<somlo> geertu: maybe `python3 setup.py develop --user` in each of the distinct litex[-*] and pythondata-* repos will put the right symlinks back into your .local/<whatever> directory?
<somlo> that is, if you're reluctant to just let `litex_setup.py` do its thing (which I haven't in a loooong time) :)
<geertu> somlo: I did try messing with litex_setup.py, but I got lots of scary warnings and errors. Probably my copy is too old to work well with the new Python in 22.04
<geertu> FWIW, my .local has almost no symlinks, and the few that are present are not related.
<geertu> I have litex stuff under /usr/local/lib/python3.6/ and /usr/local/lib/python3.8/
<geertu> Using "python3.6 /usr/local/bin/lxterm" instead of plain "lxterm
<geertu> " does something, but fails later when trying to talk to the OrangeCrab. Doh
<geertu> "sudo python3 setup.py develop" in the litex dir worked
<geertu> However, download fails after a few seconds. Seems like the USB device disappears at random times.
<geertu> Replugging the board fixed that. Back into business, booting 6.2-rc3...
<geertu> somlo: thx!
<cr1901> Huh, I think litex_setup.py has gotten much better over the years. I run it once per week
<somlo> geertu: I have a bunch of *.egg-link files in $HOME/.local/lib/python3.XX/site-packages, and I'm sure they got there via `setup.py develop --user`, a long time ago
<somlo> they match the "pythonic" folder structure of my various litex* git repositories
<somlo> but this would all break if I upgraded my python version (.local/lib/python3.XX -> python3.YY), at which point I'd probably have to re-learn how to set things up :)
<somlo> litex_setup.py used to 1. do a `git clone [--recursive]` on a list of repos, then 2. do a `setup.py ...` driven by a bunch of options on the command line
<somlo> and probably still does -- haven't needed to touch it in a while :)