Skip to content

Commit e72939a

Browse files
authored
Merge pull request #115 from the-snowwhite/addboard
Addboard
2 parents 2e9a586 + 4c76188 commit e72939a

23 files changed

+5616
-27
lines changed

HW/VivadoProjects/Readme.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,3 +45,30 @@ nasty, and a hand edited ones like the samples are much nicer. You will also
4545
need to define the config file used by the make\_bitstream.sh script. After
4646
running make\_bitstream, the *.bit.bin file will be in your new root folder for
4747
the carrier.
48+
49+
Checkout the latest commit for the FZ3 board if you are adding a mpsoc based board
50+
51+
# Docker building
52+
53+
1.For bitfile compiling and .hdf file creation:
54+
55+
docker pull thesnowwhite/bionic-vivado:2019.1
56+
57+
cd mksocfpga
58+
/usr/bin/docker run -itv $(pwd):/work -e DISPLAY=$DISPLAY --net=host -v $HOME/.Xauthority:/home/vivado/.Xauthority -v $HOME/.Xresources:/home/vivado/.Xresources thesnowwhite/bionic-vivado:2019.1 /bin/bash
59+
cd /work/HW/VivadoProjects
60+
./make_bitfile.sh <project config file>
61+
ie. ./make_bitfile.sh myirtech/fz3/fz3_config
62+
63+
64+
2.For mpsoc bootfile's generation (only works with created vivado project containing .hdf file)
65+
66+
docker pull thesnowwhite/petalinux:2019.1
67+
cd mksocfpga
68+
/usr/bin/docker run -itv $(pwd):/work --env=$DISPLAY --net=host -e TZ=Europe/Copenhagen thesnowwhite/petalinux:2019.1 /bin/bash
69+
cd /work/HW/VivadoProjects
70+
./make_mpsoc_boot.sh <board name>
71+
ie. ./make_mpsoc_boot.sh fz3
72+
73+
74+

0 commit comments

Comments
 (0)