mirror of
https://github.com/m-labs/artiq.git
synced 2024-12-04 17:31:10 +08:00
61c64a76be
This commit also adds support for --variant and --args to artiq-devtool.
10 lines
345 B
Bash
10 lines
345 B
Bash
#!/bin/bash
|
|
|
|
SOC_PREFIX=$SP_DIR/artiq/binaries/kc705-nist_clock
|
|
mkdir -p $SOC_PREFIX
|
|
|
|
V=1 $PYTHON -m artiq.gateware.targets.kc705 -V nist_clock
|
|
cp artiq_kc705/nist_clock/gateware/top.bit $SOC_PREFIX
|
|
cp artiq_kc705/nist_clock/software/bootloader/bootloader.bin $SOC_PREFIX
|
|
cp artiq_kc705/nist_clock/software/runtime/runtime.{elf,fbi} $SOC_PREFIX
|