Read_from_flash command not found

The guide to configure FPGA from flash via SPI utilizes the read_from_flash command as mentioned in the link .

While doing so via terminal in PuTTY the following error is produced :

The version of the OS that is currently running:

What we have tried :

  1. Checked if the read_from_flash utility is present anywhere:

  1. Tried reinstalling the packages:
vicharak@vicharak:~$ sudo apt install vicharak-firmware
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
vicharak-firmware is already the newest version (0.1.4).
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. vicharak@vicharak:~$ which read_from_flash
vicharak@vicharak:~$

What do you want to do? Do you want to flash the bitstream on th FPGA?

To flash the bitstream,

sudo apt update
sudo apt install bitman
sudo bitman -f <bitstream_file>

Yeah i wanted to flash the bitstream and make it be non-volatile because vaaman -ctl is volatile right.
Sure I’ll try this.

It cannot be non-volatile as we are not copying the bitstream to flash anymore, we are programming it directly using spi passive mode.

You can create a service which will flash the bitstream on every reboot if you want.

Oh okay. Yeah that is what we are doing, but wanted try a non volatile method if possible. Thanks for the clarification.