Hi @dere_mustapha ,
Since PYNQ SD card image 2.6 we recommend using boot.py
to modify SD card boot behaviour.
https://pynq.readthedocs.io/en/latest/pynq_sd_card.html#leveraging-boot-py-to-modify-sd-card-boot-behavior
If you want to do this on your own script, since PYNQ SD card image 2.7 pynq
is installed in a virtual environment. Therefore, you need to source the appropriate env. See discussion here
That isn’t my experience. I’ve now updated to pynq 2.7 and of a fresh sd image do the following:
ssh in
sudo ipython
import pynq
pynq.Overlay(path_to_my_bitstream, download=False)
This results in
RuntimeError: No Devices Found
as does executing the command with download=True
I do get the warning
/home/xilinx/pynq/pl_server/device.py:79: UserWarning: No devices found, is the XRT environment sourced?
Looking through systemd services I make my way to pl_server.sh
and see that there are ind…
Mario