Difference between revisions of "FuseSoC"
From ArmadeusWiki
(→Blinky) |
(→Blinky) |
||
Line 47: | Line 47: | ||
* APF27: | * APF27: | ||
− | + | <pre class="host"> | |
− | + | $ fusesoc run --target=apf27 fusesoc:utils:blinky | |
− | + | </pre> | |
* OPOS6UL_SP: | * OPOS6UL_SP: | ||
<pre>TODO</pre> | <pre>TODO</pre> |
Revision as of 13:39, 22 July 2020
Page under construction...
Informations on this page are not guaranteed !!
Introduction
FuseSoC is a package manager written in python and used to assemble different HDL design from libraries together. FuseSoC is like Buildroot or Yocto used for Linux, it's just a «Makefile» that launch different tools to build the system.
Install fusesoc
- Fusesoc is a python3 package that can be installed with pip :
$ python3 -m pip install fusesoc
- To be up to date use --upgrade option:
$ python3 -m pip install --upgrade fusesoc
- Once installed a command named fusesoc is available on system :
$ fusesoc --version 1.11.0
- Initialize library:
$ cd workspace $ fusesoc init
Blinky
Blinky is a project that aim do blink all FPGA board with a gateware constructed from fusesoc tool.
Here the way to blink Armadeus board with blinky.
First, git clone the blinky project:
$ cd workspace $ fusesoc library add --sync-type git blinky https://github.com/fusesoc/blinky
- APF27:
$ fusesoc run --target=apf27 fusesoc:utils:blinky
- OPOS6UL_SP:
TODO