Uboot FPGA firmware update from Linux
From ArmadeusWiki
Revision as of 22:06, 9 September 2010 by Salocin68 (Talk | contribs) (New page: The U-Boot FPGA firmware can be updated by means of U-Boot (Target_Software_Installation#FPGA_firmware_installation) or directly from Linux as described herewith. Under Linux: At fir...)
The U-Boot FPGA firmware can be updated by means of U-Boot (Target_Software_Installation#FPGA_firmware_installation) or directly from Linux as described herewith.
Under Linux:
At first download your FPGA firmware:
[armadeus]$ tftp -g -r myFirmwareFile myServerIpAddress
Once done the U-Boot Firmware partition has to be erased
[armadeus]$ flash_eraseall /dev/mtd2/
Then your FPGA .bit file can be written
[armadeus]$ nandwrite -p /dev/mtd2 myFirmwareFile
That's all