Update README and build.sh #59
Loading…
Reference in New Issue
No description provided.
Delete Branch "harry/zynq-rs:master"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
This is to keep consistency with the updated build instructions as per commit
e8ba73a8c7
.@ -65,3 +65,3 @@
Clone this repo onto your development/build machine and the raspberry pi that controls the Xilinx 7000 board
On the dev machine, the below script builds zc706 and secure copies it to the target pi (in your pi $HOME directory)
On the dev machine, the below script builds zc706 and secure copies it to the nixbuild.m-labs.hk server:
It's nixbld.m-labs.hk (not nixbuild...), and also the script does copy it to a RPI using the IPv4 port redirects. We should change the script to use the rpi IPv6 hostname.
Fixed in harry/zynq-rs:
b6919d1730
, but the updated build.sh has not been tested from outside.@ -1 +1 @@
nix-shell --command "cargo xbuild --release -p experiments" && scp -P 2204 -C target/armv7-none-eabihf/release/zc706-experiments $1@nixbld.m-labs.hk:/home/$1/zc706/zc706.elf
nix-shell --command "cargo xbuild --release -p experiments" && scp -P 2204 -C target/armv7-none-eabihf/release/experiments -6 $1@nixbld.m-labs.hk:/home/$1/zc706/zc706.elf
-6
will not work with-P 2204
nor is it needed otherwise. It's either-P 2204 nixbld.m-labs.hk
orrpi-4.m-labs.hk
.So are we to abandon the use of
nixbld.m-labs.hk
altogether and userpi-4
only instead?Yes the port redirect on nixbld is only a workaround for people who don't have IPv6.
aed2a619f1
now replacesnixbld
port 2204 withrpi-4
. Thescp
's-6
parameter is unneeded.