mirror of
https://github.com/m-labs/artiq.git
synced 2024-12-11 12:46:37 +08:00
edfacbd063
This is so that backtraces may be symbolized.
10 lines
365 B
Bash
10 lines
365 B
Bash
#!/bin/bash
|
|
|
|
SOC_PREFIX=$PREFIX/lib/python3.5/site-packages/artiq/binaries/kc705-nist_clock
|
|
mkdir -p $SOC_PREFIX
|
|
|
|
V=1 $PYTHON -m artiq.gateware.targets.kc705_dds -H nist_clock
|
|
cp misoc_nist_clock_kc705/gateware/top.bit $SOC_PREFIX
|
|
cp misoc_nist_clock_kc705/software/bios/bios.bin $SOC_PREFIX
|
|
cp misoc_nist_clock_kc705/software/runtime/runtime.{elf,fbi} $SOC_PREFIX
|